vote up 0 vote down star

I'm building an MVC framework, and I'm looking for native solutions / frameworks / tag libraries to draw from or to replace my framework entirely.

I'm interested in the following features specifically:

  • server-side DOM manipulation
  • server-side events (page reload, form submit, node insertion, etc.)
  • traversing the DOM tree using css selectors
  • validation of html nodes nesting
  • validation of html nodes allowed attributes
  • support for tag libraries / user controls

Pretty much what you get with JavaScript, but on the server-side and with some little extras.

Any solution will do (even if partial), any language will do, any pointers are appreaciated (even from client-side languages, as long as it's possible to check the source code). Dealing with malformed html is not a prerequisite. Outputting valid markup is a big plus.


Please offer practical solutions by pointing the language/framework that is being discussed and, if possible, what features it provides.

flag

4 Answers

vote up 1 vote down

If you load your page into a DOM-parser you would be able to modify it from there. Then outputting it to the output buffer seems trivial.

But you would need to store the entire document in memory, which will inflict on the performance.

link|flag
That's the approach I took when writing my php framework. However, this solution requires me to manually code an event system an a selector system. Making a bare bones solution for those is not so hard, but optimizing it is a problem. Are you familiar with any more featured DOM manipulators? – facildelembrar Feb 4 at 23:28
vote up 0 vote down

So, jQuery has a sort of selectors API implemented, I guess I can take a look at their source code. Also, PHP has support for XPath, this could help too.

link|flag
vote up 0 vote down

have you checked out aptana jaxer?

link|flag
1  
why the downvote? gosh pepole please explain – the_drow Jun 1 at 15:09
+1 for a legit answer to the question. Albeit, a bit spartan. Ya see, @the_drow, rather than discuss an issue, some people would rather "Lash out" in an anonymous fashion, thereby avoiding all that messy explanation of ones thoughts and actions. Some people think they are just too busy to explain what they think is "obvious". – Richard B Jun 7 at 20:27
vote up 0 vote down

Found a php html dom parser that also implements some html selectors here: http://simplehtmldom.sourceforge.net

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.