Update of /cvsroot/webnotes/webnotes/core
In directory usw-pr-cvs1:/tmp/cvs-serv8751/core
Modified Files:
api.php
Log Message:
added new user management files
Index: api.php
===================================================================
RCS file: /cvsroot/webnotes/webnotes/core/api.php,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- api.php 20 Sep 2002 04:17:43 -0000 1.27
+++ api.php 30 Sep 2002 02:36:41 -0000 1.28
@@ -24,30 +24,34 @@
if ( file_exists( $t_custom_config ) ) {
require_once( $t_custom_config );
}
-
+
# Filenames
- $g_login = $g_web_directory . 'login' . $g_ext;
- $g_login_page = $g_web_directory . 'login_page' . $g_ext;
- $g_login_success_page = $g_web_directory . 'admin' . $g_ext;
- $g_logout = $g_web_directory . 'logout' . $g_ext;
- $g_logout_redirect_page = $g_web_directory;
- $g_signup_page = $g_web_directory . 'signup_page' . $g_ext;
+ $g_login = $g_web_directory . 'login' . $g_ext;
+ $g_login_page = $g_web_directory . 'login_page' . $g_ext;
+ $g_login_success_page = $g_web_directory . 'admin' . $g_ext;
+ $g_logout = $g_web_directory . 'logout' . $g_ext;
+ $g_logout_redirect_page = $g_web_directory;
+ $g_signup_page = $g_web_directory . 'signup_page' . $g_ext;
- $g_admin_index_files = $g_web_directory . 'admin_index_files' . $g_ext;
- $g_admin_view_queue = $g_web_directory . 'admin_view_queue' . $g_ext;
- $g_admin_manage_notes = $g_web_directory . 'admin_manage_notes' . $g_ext;
- $g_admin_manage_users = $g_web_directory . 'admin_manage_users' . $g_ext;
- $g_admin_change_password = $g_web_directory . 'admin_change_password' . $g_ext;
+ $g_admin_index_files = $g_web_directory . 'admin_index_files' . $g_ext;
+ $g_admin_view_queue = $g_web_directory . 'admin_view_queue' . $g_ext;
+ $g_admin_manage_notes = $g_web_directory . 'admin_manage_notes' . $g_ext;
+ $g_admin_manage_users = $g_web_directory . 'admin_manage_users' . $g_ext;
+ $g_admin_manage_users_edit = $g_web_directory . 'admin_manage_users_edit' . $g_ext;
+ $g_admin_manage_users_update = $g_web_directory . 'admin_manage_users_update' . $g_ext;
+ $g_admin_manage_users_delete = $g_web_directory . 'admin_manage_users_delete' . $g_ext;
+ $g_admin_manage_users_delete_page = $g_web_directory . 'admin_manage_users_delete_page' . $g_ext;
+ $g_admin_change_password = $g_web_directory . 'admin_change_password' . $g_ext;
- $g_user_home_page = $g_web_directory . 'user_home_page' . $g_ext;
- $g_admin_page = $g_user_home_page;
+ $g_user_home_page = $g_web_directory . 'user_home_page' . $g_ext;
+ $g_admin_page = $g_user_home_page;
- $g_css_inc_file = $g_absolute_directory . 'core' . DIRECTORY_SEPARATOR . 'css_inc' . $g_ext;
- $g_meta_inc_file = $g_absolute_directory . 'core' . DIRECTORY_SEPARATOR . 'meta_inc' . $g_ext;
+ $g_css_inc_file = $g_absolute_directory . 'core' . DIRECTORY_SEPARATOR . 'css_inc' . $g_ext;
+ $g_meta_inc_file = $g_absolute_directory . 'core' . DIRECTORY_SEPARATOR . 'meta_inc' . $g_ext;
- $g_note_add_page = $g_web_directory . 'note_add_page' . $g_ext;
- $g_note_preview_page = $g_web_directory . 'note_preview_page' . $g_ext;
- $g_note_add = $g_web_directory . 'note_add' . $g_ext;
+ $g_note_add_page = $g_web_directory . 'note_add_page' . $g_ext;
+ $g_note_preview_page = $g_web_directory . 'note_preview_page' . $g_ext;
+ $g_note_add = $g_web_directory . 'note_add' . $g_ext;
$t_path_lang = $t_path_main . 'lang' . DIRECTORY_SEPARATOR;
require_once( $t_path_lang . 'strings_english' . $g_ext );
@@ -67,10 +71,10 @@
require_once( $t_path_core . 'link_api.php' );
require_once( $t_path_core . 'util_api.php' );
require_once( $t_path_core . 'gpc_api.php' );
- require_once( $t_path_core . 'email_api.php' );
- require_once( $t_path_core . 'enum_api.php' );
- require_once( $t_path_core . 'pwn_api.php' );
- require_once( $t_path_main . DIRECTORY_SEPARATOR . 'themes' . DIRECTORY_SEPARATOR . $g_theme .
+ require_once( $t_path_core . 'email_api.php' );
+ require_once( $t_path_core . 'enum_api.php' );
+ require_once( $t_path_core . 'pwn_api.php' );
+ require_once( $t_path_main . DIRECTORY_SEPARATOR . 'themes' . DIRECTORY_SEPARATOR . $g_theme .
DIRECTORY_SEPARATOR . 'theme_api.php' );
# Cookies
|