-
Notifications
You must be signed in to change notification settings - Fork 0
Metadata and Infoset data walking refactored #55
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
Changes from all commits
355592f
2f8a41f
59c544f
189e63c
8d1a5dc
79bddbb
3aa93c6
5b56900
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,15 +15,15 @@ | |
| * limitations under the License. | ||
| */ | ||
|
|
||
| enablePlugins(GenJavadocPlugin) | ||
| enablePlugins(PublishJavadocPlugin) | ||
| // enablePlugins(GenJavadocPlugin) | ||
|
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was me trying desperately to turn off sbt doc processing on publishLocal. Failed. |
||
| // enablePlugins(PublishJavadocPlugin) | ||
|
|
||
| // Scala Steward may try to update this version to include the Scala version, | ||
| // for example 0.18_2.12.15. This is incorrect because the unidoc plugin uses | ||
| // crossVersion to figure out the Scala version. This should be set to just the | ||
| // version of the genjavadoc plugin, without the Scala version. | ||
| unidocGenjavadocVersion := "0.18" | ||
| // unidocGenjavadocVersion := "0.18" | ||
|
|
||
| Genjavadoc / sources := (Genjavadoc / sources).value.filterNot { source => | ||
| source.toString.contains("$") || source.toString.contains("packageprivate") | ||
| } | ||
| //Genjavadoc / sources := (Genjavadoc / sources).value.filterNot { source => | ||
| // source.toString.contains("$") || source.toString.contains("packageprivate") | ||
| // } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,7 +20,7 @@ | |
| /** | ||
| * XMLTextEscapeStyles for determining whether to wrap info in CDATA tags | ||
| */ | ||
| public enum XMLTextEscapeStyle { | ||
| public enum XMLTextEscapeStyle1 { | ||
|
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Temporarily eliminated much of the SAPI/JAPI abstractions that were making refactoring too hard. |
||
| /** | ||
| * Special characters (quotation mark, ampersand, less-than, greater-than) in the | ||
| * text of xs:string elements are escaped, while non-special characters are written | ||
|
|
||
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.
Revisit. Why doesn't apply(1) work here?