[Jifty-commit] r4832 - in apps/spensive: . lib/Spensive lib/Spensive/Model lib/Spensive/View

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Sat Jan 12 16:53:19 EST 2008


Author: jesse
Date: Sat Jan 12 16:53:18 2008
New Revision: 4832

Modified:
   apps/spensive/   (props changed)
   apps/spensive/etc/config.yml
   apps/spensive/lib/Spensive/Model/User.pm
   apps/spensive/lib/Spensive/View.pm
   apps/spensive/lib/Spensive/View/Prefs.pm

Log:
mergedown of small fixes

Modified: apps/spensive/etc/config.yml
==============================================================================
--- apps/spensive/etc/config.yml	(original)
+++ apps/spensive/etc/config.yml	Sat Jan 12 16:53:18 2008
@@ -33,7 +33,7 @@
         - CompressedCSSandJS:
             css: 0
             js: 1
-            jsmin: /usr/local/bin/jsmin
+            #jsmin: /usr/local/bin/jsmin
         - Authentication::Password: {}
   PubSub: 
     Backend: Memcached

Modified: apps/spensive/lib/Spensive/Model/User.pm
==============================================================================
--- apps/spensive/lib/Spensive/Model/User.pm	(original)
+++ apps/spensive/lib/Spensive/Model/User.pm	Sat Jan 12 16:53:18 2008
@@ -38,7 +38,7 @@
             return 1;
         } 
         elsif ($action eq 'update') {
-            warn "Asked to update ".Join(',', at _);  
+            warn "Asked to update ".join(',', at _);  
         }
 
     }

Modified: apps/spensive/lib/Spensive/View.pm
==============================================================================
--- apps/spensive/lib/Spensive/View.pm	(original)
+++ apps/spensive/lib/Spensive/View.pm	Sat Jan 12 16:53:18 2008
@@ -57,7 +57,8 @@
 alias Spensive::View::Reports under 'reports/';
 
 require Spensive::View::Prefs;
-alias Spensive::View::Prefs under './prefs';
+alias Spensive::View::Prefs under 'prefs';
+
 template 'attachment/image' => sub {
     my $item = get('attachment');
     if ($item) {

Modified: apps/spensive/lib/Spensive/View/Prefs.pm
==============================================================================
--- apps/spensive/lib/Spensive/View/Prefs.pm	(original)
+++ apps/spensive/lib/Spensive/View/Prefs.pm	Sat Jan 12 16:53:18 2008
@@ -10,7 +10,7 @@
 
     my ( $action, $next ) = get(qw(action next));
     div { { class is 'hint'};
-        outs_raw(_('You can create new expenses by emailing%1'. a{ {href is 'mailto:'.Jifty->web->current_user->user_object->published_address;} Jifty->web->current_user->user_object->published_address}));
+        outs_raw(_('You can create new expenses by emailing %1'. a{ {href is 'mailto:'.Jifty->web->current_user->user_object->published_address;} Jifty->web->current_user->user_object->published_address}));
     };
 
     Jifty->web->form->start( call => $next );


More information about the Jifty-commit mailing list