Xaraya / Postnuke CVS Notices - Message

Note: this list is kept only as a demonstration for CVSNotice. For the latest CVS notices, see the Xaraya and Postnuke sites

View Statistics - Next Notice - Previous Notice

Directory filter : [ all ] / postnuke_official / html / modules / example / pnlang / eng [ view in CVS ]


Deprecated: Function gmstrftime() is deprecated in /home/mikespub/www/list.php on line 509
Date Directory [filter] File(s) [view] Author [filter]
07 Aug 2002 01:36:42postnuke_official/html/modules/example/pnlang/engadmin.php,NONE,1.1 first.php,NONE,1.1 init.php,NONE,1.1 user.php,NONE,1.1 userapi.php,NONE,1.1Mike
 "new" example module

Update of /home/cvsroot/postnuke_official/html/modules/example/pnlang/eng
In directory ns7.hostnuke.net:/tmp/cvs-serv22713

Added Files:
	admin.php first.php init.php user.php userapi.php 
Log Message:
"new" example module


--- NEW FILE: admin.php ---
<?php // $Id: admin.php,v 1.1 2002/08/07 01:36:39 mikespub Exp $
// ----------------------------------------------------------------------
// PostNuke Content Management System
// Copyright (C) 2002 by the PostNuke Development Team.
// http://www.postnuke.com/
// ----------------------------------------------------------------------
// LICENSE
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License (GPL)
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// To read the license please visit http://www.gnu.org/copyleft/gpl.html
// ----------------------------------------------------------------------
// Original Author of file: Jim McDonald
// Purpose of file:  Language defines for pnadmin.php
// ----------------------------------------------------------------------

define('_ADDEXAMPLE', 'Add example item');
define('_CANCELEXAMPLEDELETE', 'Cancel deletion');
define('_CONFIRMEXAMPLEDELETE', 'Confirm deletion of example item');
define('_CREATEFAILED', 'Creation attempt failed');
define('_DELETEFAILED', 'Deletion attempt failed');
define('_DELETEEXAMPLE', 'Delete example item');
define('_EDITEXAMPLE', 'Edit example item');
define('_EDITEXAMPLECONFIG', 'Edit example configuration');
define('_LOADFAILED', 'Load of module failed');
define('_NEWEXAMPLE', 'New example item');
define('_EXAMPLE', 'Example');
define('_EXAMPLEADD', 'Add example item');
define('_EXAMPLECREATED', 'Example item created');
define('_EXAMPLEDELETED', 'Example item deleted');
define('_EXAMPLEDISPLAYBOLD', 'Display item names in bold');
define('_EXAMPLEMODIFYCONFIG', 'Modify example configuration');
define('_EXAMPLENAME', 'Example item name');
define('_EXAMPLENOSUCHITEM', 'No such item');
define('_EXAMPLENUMBER', 'Example item number');
define('_EXAMPLEOPTIONS', 'Options');
define('_EXAMPLEUPDATE', 'Update example item');
define('_EXAMPLEUPDATED', 'Example item updated');
define('_VIEWEXAMPLE', 'View example items');
define('_EXAMPLEITEMSPERPAGE', 'Items per page');
if (!defined('_CONFIRM')) {
	define('_CONFIRM', 'Confirm');
}
if (!defined('_EXAMPLENOAUTH')) {
	define('_EXAMPLENOAUTH','Not authorised to access Example module');
}
?>

--- NEW FILE: first.php ---
<?php // $Id: first.php,v 1.1 2002/08/07 01:36:39 mikespub Exp $
// ----------------------------------------------------------------------
// PostNuke Content Management System
// Copyright (C) 2002 by the PostNuke Development Team.
// http://www.postnuke.com/
// ----------------------------------------------------------------------
// LICENSE
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License (GPL)
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// To read the license please visit http://www.gnu.org/copyleft/gpl.html

// ----------------------------------------------------------------------
// Original Author of file: Jim McDonald
// Purpose of file:  Language defines for first.php block
// ----------------------------------------------------------------------
define('_NUMITEMS', 'Number of example items to display');
?>
--- NEW FILE: init.php ---
<?php // $Id: init.php,v 1.1 2002/08/07 01:36:39 mikespub Exp $
// ----------------------------------------------------------------------
// PostNuke Content Management System
// Copyright (C) 2002 by the PostNuke Development Team.
// http://www.postnuke.com/
// ----------------------------------------------------------------------
// LICENSE
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License (GPL)
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// To read the license please visit http://www.gnu.org/copyleft/gpl.html
// ----------------------------------------------------------------------
// Original Author of file: Jim McDonald
// Purpose of file:  Language defines for pninit.php
//-----------------------------------------------------------------------
define('_CREATETABLEFAILED', 'Table creation failed');
define('_UPDATETABLEFAILED', 'Table update failed');
?>
--- NEW FILE: user.php ---
<?php // $Id: user.php,v 1.1 2002/08/07 01:36:39 mikespub Exp $
// ----------------------------------------------------------------------
// PostNuke Content Management System
// Copyright (C) 2002 by the PostNuke Development Team.
// http://www.postnuke.com/
// ----------------------------------------------------------------------
// LICENSE
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License (GPL)
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// To read the license please visit http://www.gnu.org/copyleft/gpl.html
// ----------------------------------------------------------------------
// Original Author of file: Jim McDonald
// Purpose of file:  Example administration display functions
// ----------------------------------------------------------------------
// ----------------------------------------------------------------------
// Original Author of file: Jim McDonald
// Purpose of file:  Language defines for pnuser.php
// ----------------------------------------------------------------------
define('_EXAMPLE', 'Example');
define('_EXAMPLEITEMFAILED', 'Failed to get any items');
define('_EXAMPLENAME', 'Example item name');
define('_EXAMPLENUMBER', 'Example item number');
define('_EXAMPLEVIEW', 'View example items');
if (!defined('_EXAMPLENOAUTH')) {
	define('_EXAMPLENOAUTH','Not authorised to access Example module');
}
?>
--- NEW FILE: userapi.php ---
<?php // $Id: userapi.php,v 1.1 2002/08/07 01:36:39 mikespub Exp $
// ----------------------------------------------------------------------
// ----------------------------------------------------------------------
// PostNuke Content Management System
// Copyright (C) 2002 by the PostNuke Development Team.
// http://www.postnuke.com/
// ----------------------------------------------------------------------
// LICENSE
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License (GPL)
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// To read the license please visit http://www.gnu.org/copyleft/gpl.html
// ----------------------------------------------------------------------
// Original Author of file: Jim McDonald
// Purpose of file:  Example administration display functions
// ----------------------------------------------------------------------
// ----------------------------------------------------------------------
// Original Author of file: Jim McDonald
// Purpose of file:  Language defines for pnuserapi.php
// ----------------------------------------------------------------------
define('_GETFAILED', 'Items load failed');
if (!defined('_EXAMPLENOAUTH')) {
	define('_EXAMPLENOAUTH','Not authorised to access Example module');
}
?>

Directory filter : [ all ] / postnuke_official / html / modules / example / pnlang / eng [ view in CVS ]

View Statistics - Next Notice - Previous Notice


Visit Developer Site - Browse CVS Repository Syndicate via backend.rss
(max. once per hour please)
Powered by CVSNotice 0.1.3