[Bps-public-commit] jifty-plugin-recordhistory branch, master, updated. 7d39d72b165240483861ad054ec4fc9e4bc6034c
Shawn Moore
sartak at bestpractical.com
Tue Feb 8 17:58:01 EST 2011
The branch, master has been updated
via 7d39d72b165240483861ad054ec4fc9e4bc6034c (commit)
from 41ef7fa023e6718ba51e8356a2f801c34cbed07d (commit)
Summary of changes:
t/TestApp-Plugin-RecordHistory/Makefile.PL | 7 ++
t/TestApp-Plugin-RecordHistory/app.psgi | 3 +
t/TestApp-Plugin-RecordHistory/bin/jifty | 16 +++++
t/TestApp-Plugin-RecordHistory/etc/config.yml | 75 +++++++++++++++++++++++++
4 files changed, 101 insertions(+), 0 deletions(-)
create mode 100644 t/TestApp-Plugin-RecordHistory/Makefile.PL
create mode 100644 t/TestApp-Plugin-RecordHistory/app.psgi
create mode 100755 t/TestApp-Plugin-RecordHistory/bin/jifty
create mode 100644 t/TestApp-Plugin-RecordHistory/etc/config.yml
- Log -----------------------------------------------------------------
commit 7d39d72b165240483861ad054ec4fc9e4bc6034c
Author: Shawn M Moore <sartak at bestpractical.com>
Date: Tue Feb 8 17:57:56 2011 -0500
test layout
diff --git a/t/TestApp-Plugin-RecordHistory/Makefile.PL b/t/TestApp-Plugin-RecordHistory/Makefile.PL
new file mode 100644
index 0000000..886d3fa
--- /dev/null
+++ b/t/TestApp-Plugin-RecordHistory/Makefile.PL
@@ -0,0 +1,7 @@
+use inc::Module::Install;
+
+name 'TestApp::Plugin::RecordHistory';
+version '0.01';
+requires 'Jifty' => '1.01209';
+
+WriteAll;
diff --git a/t/TestApp-Plugin-RecordHistory/app.psgi b/t/TestApp-Plugin-RecordHistory/app.psgi
new file mode 100644
index 0000000..ff05fb1
--- /dev/null
+++ b/t/TestApp-Plugin-RecordHistory/app.psgi
@@ -0,0 +1,3 @@
+use Jifty;
+Jifty->new;
+Jifty->handler->psgi_app;
diff --git a/t/TestApp-Plugin-RecordHistory/bin/jifty b/t/TestApp-Plugin-RecordHistory/bin/jifty
new file mode 100755
index 0000000..118d895
--- /dev/null
+++ b/t/TestApp-Plugin-RecordHistory/bin/jifty
@@ -0,0 +1,16 @@
+#!/usr/bin/env perl
+use warnings;
+use strict;
+use UNIVERSAL::require;
+
+BEGIN {
+ Jifty::Util->require or die $UNIVERSAL::require::ERROR;
+ my $root = Jifty::Util->app_root(quiet => 1);
+ unshift @INC, "$root/lib" if ($root);
+}
+
+use Jifty;
+use Jifty::Script;
+
+local $SIG{INT} = sub { warn "Stopped\n"; exit; };
+Jifty::Script->dispatch();
diff --git a/t/TestApp-Plugin-RecordHistory/etc/config.yml b/t/TestApp-Plugin-RecordHistory/etc/config.yml
new file mode 100644
index 0000000..63be0a5
--- /dev/null
+++ b/t/TestApp-Plugin-RecordHistory/etc/config.yml
@@ -0,0 +1,75 @@
+# See perldoc Jifty::Config for more information about config files
+---
+framework:
+ AdminMode: 1
+ ApplicationClass: TestApp::Plugin::RecordHistory
+ ApplicationName: TestApp-Plugin-RecordHistory
+ ApplicationUUID: D25CC0EA-33C9-11E0-887F-C54A534EF7F3
+ ConfigFileVersion: 5
+ Database:
+ AutoUpgrade: 1
+ CheckSchema: 1
+ Database: testapp_plugin_recordhistory
+ 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:
+ -
+ AdminUI: {}
+
+ -
+ CompressedCSSandJS: {}
+
+ -
+ ErrorTemplates: {}
+
+ -
+ Halo: {}
+
+ -
+ LetMe: {}
+
+ -
+ OnlineDocs: {}
+
+ -
+ REST: {}
+
+ -
+ SkeletonApp: {}
+
+ PubSub:
+ Backend: Memcached
+ Enable: ~
+ SkipAccessControl: 0
+ TemplateClass: TestApp::Plugin::RecordHistory::View
+ View:
+ 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
+ PSGIStatic: 1
+ Port: 8888
+ ServeStaticFiles: 1
+ StaticRoot: share/web/static
+ TemplateRoot: share/web/templates
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list