Revision: 2780
http://ipcop.svn.sourceforge.net/ipcop/?rev=2780&view=rev
Author: riddles
Date: 2009-05-04 14:53:24 +0000 (Mon, 04 May 2009)
Log Message:
-----------
Add color_devices filter
Modified Paths:
--------------
ipcop/branches/template-branch/html/cgi-bin/backup.cgi
ipcop/branches/template-branch/html/cgi-bin/changepw.cgi
ipcop/branches/template-branch/html/cgi-bin/credits.cgi
ipcop/branches/template-branch/html/cgi-bin/gui.cgi
ipcop/branches/template-branch/html/cgi-bin/index.cgi
ipcop/branches/template-branch/html/cgi-bin/modem.cgi
ipcop/branches/template-branch/html/cgi-bin/proxygraphs.cgi
ipcop/branches/template-branch/html/cgi-bin/remote.cgi
ipcop/branches/template-branch/html/cgi-bin/scheduler.cgi
ipcop/branches/template-branch/html/cgi-bin/shutdown.cgi
ipcop/branches/template-branch/html/cgi-bin/updates.cgi
Modified: ipcop/branches/template-branch/html/cgi-bin/backup.cgi
===================================================================
--- ipcop/branches/template-branch/html/cgi-bin/backup.cgi 2009-05-04
12:22:07 UTC (rev 2779)
+++ ipcop/branches/template-branch/html/cgi-bin/backup.cgi 2009-05-04
14:53:24 UTC (rev 2780)
@@ -152,7 +152,10 @@
##
my $tt = Template->new({
INCLUDE_PATH => '/home/httpd/html/pages:/home/httpd/html/themes',
- FILTERS => { 'loc' => \&Header::maketext }
+ FILTERS => {
+ 'loc' => \&Header::maketext,
+ 'color_devices' => \&General::color_devices,
+ },
}) || die "$Template::ERROR\n";
##
Modified: ipcop/branches/template-branch/html/cgi-bin/changepw.cgi
===================================================================
--- ipcop/branches/template-branch/html/cgi-bin/changepw.cgi 2009-05-04
12:22:07 UTC (rev 2779)
+++ ipcop/branches/template-branch/html/cgi-bin/changepw.cgi 2009-05-04
14:53:24 UTC (rev 2780)
@@ -32,7 +32,10 @@
##
my $tt = Template->new({
INCLUDE_PATH => '/home/httpd/html/pages:/home/httpd/html/themes',
- FILTERS => { 'loc' => \&Header::maketext }
+ FILTERS => {
+ 'loc' => \&Header::maketext,
+ 'color_devices' => \&General::color_devices,
+ },
}) || die "$Template::ERROR\n";
##
Modified: ipcop/branches/template-branch/html/cgi-bin/credits.cgi
===================================================================
--- ipcop/branches/template-branch/html/cgi-bin/credits.cgi 2009-05-04
12:22:07 UTC (rev 2779)
+++ ipcop/branches/template-branch/html/cgi-bin/credits.cgi 2009-05-04
14:53:24 UTC (rev 2780)
@@ -25,7 +25,10 @@
##
my $tt = Template->new({
INCLUDE_PATH => '/home/httpd/html/pages:/home/httpd/html/themes',
- FILTERS => { 'loc' => \&Header::maketext }
+ FILTERS => {
+ 'loc' => \&Header::maketext,
+ 'color_devices' => \&General::color_devices,
+ },
}) || die "$Template::ERROR\n";
##
Modified: ipcop/branches/template-branch/html/cgi-bin/gui.cgi
===================================================================
--- ipcop/branches/template-branch/html/cgi-bin/gui.cgi 2009-05-04 12:22:07 UTC
(rev 2779)
+++ ipcop/branches/template-branch/html/cgi-bin/gui.cgi 2009-05-04 14:53:24 UTC
(rev 2780)
@@ -38,7 +38,10 @@
##
my $tt = Template->new({
INCLUDE_PATH => '/home/httpd/html/pages:/home/httpd/html/themes',
- FILTERS => { 'loc' => \&Header::maketext }
+ FILTERS => {
+ 'loc' => \&Header::maketext,
+ 'color_devices' => \&General::color_devices,
+ },
}) || die "$Template::ERROR\n";
##
Modified: ipcop/branches/template-branch/html/cgi-bin/index.cgi
===================================================================
--- ipcop/branches/template-branch/html/cgi-bin/index.cgi 2009-05-04
12:22:07 UTC (rev 2779)
+++ ipcop/branches/template-branch/html/cgi-bin/index.cgi 2009-05-04
14:53:24 UTC (rev 2780)
@@ -43,7 +43,10 @@
##
my $tt = Template->new({
INCLUDE_PATH => '/home/httpd/html/pages:/home/httpd/html/themes',
- FILTERS => { 'loc' => \&Header::maketext }
+ FILTERS => {
+ 'loc' => \&Header::maketext,
+ 'color_devices' => \&General::color_devices,
+ },
}) || die "$Template::ERROR\n";
##
Modified: ipcop/branches/template-branch/html/cgi-bin/modem.cgi
===================================================================
--- ipcop/branches/template-branch/html/cgi-bin/modem.cgi 2009-05-04
12:22:07 UTC (rev 2779)
+++ ipcop/branches/template-branch/html/cgi-bin/modem.cgi 2009-05-04
14:53:24 UTC (rev 2780)
@@ -31,7 +31,10 @@
##
my $tt = Template->new({
INCLUDE_PATH => '/home/httpd/html/pages:/home/httpd/html/themes',
- FILTERS => { 'loc' => \&Header::maketext }
+ FILTERS => {
+ 'loc' => \&Header::maketext,
+ 'color_devices' => \&General::color_devices,
+ },
}) || die "$Template::ERROR\n";
##
Modified: ipcop/branches/template-branch/html/cgi-bin/proxygraphs.cgi
===================================================================
--- ipcop/branches/template-branch/html/cgi-bin/proxygraphs.cgi 2009-05-04
12:22:07 UTC (rev 2779)
+++ ipcop/branches/template-branch/html/cgi-bin/proxygraphs.cgi 2009-05-04
14:53:24 UTC (rev 2780)
@@ -25,7 +25,10 @@
##
my $tt = Template->new({
INCLUDE_PATH => '/home/httpd/html/pages:/home/httpd/html/themes',
- FILTERS => { 'loc' => \&Header::maketext }
+ FILTERS => {
+ 'loc' => \&Header::maketext,
+ 'color_devices' => \&General::color_devices,
+ },
}) || die "$Template::ERROR\n";
##
Modified: ipcop/branches/template-branch/html/cgi-bin/remote.cgi
===================================================================
--- ipcop/branches/template-branch/html/cgi-bin/remote.cgi 2009-05-04
12:22:07 UTC (rev 2779)
+++ ipcop/branches/template-branch/html/cgi-bin/remote.cgi 2009-05-04
14:53:24 UTC (rev 2780)
@@ -29,7 +29,10 @@
##
my $tt = Template->new({
INCLUDE_PATH => '/home/httpd/html/pages:/home/httpd/html/themes',
- FILTERS => { 'loc' => \&Header::maketext }
+ FILTERS => {
+ 'loc' => \&Header::maketext,
+ 'color_devices' => \&General::color_devices,
+ },
}) || die "$Template::ERROR\n";
##
Modified: ipcop/branches/template-branch/html/cgi-bin/scheduler.cgi
===================================================================
--- ipcop/branches/template-branch/html/cgi-bin/scheduler.cgi 2009-05-04
12:22:07 UTC (rev 2779)
+++ ipcop/branches/template-branch/html/cgi-bin/scheduler.cgi 2009-05-04
14:53:24 UTC (rev 2780)
@@ -56,7 +56,10 @@
##
my $tt = Template->new({
INCLUDE_PATH => '/home/httpd/html/pages:/home/httpd/html/themes',
- FILTERS => { 'loc' => \&Header::maketext }
+ FILTERS => {
+ 'loc' => \&Header::maketext,
+ 'color_devices' => \&General::color_devices,
+ },
}) || die "$Template::ERROR\n";
##
Modified: ipcop/branches/template-branch/html/cgi-bin/shutdown.cgi
===================================================================
--- ipcop/branches/template-branch/html/cgi-bin/shutdown.cgi 2009-05-04
12:22:07 UTC (rev 2779)
+++ ipcop/branches/template-branch/html/cgi-bin/shutdown.cgi 2009-05-04
14:53:24 UTC (rev 2780)
@@ -31,7 +31,10 @@
##
my $tt = Template->new({
INCLUDE_PATH => '/home/httpd/html/pages:/home/httpd/html/themes',
- FILTERS => { 'loc' => \&Header::maketext }
+ FILTERS => {
+ 'loc' => \&Header::maketext,
+ 'color_devices' => \&General::color_devices,
+ },
}) || die "$Template::ERROR\n";
##
Modified: ipcop/branches/template-branch/html/cgi-bin/updates.cgi
===================================================================
--- ipcop/branches/template-branch/html/cgi-bin/updates.cgi 2009-05-04
12:22:07 UTC (rev 2779)
+++ ipcop/branches/template-branch/html/cgi-bin/updates.cgi 2009-05-04
14:53:24 UTC (rev 2780)
@@ -68,7 +68,10 @@
##
my $tt = Template->new({
INCLUDE_PATH => '/home/httpd/html/pages:/home/httpd/html/themes',
- FILTERS => { 'loc' => \&Header::maketext }
+ FILTERS => {
+ 'loc' => \&Header::maketext,
+ 'color_devices' => \&General::color_devices,
+ },
}) || die "$Template::ERROR\n";
##
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations
Conference from O'Reilly Media. Velocity features a full day of
expert-led, hands-on workshops and two days of sessions from industry
leaders in dedicated Performance & Operations tracks. Use code vel09scf
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
_______________________________________________
Ipcop-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ipcop-svn