From: <vb...@us...> - 2002-09-09 11:24:33
|
Update of /cvsroot/webnotes/webnotes/doc In directory usw-pr-cvs1:/tmp/cvs-serv29798/doc Modified Files: INSTALL ROADMAP Log Message: Committed changes supplied by rmetira: - Added the note id to the variables sent to the theme. - Added the first version of phpnet theme. - Change the sample files/doc to require_once() rather than include the API. Index: INSTALL =================================================================== RCS file: /cvsroot/webnotes/webnotes/doc/INSTALL,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- INSTALL 9 Sep 2002 05:10:25 -0000 1.3 +++ INSTALL 9 Sep 2002 11:24:30 -0000 1.4 @@ -44,10 +44,10 @@ their extension to one that is interpreted by PHP. Then insert these lines into the bottom of the document (before the </body> tag): -<? - include("/mypath/api.php"); # replace with actual path +<? + require_once("/mypath/api.php"); # replace with actual path print_web_notes( __FILE__, $PHP_SELF ); -?> +?> The include argument should be the absolute path to your installation of phpWebNotes. It should not be relative to what your browser would see. Index: ROADMAP =================================================================== RCS file: /cvsroot/webnotes/webnotes/doc/ROADMAP,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- ROADMAP 9 Sep 2002 05:10:25 -0000 1.9 +++ ROADMAP 9 Sep 2002 11:24:30 -0000 1.10 @@ -16,12 +16,14 @@ * Database schema modifications * Update the demo installation that is used from the website. * A new administrator interface + * Allow certain HTML tags 2.0.1 * Language Localisation (English, French, Italian, German). * Any required bug fixes. 2.1.0 + * Multiple authentication modes * Multiple access levels (anonymous, verified, moderator, admin) * Add IP/IP range blocking. * LDAP Support |