You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2023/05/10 10:52:56 UTC

[tomcat] branch 10.1.x updated (169b81341f -> 21b9309999)

This is an automated email from the ASF dual-hosted git repository.

markt pushed a change to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


    from 169b81341f Switch HTTP/2 to use RFC 9218 priorities rather than RFC 7540
     new af2f66f509 Rename for consistency with other JavaCC files
     new 21b9309999 Update checkstyle patterns for generated parser code

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 build.xml                                                  | 14 ++++++++------
 .../tomcat/util/json/{JSONParser.jj => JSONParser.jjt}     |  0
 2 files changed, 8 insertions(+), 6 deletions(-)
 rename java/org/apache/tomcat/util/json/{JSONParser.jj => JSONParser.jjt} (100%)


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[tomcat] 02/02: Update checkstyle patterns for generated parser code

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit 21b9309999cac58eed5da3a44608c7e87000a168
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed May 10 11:36:58 2023 +0100

    Update checkstyle patterns for generated parser code
    
    JSONFilter.java was not being scanned
---
 build.xml | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/build.xml b/build.xml
index 27ba36423b..5eb1cca34b 100644
--- a/build.xml
+++ b/build.xml
@@ -876,14 +876,16 @@
         <exclude name="**/*_2.xml"/>
         <exclude name="res/checkstyle/header-al2.txt"/>
         <!-- Exclude auto-generated files -->
-        <exclude name="java/org/apache/el/parser/ELParser.jj" />
         <exclude name="java/org/apache/el/parser/ELParser*.java" />
         <exclude name="java/org/apache/el/parser/Node.java" />
-        <exclude name="java/org/apache/**/parser/JJT*ParserState.java" />
-        <exclude name="java/org/apache/**/parser/ParseException.java" />
-        <exclude name="java/org/apache/**/parser/SimpleCharStream.java" />
-        <exclude name="java/org/apache/**/parser/Token*.java" />
-        <exclude name="java/org/apache/tomcat/util/json/*.java" />
+        <exclude name="java/org/apache/tomcat/util/json/JSONParser*.java" />
+        <exclude name="**/*.jj" />
+        <exclude name="java/org/apache/**/JJT*ParserState.java" />
+        <exclude name="java/org/apache/**/ParseException.java" />
+        <exclude name="java/org/apache/**/JavaCharStream.java" />
+        <exclude name="java/org/apache/**/SimpleCharStream.java" />
+        <exclude name="java/org/apache/**/Token.java" />
+        <exclude name="java/org/apache/**/TokenMgrError.java" />
         <!-- Exclude developer specific local files -->
         <exclude name="build.properties" />
         <exclude name="res/maven/mvn.properties" />


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[tomcat] 01/02: Rename for consistency with other JavaCC files

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit af2f66f509032648b26e8825aa399349e8ac78d8
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed May 10 11:26:06 2023 +0100

    Rename for consistency with other JavaCC files
---
 java/org/apache/tomcat/util/json/{JSONParser.jj => JSONParser.jjt} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/java/org/apache/tomcat/util/json/JSONParser.jj b/java/org/apache/tomcat/util/json/JSONParser.jjt
similarity index 100%
rename from java/org/apache/tomcat/util/json/JSONParser.jj
rename to java/org/apache/tomcat/util/json/JSONParser.jjt


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org