Update of /cvsroot/webnotes/webnotes/sample
In directory usw-pr-cvs1:/tmp/cvs-serv20300/sample
Modified Files:
xhtml.php
Log Message:
- Changed the way the schemes are structure to accept one array which has all
information rather than header, note, footer.
- Remove the handling of finding out the prev / next page names/urls from the
theme to the core.
- Added page_prepare_theme_data() which prepares all the information to be used
by the scheme into one array. The theme should never need to access the
database.
- Removed the row which has the add / help icons from the footer when there is
no notes in the page.
- Added source forge logo to the XHTML sample.
Index: xhtml.php
===================================================================
RCS file: /cvsroot/webnotes/webnotes/sample/xhtml.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- xhtml.php 19 Sep 2002 22:50:38 -0000 1.1
+++ xhtml.php 20 Sep 2002 02:48:47 -0000 1.2
@@ -15,5 +15,7 @@
require_once("../core/api.php"); # replace with actual path
print_web_notes( 'XHTML', $PHP_SELF, 'XML', 'Web Services' );
?>
+ <br />
+ <a href="http://sourceforge.net/projects/webnotes/"><img src="http://sourceforge.net/sflogo.php?group_id=15381&type=5" width="140" height="42" border="0" alt="phpWebNotes @ SourceForge"></a>
</body>
</html>
|