-
Notifications
You must be signed in to change notification settings - Fork 140
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
absence of objects for XML traversing #3774
Comments
@maxonfjvipon @yegor256 WDYT? I would like to take this |
@h1alexbel can you give an example of its API? |
@yegor256 I think EO implementation of DOM API can look like this:
So, basically my idea was to implement three basic operations with DOM in EO:
About #2813. As far I understood, it mostly about how we build our XMIR inside of the parser (not runtime objects). We can create some internal tool for XMIR manipulation that can replace XSLT, that we currently use. I also thought that we can create simpler, faster version of XSLT that will use simple DOM operations inside (so this tool will replace XSLT stylesheets we currently use, and will be platform-independent, so it can be shared in both runtimes without a problems). WDYT? |
@h1alexbel this is a valid idea, but I'm not sure it belongs to eo-runtime. Maybe it's better to create a new repository for it, similar to how we did with eo-strings, for example. @maxonfjvipon what's your take? |
@h1alexbel I believe it definitely should be a separated repository, at least for now. In general, it would be interesting project, so go ahead |
@yegor256 @maxonfjvipon I've started the development of |
Currently, there is no EO objects for traversing an XML document (DOM tree). Let's add new set of EO objects to the runtime:
eo-dom
, that will be standard library for XML manipulationThe text was updated successfully, but these errors were encountered: