From: <vb...@us...> - 2002-09-11 09:49:58
|
Update of /cvsroot/webnotes/webnotes/sample In directory usw-pr-cvs1:/tmp/cvs-serv24389/sample Modified Files: webservices.php xml.php Log Message: - Unified the header in all files - Used require_once() rather than include() to include the api.php - Fixed a probem in note_print_all() where $p_url was not defined. - Replaced some < ? with < ? php. Index: webservices.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/sample/webservices.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- webservices.php 9 Sep 2002 11:24:31 -0000 1.3 +++ webservices.php 11 Sep 2002 09:49:54 -0000 1.4 @@ -1,3 +1,13 @@ +<?php + # phpWebNotes - a php based note addition system + # Copyright (C) 2000-2002 Webnotes Team - web...@so... + # This program is distributed under the terms and conditions of the GPL + # See the files README and LICENSE for details + + # -------------------------------------------------------- + # $Id$ + # -------------------------------------------------------- +?> <html> <head> <title>Web services (from Webopedia)</title> Index: xml.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/sample/xml.php,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- xml.php 9 Sep 2002 11:24:31 -0000 1.3 +++ xml.php 11 Sep 2002 09:49:54 -0000 1.4 @@ -1,3 +1,13 @@ +<?php + # phpWebNotes - a php based note addition system + # Copyright (C) 2000-2002 Webnotes Team - web...@so... + # This program is distributed under the terms and conditions of the GPL + # See the files README and LICENSE for details + + # -------------------------------------------------------- + # $Id$ + # -------------------------------------------------------- +?> <html> <head> <title>XML (from Webopedia)</title> |