-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix handling of comments in the ppx. * Fix printing of utf8 in attributes. * Properly flush ppx errors. This bug was causing some blank error messages. * Fix handling of whitespaces in <select> in the ppx.
- Loading branch information
Showing
25 changed files
with
11,171 additions
and
95 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: c6ec0eb7c6ec4d2ff7716e168d21e65a) | ||
version = "4.0.1" | ||
description = "Statically correct HTML and SVG documents" | ||
requires = "tyxml.functor re uutf" | ||
archive(byte) = "tyxml.cma" | ||
archive(byte, plugin) = "tyxml.cma" | ||
archive(native) = "tyxml.cmxa" | ||
archive(native, plugin) = "tyxml.cmxs" | ||
archive(byte,toploop) += "tyxml_top.cma" | ||
exists_if = "tyxml.cma" | ||
package "top" ( | ||
version = "4.0.1" | ||
description = "Toplevel printers for HTML, SVG and XML" | ||
requires = "tyxml" | ||
archive(byte) = "tyxml_top.cma" | ||
archive(byte, plugin) = "tyxml_top.cma" | ||
archive(native) = "tyxml_top.cmxa" | ||
archive(native, plugin) = "tyxml_top.cmxs" | ||
exists_if = "tyxml_top.cma" | ||
) | ||
|
||
package "tools" ( | ||
version = "4.0.1" | ||
description = "Statically correct HTML and SVG documents" | ||
requires = "bytes" | ||
archive(byte) = "tyxml_tools.cma" | ||
archive(byte, plugin) = "tyxml_tools.cma" | ||
archive(native) = "tyxml_tools.cmxa" | ||
archive(native, plugin) = "tyxml_tools.cmxs" | ||
exists_if = "tyxml_tools.cma" | ||
) | ||
|
||
package "syntax" ( | ||
version = "4.0.1" | ||
description = "HTML and SVG syntax extension" | ||
requires = "bytes camlp4" | ||
archive(syntax, preprocessor) = "pa_tyxml.cma" | ||
archive(syntax, toploop) = "pa_tyxml.cma" | ||
archive(syntax, preprocessor, native) = "pa_tyxml.cmxa" | ||
archive(syntax, preprocessor, native, plugin) = "pa_tyxml.cmxs" | ||
requires(toploop) = "tyxml" | ||
exists_if = "pa_tyxml.cma" | ||
) | ||
|
||
package "ppx" ( | ||
version = "4.0.1" | ||
description = "HTML and SVG syntax extension (ppx)" | ||
requires = "tyxml" | ||
archive(byte) = "ppx.cma" | ||
archive(byte, plugin) = "ppx.cma" | ||
archive(native) = "ppx.cmxa" | ||
archive(native, plugin) = "ppx.cmxs" | ||
ppx = "ppx_tyxml" | ||
exists_if = "ppx.cma" | ||
package "internal" ( | ||
version = "4.0.1" | ||
description = "HTML and SVG ppx library" | ||
requires = "re.str ppx_tools.metaquot markup tyxml.tools" | ||
archive(byte) = "ppx_internal.cma" | ||
archive(byte, plugin) = "ppx_internal.cma" | ||
archive(native) = "ppx_internal.cmxa" | ||
archive(native, plugin) = "ppx_internal.cmxs" | ||
exists_if = "ppx_internal.cma" | ||
) | ||
) | ||
|
||
package "parser" ( | ||
version = "4.0.1" | ||
description = "Simple XML parser" | ||
requires = "bytes camlp4.lib" | ||
archive(byte) = "tymlx_p.cma" | ||
archive(byte, plugin) = "tymlx_p.cma" | ||
archive(native) = "tymlx_p.cmxa" | ||
archive(native, plugin) = "tymlx_p.cmxs" | ||
exists_if = "tymlx_p.cma" | ||
) | ||
|
||
package "functor" ( | ||
version = "4.0.1" | ||
description = "Statically correct HTML and SVG documents (Functor version)" | ||
requires = "uutf re" | ||
archive(byte) = "tyxml_f.cma" | ||
archive(byte, plugin) = "tyxml_f.cma" | ||
archive(native) = "tyxml_f.cmxa" | ||
archive(native, plugin) = "tyxml_f.cmxs" | ||
exists_if = "tyxml_f.cma" | ||
) | ||
# OASIS_STOP | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: 9985bb6292efdb2ccd3212f66f8621c5) | ||
Tyxml_top | ||
# OASIS_STOP |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: 9985bb6292efdb2ccd3212f66f8621c5) | ||
Tyxml_top | ||
# OASIS_STOP |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: 0ad0ea7a03e5bb86e515b481bcbc79ed) | ||
Tyxml_xml | ||
Tyxml_svg | ||
Tyxml_html | ||
Tyxml | ||
# OASIS_STOP |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: 0ad0ea7a03e5bb86e515b481bcbc79ed) | ||
Tyxml_xml | ||
Tyxml_svg | ||
Tyxml_html | ||
Tyxml | ||
# OASIS_STOP |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: c50b31e7fcf48d4e470776748ce82005) | ||
Xml_iter | ||
Xml_wrap | ||
Xml_print | ||
Svg_f | ||
Html_f | ||
# OASIS_STOP |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: c50b31e7fcf48d4e470776748ce82005) | ||
Xml_iter | ||
Xml_wrap | ||
Xml_print | ||
Svg_f | ||
Html_f | ||
# OASIS_STOP |
Oops, something went wrong.