[Bps-public-commit] r12656 - in pie/branches/named-params/pieplate: . PIE-Plate PIE-Plate/doc PIE-Plate/etc PIE-Plate/lib PIE-Plate/lib/PIE PIE-Plate/lib/PIE/Plate PIE-Plate/lib/PIE/Plate/Action PIE-Plate/lib/PIE/Plate/Model PIE-Plate/log PIE-Plate/share PIE-Plate/share/po PIE-Plate/share/web PIE-Plate/share/web/static PIE-Plate/share/web/templates PIE-Plate/t PIE-Plate/var PIE-Plate/var/mason

jesse at bestpractical.com jesse at bestpractical.com
Sat May 24 00:27:26 EDT 2008


Author: jesse
Date: Sat May 24 00:27:25 2008
New Revision: 12656

Added:
   pie/branches/named-params/pieplate/
   pie/branches/named-params/pieplate/.notes.swp   (contents, props changed)
   pie/branches/named-params/pieplate/PIE-Plate/
   pie/branches/named-params/pieplate/PIE-Plate/Makefile.PL
   pie/branches/named-params/pieplate/PIE-Plate/bin/
   pie/branches/named-params/pieplate/PIE-Plate/bin/jifty   (contents, props changed)
   pie/branches/named-params/pieplate/PIE-Plate/doc/
   pie/branches/named-params/pieplate/PIE-Plate/etc/
   pie/branches/named-params/pieplate/PIE-Plate/etc/config.yml
   pie/branches/named-params/pieplate/PIE-Plate/lib/
   pie/branches/named-params/pieplate/PIE-Plate/lib/PIE/
   pie/branches/named-params/pieplate/PIE-Plate/lib/PIE/Plate/
   pie/branches/named-params/pieplate/PIE-Plate/lib/PIE/Plate/Action/
   pie/branches/named-params/pieplate/PIE-Plate/lib/PIE/Plate/Model/
   pie/branches/named-params/pieplate/PIE-Plate/lib/PIE/Plate/View.pm
   pie/branches/named-params/pieplate/PIE-Plate/log/
   pie/branches/named-params/pieplate/PIE-Plate/pie::plate   (contents, props changed)
   pie/branches/named-params/pieplate/PIE-Plate/share/
   pie/branches/named-params/pieplate/PIE-Plate/share/po/
   pie/branches/named-params/pieplate/PIE-Plate/share/web/
   pie/branches/named-params/pieplate/PIE-Plate/share/web/static/
   pie/branches/named-params/pieplate/PIE-Plate/share/web/templates/
   pie/branches/named-params/pieplate/PIE-Plate/t/
   pie/branches/named-params/pieplate/PIE-Plate/var/
   pie/branches/named-params/pieplate/PIE-Plate/var/jifty-server.pid
   pie/branches/named-params/pieplate/PIE-Plate/var/mason/

Log:
* added pieplate, a basic webui for consuming and baking pie. currently no code

Added: pie/branches/named-params/pieplate/.notes.swp
==============================================================================
Binary file. No diff available.

Added: pie/branches/named-params/pieplate/PIE-Plate/Makefile.PL
==============================================================================
--- (empty file)
+++ pie/branches/named-params/pieplate/PIE-Plate/Makefile.PL	Sat May 24 00:27:25 2008
@@ -0,0 +1,7 @@
+use inc::Module::Install;
+
+name        'PIE::Plate';
+version     '0.01';
+requires    'Jifty' => '0.80311';
+
+WriteAll;

Added: pie/branches/named-params/pieplate/PIE-Plate/bin/jifty
==============================================================================
--- (empty file)
+++ pie/branches/named-params/pieplate/PIE-Plate/bin/jifty	Sat May 24 00:27:25 2008
@@ -0,0 +1,10 @@
+#!/usr/bin/env perl
+use warnings;
+use strict;
+use UNIVERSAL::require;
+
+use Jifty;
+use Jifty::Script;
+
+local $SIG{INT} = sub { warn "Stopped\n"; exit; };
+Jifty::Script->dispatch();

Added: pie/branches/named-params/pieplate/PIE-Plate/etc/config.yml
==============================================================================
--- (empty file)
+++ pie/branches/named-params/pieplate/PIE-Plate/etc/config.yml	Sat May 24 00:27:25 2008
@@ -0,0 +1,74 @@
+--- 
+framework: 
+  AdminMode: 1
+  ApplicationClass: PIE::Plate
+  ApplicationName: PIE::Plate
+  ApplicationUUID: 5DB8E502-2887-11DD-9E60-9ACD23E51681
+  ConfigFileVersion: 3
+  Database: 
+    AutoUpgrade: 1
+    CheckSchema: 1
+    Database: pie::plate
+    Driver: SQLite
+    Host: localhost
+    Password: ''
+    RecordBaseClass: Jifty::DBI::Record::Cachable
+    User: ''
+    Version: 0.0.1
+  DevelMode: 1
+  L10N: 
+    PoDir: share/po
+  LogLevel: INFO
+  Mailer: Sendmail
+  MailerArgs: []
+
+  Plugins: 
+    - 
+      LetMe: {}
+
+    - 
+      SkeletonApp: {}
+
+    - 
+      REST: {}
+
+    - 
+      Halo: {}
+
+    - 
+      ErrorTemplates: {}
+
+    - 
+      OnlineDocs: {}
+
+    - 
+      CompressedCSSandJS: {}
+
+    - 
+      AdminUI: {}
+
+  PubSub: 
+    Backend: Memcached
+    Enable: ~
+  SkipAccessControl: 0
+  TemplateClass: PIE::Plate::View
+  View: 
+    FallbackHandler: Jifty::View::Mason::Handler
+    Handlers: 
+      - Jifty::View::Static::Handler
+      - Jifty::View::Declare::Handler
+      - Jifty::View::Mason::Handler
+  Web: 
+    BaseURL: http://localhost
+    DataDir: var/mason
+    Globals: []
+
+    MasonConfig: 
+      autoflush: 0
+      default_escape_flags: h
+      error_format: text
+      error_mode: fatal
+    Port: 8888
+    ServeStaticFiles: 1
+    StaticRoot: share/web/static
+    TemplateRoot: share/web/templates

Added: pie/branches/named-params/pieplate/PIE-Plate/lib/PIE/Plate/View.pm
==============================================================================
--- (empty file)
+++ pie/branches/named-params/pieplate/PIE-Plate/lib/PIE/Plate/View.pm	Sat May 24 00:27:25 2008
@@ -0,0 +1,8 @@
+package PIE::Plate::View;
+use Jifty::View::Declare -base;
+
+
+template 'index.html' => sub { 'hey'};
+
+
+1;

Added: pie/branches/named-params/pieplate/PIE-Plate/pie::plate
==============================================================================
Binary file. No diff available.

Added: pie/branches/named-params/pieplate/PIE-Plate/var/jifty-server.pid
==============================================================================
--- (empty file)
+++ pie/branches/named-params/pieplate/PIE-Plate/var/jifty-server.pid	Sat May 24 00:27:25 2008
@@ -0,0 +1 @@
+1224
\ No newline at end of file



More information about the Bps-public-commit mailing list