Displaying 2 results from an estimated 2 matches for "_session_id_key".
2007 Nov 12
0
Sessions broken in 0.4.0 (includes hotfix)
...nstall, it''s a 1
line fix:
Index: /trunk/lib/merb/controller.rb
===================================================================
--- /trunk/lib/merb/controller.rb (revision 904)
+++ /trunk/lib/merb/controller.rb (revision 961)
@@ -12,5 +12,5 @@
self._subclasses = []
- self._session_id_key = :_session_id
+ self._session_id_key = ''_session_id''
self._session_expiry = Time.now + Merb::Const::WEEK * 2
This will be in 0.4.1 when it comes out RSN.
2007 Sep 18
10
Routes
hi all,
I want to move some routing tasks out of the router and into the
controller. The goal is to make Merb feel less like mod_rewrite and
give the user more control at the controller. The new Router is
simple: it takes the path_info (not the whole request) then outputs a
controller class and some parameters from the path matching. The rest
of the routing would be done at the controller level.