From: <vb...@us...> - 2002-09-12 13:31:49
|
Update of /cvsroot/webnotes/webnotes/sample In directory usw-pr-cvs1:/tmp/cvs-serv31239/sample Modified Files: webservices.php xml.php Log Message: - Added the sf logo to the sample pages. - Changed the sample pages to use logical names rather than __FILE__. - Added the ? picture to the notes + other minor tweaks. ? is not yet hyperlinked. Index: webservices.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/sample/webservices.php,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- webservices.php 11 Sep 2002 09:49:54 -0000 1.4 +++ webservices.php 12 Sep 2002 13:31:46 -0000 1.5 @@ -28,7 +28,10 @@ <?php require_once("../core/api.php"); # replace with actual path - print_web_notes( __FILE__, $PHP_SELF ); + print_web_notes( 'Web Services', $PHP_SELF ); ?> + + <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> Index: xml.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/sample/xml.php,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- xml.php 11 Sep 2002 09:49:54 -0000 1.4 +++ xml.php 12 Sep 2002 13:31:46 -0000 1.5 @@ -21,7 +21,9 @@ <?php require_once("../core/api.php"); # replace with actual path - print_web_notes( __FILE__, $PHP_SELF ); + print_web_notes( 'XML', $PHP_SELF ); ?> + <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> |