Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^30: aXML vs TT2

by Logicus (Initiate)
on Oct 23, 2011 at 11:20 UTC ( [id://933194]=note: print w/replies, xml ) Need Help??


in reply to Re^29: aXML vs TT2
in thread aXML vs TT2

You've lost me there dude.. what basics is it that you feel are next to impossible? In the last 5 years I have yet to find any problem which I have not been able to solve, nor have I found any problem to which the solution is not quite straight forward.

Replies are listed 'Best First'.
Re^31: aXML vs TT2
by ikegami (Patriarch) on Oct 23, 2011 at 11:40 UTC

    Safely returning a "<" from a plugin.

    To be safe, a plugin needs to look like

    sub plugin_name { my $text_to_return = ...; $text_to_return =~ s{<}{<post_include>path/to/lt</post_include>}g; return $text_to_return; }

    Even then, that's not enough to make a reusable plugin because it hardcodes the path to a template.

    By the way, since every plugin (except <post_include>) returns template code, this design is slow because there are soooo many templates to process, and none of them can be precompiled.

      To be honest I think your attempting to constrict the dynamism of aXML because your not yet fully comfortable with it. The ability for tags to output tags or fragments of tags is something which I use frequently and is imho one of the coolest properties of aXML.

      On the subject of compiling templates, Corion mentioned that a while ago, and I did have a go at writing a compiler but it didn't work out well. Basically I know very little, well nothing really, about compilers so if anyone out there is into compilers and feels like having a bash at it be my guest.

      In the meantime it really isn't as slow as you probably think it is, especially on modern hardware.

        To be honest I think your attempting to constrict the dynamism of aXML because your not yet fully comfortable with it.

        Wow! Not only do you lie about what I do, you make up reasons for why I must have done it!

        I've done nothing but help fix the very broken aspects of aXML, yet you accuse me of tying to break aXML. I didn't suggest anything that would limit the dynamism of aXML. I didn't make any suggestions whatsoever, actually! I just showed what code is required for aXML to work bug free to show how hard it is to use aXML correctly.

        On the subject of compiling templates, Corion mentioned that a while ago, and I did have a go at writing a compiler but it didn't work out well.

        In response to me saying it cannot be compiled, you ask for assistance in writing a compiler?

        You picked your name in irony, right?

        In the meantime it really isn't as slow as you probably think it is, especially on modern hardware.

        I don't know or care how slow or fast it is. But you do. Did you forget your own goals that you posted about 10,000 times?

        One, you want it to be fast for a long time, so it's totally irrelevant how it performs on modern hardware.

        Two, you want it to be faster than other template systems.

        Not being able to compile the templates greatly hinders both of those goals.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://933194]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2024-04-25 17:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found