I assume you mean "down" not "done," and no, it shouldn't be.  You're
IT people don't happen to be anal about firewall security do they?
Because that could cause an issue, although the Java IRC client at
http://irc.cakephp.org/ should still allow you to get in.

One additional note on URLs: as of Cake 1.2, you can now create routes
that use complex regular expression matches, as in the following:

Router::connect(
    "/calendar/:year/:month/:day",
    array("controller" => "calendar", "action" => "index"),
    array(
        "year" => "(19|20)\d\d",
        "month" => "(0[1-9]|1[012])",
        "day" => "(0[1-9]|[12][0-9]|3[01])"
    )
);

This allows you to map complex URL matching expressions to named
parameters which are passed to controller actions.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---

Reply via email to