summaryrefslogtreecommitdiff
path: root/app/php/url/config.xml
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-06-07 15:17:49 +0200
committeremkael <emkael@tlen.pl>2016-06-10 11:46:41 +0200
commit823d71ced9b4947b1a5a5ade7245d521ed490061 (patch)
treea9a6c7cb0de74ff705e8320c284de423a698f5b5 /app/php/url/config.xml
parentdf401552aac363655ab8f056a6c910a7611954d6 (diff)
* renaming php directory
Diffstat (limited to 'app/php/url/config.xml')
-rw-r--r--app/php/url/config.xml44
1 files changed, 0 insertions, 44 deletions
diff --git a/app/php/url/config.xml b/app/php/url/config.xml
deleted file mode 100644
index b072b2d..0000000
--- a/app/php/url/config.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<configuration>
- <modules>
- <module id="url"
- class="Application.url.UrlManager"
- UrlPrefix="/"
- EnableCustomUrl="True">
-
- <url ServiceParameter="Home"
- UrlFormat="HiddenPath"
- pattern="{month}/{year}/"
- parameters.month="\d{2}"
- parameters.year="\d{4}" />
- <url ServiceParameter="Home"
- UrlFormat="HiddenPath"
- pattern="{month}/"
- parameters.month="\d{2}" />
- <url ServiceParameter="Home"
- UrlFormat="HiddenPath"
- EnableCustomUrl="false"
- pattern="" />
-
- <url ServiceParameter="Calendar"
- UrlFormat="HiddenPath"
- pattern="calendar/{calendar}/"
- parameters.calendar=".*" />
-
- <url ServiceParameter="*"
- UrlFormat="HiddenPath"
- EnableCustomUrl="false"
- pattern="{*}" />
- </module>
-
- <module id="request"
- class="THttpRequest"
- UrlFormat="HiddenPath"
- UrlParamSeparator="/"
- UrlManager="url" />
- <module id="response"
- class="THttpResponse"
- CacheControl="public"
- CacheExpire="10" />
- </modules>
-</configuration>