summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhaertl.mike <>2008-12-04 17:20:52 +0000
committerhaertl.mike <>2008-12-04 17:20:52 +0000
commit1dcb5d94788a26b0a6674e19cf3ca65769ba5363 (patch)
treef315a718c00563f06504f0a6ad37470a3f3fb64d
parentf2e8e4ea22760418d8a23c1ff3dfad2cc6025f8b (diff)
Added prado-cli bootstrap script
-rw-r--r--.gitattributes1
-rw-r--r--HISTORY1
-rwxr-xr-xframework/prado-cli14
3 files changed, 16 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes
index 762440c3..125c1d21 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -2740,6 +2740,7 @@ framework/Xml/TXmlDocument.php -text
framework/interfaces.php -text
framework/powered.gif -text
framework/powered2.gif -text
+framework/prado-cli -text
framework/prado.php -text
/index.html -text
/phing -text
diff --git a/HISTORY b/HISTORY
index 136366a7..a20ce82a 100644
--- a/HISTORY
+++ b/HISTORY
@@ -12,6 +12,7 @@ ENH: Issue#72 - Add wildcard support to TUrlMapping (friendly-urls) (Michael)
ENH: Issue#77 - TJsonService missing exception messages (Carl)
ENH: Issue#29 - Ability to specify position of popup TDatePicker/TActiveDatePicker (Carl)
ENH: Issue#75 - TApplication::setRuntimePath() to update uniqueID and cacheFile (Carl)
+ENH: Added prado-cli for easier access to prado-cli.php in Unix/Linux (Michael)
NEW: Issue#51 - Additional template tag (Carl)
Version 3.1.3 November 1, 2008
diff --git a/framework/prado-cli b/framework/prado-cli
new file mode 100755
index 00000000..b755a076
--- /dev/null
+++ b/framework/prado-cli
@@ -0,0 +1,14 @@
+#!/usr/bin/env php
+<?php
+/**
+ * Prado command line script for Unix/Linux.
+ *
+ * This is the bootstrap script for running prado-cli on Unix/Linux.
+ *
+ * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 2005-2008 PradoSoft
+ * @version $Id$
+ */
+
+require_once(dirname(__FILE__).'/prado-cli.php');