diff options
Diffstat (limited to 'app/php')
-rw-r--r-- | app/php/application.xml | 39 | ||||
-rw-r--r-- | app/php/pages/Home.page | 8 | ||||
l--------- | app/php/runtime | 1 |
3 files changed, 48 insertions, 0 deletions
diff --git a/app/php/application.xml b/app/php/application.xml new file mode 100644 index 0000000..98f3af5 --- /dev/null +++ b/app/php/application.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> + +<application id="http" mode="Debug"> + <!-- alias definitions and namespace usings + <paths> + <alias id="myalias" path="./lib" /> + <using namespace="Application.common.*" /> + </paths> + --> + + <!-- configurations for modules --> + <modules> + <!-- Remove this comment mark to enable caching + <module id="cache" class="System.Caching.TDbCache" /> + --> + + <!-- Remove this comment mark to enable PATH url format + <module id="request" class="THttpRequest" UrlFormat="Path" /> + --> + + <!-- Remove this comment mark to enable logging + <module id="log" class="System.Util.TLogRouter"> + <route class="TBrowserLogRoute" Categories="System" /> + </module> + --> + </modules> + + <!-- configuration for available services --> + <services> + <service id="page" class="TPageService" DefaultPage="Home" /> + </services> + + <!-- application parameters + <parameters> + <parameter id="param1" value="value1" /> + <parameter id="param2" value="value2" /> + </parameters> + --> +</application> diff --git a/app/php/pages/Home.page b/app/php/pages/Home.page new file mode 100644 index 0000000..368b3e7 --- /dev/null +++ b/app/php/pages/Home.page @@ -0,0 +1,8 @@ +<html> +<head> + <title>Welcome to PRADO</title> +</head> +<body> +<h1>Welcome to PRADO!</h1> +</body> +</html>
\ No newline at end of file diff --git a/app/php/runtime b/app/php/runtime new file mode 120000 index 0000000..2cee2e0 --- /dev/null +++ b/app/php/runtime @@ -0,0 +1 @@ +../../cache/prado
\ No newline at end of file |