-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simplified QuotedStringTokenizer #9729
Merged
Merged
Changes from 4 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
16aabb3
Simplified QuotedStringTokenizer
gregw 1b5b895
Simplified QuotedStringTokenizer
gregw 0d23c57
Merge remote-tracking branch 'origin/jetty-12.0.x' into jetty-12-simp…
gregw a7e9016
Fixed tests
gregw e52910e
WIP
gregw 064e4be
Merge remote-tracking branch 'origin/jetty-12.0.x' into jetty-12-simp…
gregw 2138f3c
Merge remote-tracking branch 'origin/jetty-12.0.x' into jetty-12-simp…
gregw 75d0008
introduced builder
gregw 8cdfc77
Extracted QuotedStringTokenizer interface and re-introduced the legac…
gregw 0523890
Merge branch 'jetty-12.0.x' into jetty-12-simplify-QuotedStringTokenizer
gregw bd86c23
Re-introduced the ability to have unescaped \ in filenames
gregw f5abc8c
Fixed tests
gregw 83bd9c8
Whitespace is Character.isWhiteSpace
gregw 20bdcbd
Disable test pending RFC8187
gregw c019dfd
Merge branch 'jetty-12.0.x' into jetty-12-simplify-QuotedStringTokenizer
gregw a5050e6
updates from review
gregw fe189bb
updates from review
gregw 82071f9
updates from review
gregw 743ad3d
Merge remote-tracking branch 'origin/jetty-12.0.x' into jetty-12-simp…
gregw 6f6832f
Merge remote-tracking branch 'origin/jetty-12.0.x' into jetty-12-simp…
gregw 54e1a55
Updates from review
gregw 03880a8
Updates from review
gregw 7cec3c9
Updates from review
gregw 16da20c
No OWS around =
gregw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This feels weird. Why there are now 2 backslashes?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because we used to forgive browsers for not properly escaping "" in filenames. Now we are going to insist they quote them correctly.
Could be a bad idea. @joakime can you do some tests on windows to see how "" is treated by current browsers?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reverted. But there is no good solution. See comments below.