summaryrefslogtreecommitdiff
path: root/actions/doc.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-13 13:15:38 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-13 13:15:38 -0400
commit8ba36458ef78b6eec8abfcf5b08ca36d7fbd8b83 (patch)
tree3c07fc1ea59c742e7c554f3f444dc72cc70e883c /actions/doc.php
parentd4a063c8dccd79dc156ec638a04251f929827a05 (diff)
update TODO, and add variables to docs
darcs-hash:20080613171538-84dde-ffd6abee1ae304e55f4ff4224dfebf4be8fff0fd.gz
Diffstat (limited to 'actions/doc.php')
-rw-r--r--actions/doc.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/actions/doc.php b/actions/doc.php
index 0ace04246..a23cf9ad0 100644
--- a/actions/doc.php
+++ b/actions/doc.php
@@ -31,7 +31,11 @@ class DocAction extends Action {
common_user_error(_t('No such document.'));
return;
}
- $output = Markdown(file_get_contents($filename));
+ $c = file_get_contents($filename);
+ $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
+ $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
+ $c = preg_replace('/%%(\w+).(\w+)%%/e', '$config[\'\\1\'][\'\\2\']', $c);
+ $output = Markdown($c);
common_show_header(_t(ucfirst($title)));
common_raw($output);
common_show_footer();