Skip to content

Commit

Permalink
change a few documentation things
Browse files Browse the repository at this point in the history
  • Loading branch information
allynbauer committed Apr 14, 2010
1 parent b5d6047 commit 53d77d1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
6 changes: 5 additions & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,8 @@ This isn't done yet, so don't come crying to me if you download it and it maxes
The userdata_app.php file is meant to be where you might add data validation. So if you have a few url parameters and you want to get them from there, you could be all:
sys()->getData->method('key');

To get yourself validated info. In this way you (ideally) never directly access get or post data without making sure it's validated data.
To get yourself validated info. In this way you (ideally) never directly access get or post data without making sure it's validated data.


To Document:
need htaccess; assumes apache
11 changes: 7 additions & 4 deletions views/_template.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,18 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta content="noindex, nofollow" name="robots" />
<title>Condor</title>
<!--
You could get yourself some css with this:
<?php o(include_stylesheet('main')) ?>
Similar support for javascript is included.
-->
<?php echo custom_includes(sys()->view); ?>
</head>
<body>
<div id='content'>
</div>
<?php echo sys()->flash->render(); ?>
<?php echo sys()->content; ?>
<?php echo sys()->flash->render(); ?>
<?php echo sys()->content; ?>
</div>
</body>
</html>

0 comments on commit 53d77d1

Please sign in to comment.