Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^6: Model-View-Controller: Template Toolkit vs. XSLT

by sri (Vicar)
on Oct 16, 2004 at 00:14 UTC ( [id://399701]=note: print w/replies, xml ) Need Help??


in reply to Re^5: Model-View-Controller: Template Toolkit vs. XSLT
in thread Model-View-Controller: Template Toolkit vs. XSLT

UNIVERSAL::require eats/hides compilation errors in the required modules and does not propagate raised errors into $@, but into $UNIVERSAL::require::ERROR, a variable that is not checked and not documented anywhere - this blame goes in equal parts to Schwern who wrote it and Simon Cozens who used it.
Wrong, it propagates errors to $@. We already talked about that?
I haven't looked at the development versions of Maypole, but for Maypole 1.7, the current CPAN version, much of the needed documentation needs to be hunted down in the Maypole Wiki and on the Maypole mailing list and can't be divined from the Pod.
Well, 1.7 is very very outdated.
My beef with the Maypole concept of creating a URL stems from an actual example - Maypole URLs look like : /$application/$table/$action/$row_id but in my application, a photo gallery, I want to display an image in a resolution, and the image filename and the resolution parameters come from the database. Maypole provides no nice way in which the above scheme can be conveniently expanded to take more than one table/row_id, except adding them as CGI query parameters - but then, why have the "fancy" URL in the first place?
You can just overload parse_path() with whatever you want!
It's very simple.
sub parse_path { my $self = shift; $self->{path} ||= "frontpage"; my @pi = split /\//, $self->{path}; shift @pi while @pi and !$pi[0]; $self->{table} = shift @pi; $self->{action} = shift @pi; $self->{args} = \@pi; }
"Wildly spewed warnings that can't be disabled" occur in Maypole::Session::AuthCookie, which has tracing/debugging warnings left enabled and fills up the logs nicely with it. I'd like something along the log levels of LWP or DBI, where you have a good granularity of what you want to see and how much of it.
Ok, i'm not the maintainer of Maypole::Authentication::UserSessionCookie thats Marcus Ramberg, but i will tell him to fix that.
You can also use my Maypole::Authentication::Abstract which is a bit cleaner.
I think we already have a good granularity with debug().
I did not post these points as complaints, I see these points more as "things to be fixed" - and while I plan to work on these points, I don't have the time and energy currently. I'll join the mailing list soonish I hope, but there are also talk proposals to be written and real life to be managed ...
Hehe, most of your "things to be fixed" (if not all) are already fixed. ;)
We have a strong and growing community, so things change very fast.

The mailing list is not that big, it's easy to follow.
But you can also visit us in #maypole at irc.perl.org.

Replies are listed 'Best First'.
Re^7: Model-View-Controller: Template Toolkit vs. XSLT
by tilly (Archbishop) on Oct 17, 2004 at 05:39 UTC
    If you consider version 1.7 to be very, very outdated, why is it still current on CPAN?

    Most people will get their versions of your software from CPAN. If that sucks, they will (IMO rightly) conclude that your software sucks. Because the version that they see really does suck. The right solution is to make a non-sucky version of the software available for wider use. The wrong solution is to tell users that they need to learn the secret handshakes and become part of the development community for your software.

    Most potential users think that they have better things to do with their time than become developers. That also applies to most of the people who might eventually become developers on your project.

    I don't care if you don't believe me. But paying attention to how you work with the broader community will result in your group growing even faster and becoming even stronger than it already is.

      Thats a longer story...

      But to make it short, the PAUSE permissions got lost when Andy Lester tried to transfer them to me, so i can't release new versions until a CPAN admin fixes that.

      And the requerst to fix it is lying on modules@perl.org for a few weeks now without anyone touching it. :(
        the requerst to fix it is lying on modules@perl.org for a few weeks now without anyone touching it

        In other contexts resending it might be rude, but in this case I'd advise you to just go ahead and send in your transfer request again -- when one of the modules volunteers has some free time they tend to start processing a few of the more recent requests, and submitting it again makes it clear that you're still waiting for a response.

        Oh good, I'm not the only one to get irritated by modules@perl.org being equal to /dev/null :-)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-20 02:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found