-
Notifications
You must be signed in to change notification settings - Fork 27
Prepare for 2.0 release #43
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
Open
anthonyvdotbe
wants to merge
30
commits into
validator:master
Choose a base branch
from
anthonyvdotbe:#14
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
777c1f2
Break cyclic dependency
anthonyvdotbe 52edf70
Remove unnecessary superinterface Locator
anthonyvdotbe 223c87c
Clean up: doc
anthonyvdotbe 78674ec
Clean up: gwt-src et al.
anthonyvdotbe db75e90
Clean up: mozilla-export-scripts
anthonyvdotbe 0a18810
Clean up: ruby-gcj
anthonyvdotbe d6df8ad
Clean up: super
anthonyvdotbe d459ad0
Clean up: tools
anthonyvdotbe 429bfe2
Clean up: cpptranslate et al.
anthonyvdotbe 6f9916f
Clean up: GenerateNamedCharacters.java
anthonyvdotbe 6d00055
Remove RPM package support
anthonyvdotbe 1f70f9b
Remove OSGi bundle support
anthonyvdotbe 1c484d4
Update URLs
anthonyvdotbe 31888b3
Format POM
anthonyvdotbe ea60638
Adopt Maven directory layout
anthonyvdotbe 44b25b6
Fix Maven build
anthonyvdotbe c7c30d7
Split into separate Maven modules
anthonyvdotbe 7c8b11f
Fix Maven build
anthonyvdotbe 2928550
Fix doclint errors
anthonyvdotbe 88184e1
Fix typos
anthonyvdotbe 5304a2c
Fix some lint warnings
anthonyvdotbe 653a769
Suppress remaining lint warnings
anthonyvdotbe 7511367
Remove unused imports
anthonyvdotbe eabf3dd
Upgrade to a module-aware Java SE version
anthonyvdotbe f2c3126
Modularize
anthonyvdotbe 283955b
Rename package.html to package-info.java
anthonyvdotbe 9376c4f
Fix package Javadoc after rename
anthonyvdotbe 2ce23df
Make NormalizationChecker independent of ICU4J
anthonyvdotbe bd6aae9
Make jchardet & ICU4J heuristics a no-op
anthonyvdotbe 51b5c92
Bump version number to 2.0
anthonyvdotbe 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 hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Copyright (c) 2020 Anthony Vanelverdinghe | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a | ||
* copy of this software and associated documentation files (the "Software"), | ||
* to deal in the Software without restriction, including without limitation | ||
* the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
* and/or sell copies of the Software, and to permit persons to whom the | ||
* Software is furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
* DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
/** | ||
* Provides an implementation of the HTML5 parsing algorithm in Java for applications. | ||
* The parser is designed to work as a drop-in replacement for the XML parser in applications | ||
* that already support XHTML 1.x content with an XML parser and use SAX or DOM to interface with the parser. | ||
*/ | ||
@SuppressWarnings("requires-automatic") | ||
module nu.validator.htmlparser { | ||
requires transitive java.xml; | ||
requires nu.validator.saxtree; | ||
requires static com.ibm.icu; | ||
requires static jchardet; | ||
|
||
exports nu.validator.htmlparser.annotation; | ||
exports nu.validator.htmlparser.common; | ||
exports nu.validator.htmlparser.dom; | ||
exports nu.validator.htmlparser.extra; | ||
exports nu.validator.htmlparser.impl; | ||
exports nu.validator.htmlparser.io; | ||
exports nu.validator.htmlparser.rewindable; | ||
exports nu.validator.htmlparser.sax; | ||
} |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (c) 2020 Anthony Vanelverdinghe | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a | ||
* copy of this software and associated documentation files (the "Software"), | ||
* to deal in the Software without restriction, including without limitation | ||
* the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
* and/or sell copies of the Software, and to permit persons to whom the | ||
* Software is furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
* DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
/** | ||
* Provides SAX Tree: a tree model optimized for creation from SAX events and replay as SAX events. | ||
*/ | ||
module nu.validator.saxtree { | ||
requires transitive java.xml; | ||
|
||
exports nu.validator.saxtree; | ||
} |
This file contains hidden or 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 hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* Copyright (c) 2020 Anthony Vanelverdinghe | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a | ||
* copy of this software and associated documentation files (the "Software"), | ||
* to deal in the Software without restriction, including without limitation | ||
* the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
* and/or sell copies of the Software, and to permit persons to whom the | ||
* Software is furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
* DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
/** | ||
* Provides an implementation of the HTML5 parsing algorithm in Java for applications. | ||
* The parser is designed to work as a drop-in replacement for the XML parser in applications | ||
* that already support XHTML 1.x content with an XML parser and use XOM to interface with the parser. | ||
*/ | ||
@SuppressWarnings({"requires-automatic", "requires-transitive-automatic"}) | ||
module nu.validator.htmlparser.xom { | ||
requires transitive java.xml; | ||
requires transitive nu.xom; | ||
requires transitive nu.validator.htmlparser; | ||
|
||
exports nu.validator.htmlparser.xom; | ||
} |
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.
Uh oh!
There was an error while loading. Please reload this page.