summaryrefslogtreecommitdiffabout
path: root/htdocs/view.chtml
Side-by-side diff
Diffstat (limited to 'htdocs/view.chtml') (more/less context) (ignore whitespace changes)
-rw-r--r--htdocs/view.chtml9
1 files changed, 5 insertions, 4 deletions
diff --git a/htdocs/view.chtml b/htdocs/view.chtml
index f729465..809c54f 100644
--- a/htdocs/view.chtml
+++ b/htdocs/view.chtml
@@ -8,6 +8,7 @@
using namespace std;
#include <sitecing/util.h>
#include <sitecing/sitecing_util.h>
+ #include <konforka/util.h>
#include <konforka/exception.h>
#include "acconfig.h"
</%impl>
@@ -16,21 +17,21 @@
</%codemethod>
<%method void body() %>
<%code>
- string rfile = sitecing::normalize_path(
+ string rfile = konforka::normalize_path(
sitecing::strip_prefix(__CGI->get_meta("PATH_INFO"),"/view.chtml"),
- sitecing::restrict_dotdot|sitecing::strip_leading_slash );
+ konforka::restrict_dotdot|konforka::strip_leading_slash );
sourcefile_t *sof = 0;
for(int n=0;n<source_files_count;n++) {
sof = &source_files[n];
if(sof->name && sof->dir) {
- if(sitecing::normalize_path(sitecing::combine_path(sof->dir,sof->name,0),sitecing::strip_leading_slash)==rfile)
+ if(konforka::normalize_path(konforka::combine_path(sof->dir,sof->name,0),konforka::strip_leading_slash)==rfile)
break;
}
sof = 0;
}
if(!sof)
throw konforka::exception(CODEPOINT,"no access to the file allowed");
- string afile = sitecing::combine_path(WEB_ROOT,rfile,0);
+ string afile = konforka::combine_path(WEB_ROOT,rfile,0);
</%code>
<div class="source">
<h1><% rfile %></h1>