[PHPLIB-DEV] cvs commit From: kk (phplib-dev <email protected>)
Date: 11/06/99

From: kk
Date: Sat Nov 6 21:43:33 1999
Modified files:
      php-lib/COMMIT
      php-lib/VERSION
      php-lib/php/menu.inc
      php-lib/php/menu_button.inc

Log message:
Some minor mods. New version number.

Index: php-lib/COMMIT
diff -u php-lib/COMMIT:1.3 php-lib/COMMIT:1.4
--- php-lib/COMMIT:1.3 Tue Jun 22 20:35:18 1999
+++ php-lib/COMMIT Sat Nov 6 21:43:02 1999
@@ -1,5 +1,5 @@
 
-$Id: COMMIT,v 1.3 1999/06/22 18:35:18 kk Exp $
+$Id: COMMIT,v 1.4 1999/11/06 20:43:02 kk Exp $
 
 Some rules for CVS committers:
 
@@ -11,7 +11,8 @@
   CHANGES file, at the top.
 
 - The source is indented using spaces and a indentation
- level of 4. There are no tabs in the source.
+ level of 2. There are no tabs in the source. We do Unix
+ line endings ("\n", not "\r\n").
 
 - Keep your changes compatible.
 
@@ -22,3 +23,95 @@
 - Use meaningful log messages. They are collected and mailed
   out to the mailing list, phplib-dev <email protected>
 
+---------------------------------------------------------------------------
+
+When and where to commit:
+
+0. Are you subscribed to phplib-dev <email protected>?
+
+ Yes: Go ahead.
+
+ No: Subscribe now or go home. All development discussion is
+ going on on that list. If you are not on that list, you
+ should not commit.
+
+1. Do you have a cvs write account?
+
+ Yes: Are your changes compatible?
+
+ Yes: Commit into the distribution, that is, into php/ and pages/.
+ Try to avoid creating new directories.
+
+ Committing into the distribution is the best way to get your
+ changes tested. If your changes aren't good, it is also a
+ good way to get flamed.
+
+ No: Discuss the issue on the list. If there are objections or there
+ is a veto by me, get the issue cleared or commit into the
+ unsup/ directory. Stuff in unsup/ is there because it has
+ issues that are to be resolved or because it is orphaned.
+
+ No: Make sure you get the very latest CVS version, by either
+ using the cvsread account or the CVS web interface at
+ http://phplib.netuse.de/cgi/cvsweb.cgi.
+
+ Make sure your changes are against the latest version of
+ these files. Send a diff as a MIME file attachment to
+ the phplib-dev list or get a CVS committer to accept your
+ patch.
+
+2. Did you update the CHANGES file?
+
+ Yes: Good.
+
+ No: You are toast.
+
+3. Did you update the documentation?
+
+ Yes: Good.
+
+ No: You better have a good excuse (like: "I promise to update
+ the docs within the next 7 days").
+
+---------------------------------------------------------------------------
+
+Working with the CVS:
+
+1. Logging in and checking out:
+
+$ cd ~/Source
+$ cvs -d :pserver:cvsread <email protected>:/repository login
+Password: cvsread
+
+$ cd ~/Source
+$ cvs -d :pserver:cvsread <email protected>:/repository checkout php-lib
+
+If you have a CVS write account, use your CVS write account name
+to log in instead of cvsread.
+
+2. Updating to the most current version:
+
+$ cd ~/Source/php-lib
+$ cvs update -dAP
+
+3. Committing changes:
+
+$ cd ~/Source/php-lib
+$ cvs update -dAP
+$ cvs commit
+
+4. Diffing your changes against the current CVS to see what you
+ changed:
+
+$ cd ~/Source/php-lib
+$ cvs diff -u
+
+5. Diffing two versions of a file:
+
+$ cd ~/Source/php-lib
+$ cvs diff -u -r 1.3 COMMIT
+
+6. Seeing which labels are assigned to a file
+
+$ cd ~/Source/php-lib
+$ cvs status -v CHANGES
Index: php-lib/VERSION
diff -u php-lib/VERSION:1.11 php-lib/VERSION:1.12
--- php-lib/VERSION:1.11 Tue Oct 26 10:31:11 1999
+++ php-lib/VERSION Sat Nov 6 21:43:02 1999
@@ -1 +1 @@
-7.2
+7.3-dev
Index: php-lib/php/menu.inc
diff -u php-lib/php/menu.inc:1.4 php-lib/php/menu.inc:1.5
--- php-lib/php/menu.inc:1.4 Fri Oct 29 00:13:16 1999
+++ php-lib/php/menu.inc Sat Nov 6 21:43:02 1999
@@ -5,10 +5,12 @@
  * Copyright (c) 1999 NetUSE GmbH
  * Kristian Koehntopp
  *
- * $Id: menu.inc,v 1.4 1999/10/28 22:13:16 kk Exp $
+ * $Id: menu.inc,v 1.5 1999/11/06 20:43:02 kk Exp $
  *
  */
 class Menu {
+ var $classname = "Menu";
+
   # Map of PHP_SELF URL strings to menu positions
   var $urlmap = array();
   
Index: php-lib/php/menu_button.inc
diff -u php-lib/php/menu_button.inc:1.2 php-lib/php/menu_button.inc:1.3
--- php-lib/php/menu_button.inc:1.2 Sat Nov 6 17:19:59 1999
+++ php-lib/php/menu_button.inc Sat Nov 6 21:43:02 1999
@@ -5,11 +5,11 @@
  * Copyright (c) 1999 NetUSE GmbH
  * Kristian Koehntopp
  *
- * $Id: menu_button.inc,v 1.2 1999/11/06 16:19:59 kk Exp $
+ * $Id: menu_button.inc,v 1.3 1999/11/06 20:43:02 kk Exp $
  *
  */
 class Menu_Button extends Menu {
-
+ var $classname = "Menu_Button";
   var $button_path = "/menu/button.php3";
 
   function Menu_Button() {

-
PHPLIB Developers Mailing List. Send messages to <phplib-dev <email protected>>.
To unsubscribe, send "unsubscribe" to <phplib-dev-request <email protected>> in
the body, not the subject, of your message.