From 0da21beb53bba595fec04ddf200a46675ae0be31 Mon Sep 17 00:00:00 2001 From: dakkar Date: Wed, 8 Feb 2006 14:45:28 +0000 Subject: view::TTsite git-svn-id: svn://luxion/repos/IscrittiGroLUG/trunk@165 fcb26f47-9200-0410-b104-b98ab5b095f3 --- GroLUG/root/lib/config/col | 21 +++++++++++++++++++++ GroLUG/root/lib/config/main | 27 +++++++++++++++++++++++++++ GroLUG/root/lib/config/url | 8 ++++++++ 3 files changed, 56 insertions(+) create mode 100644 GroLUG/root/lib/config/col create mode 100644 GroLUG/root/lib/config/main create mode 100644 GroLUG/root/lib/config/url (limited to 'GroLUG/root/lib/config') diff --git a/GroLUG/root/lib/config/col b/GroLUG/root/lib/config/col new file mode 100644 index 0000000..811f0af --- /dev/null +++ b/GroLUG/root/lib/config/col @@ -0,0 +1,21 @@ +[% site.rgb = { + black = '#000000' + white = '#ffffff' + grey1 = '#46494c' + grey2 = '#c6c9cc' + grey3 = '#e3e6ea' + red = '#CC4444' + green = '#66AA66' + blue = '#89b8df' + orange = '#f08900' + }; + + site.col = { + page = site.rgb.white + text = site.rgb.grey1 + head = site.rgb.grey3 + line = site.rgb.orange + message = site.rgb.green + error = site.rgb.red + }; +%] diff --git a/GroLUG/root/lib/config/main b/GroLUG/root/lib/config/main new file mode 100644 index 0000000..89de4ae --- /dev/null +++ b/GroLUG/root/lib/config/main @@ -0,0 +1,27 @@ +[% # config/main + # + # This is the main configuration template which is processed before + # any other page, by virtue of it being defined as a PRE_PROCESS + # template. This is the place to define any extra template variables, + # macros, load plugins, and perform any other template setup. + + IF Catalyst.debug; + # define a debug() macro directed to Catalyst's log + MACRO debug(message) CALL Catalyst.log.debug(message); + END; + + # define a data structure to hold sitewide data + site = { + title => 'Catalyst::View::TTSite Example Page', + copyright => '2006 Your Name Here', + }; + + # load up any other configuration items + PROCESS config/col + + config/url; + + # set defaults for variables, etc. + DEFAULT + message = 'There is no message'; + +-%] diff --git a/GroLUG/root/lib/config/url b/GroLUG/root/lib/config/url new file mode 100644 index 0000000..f6c036f --- /dev/null +++ b/GroLUG/root/lib/config/url @@ -0,0 +1,8 @@ +[% base = Catalyst.req.base; + + site.url = { + base = base + home = "${base}welcome" + message = "${base}message" + } +-%] -- cgit v1.2.3