[dev] dist files and comments
Vilius Šumskas
vilius at lnk.lt
Wed Nov 3 00:07:51 PST 2004
I went through dist files and catched different comment errors. As I'm not using
all modules I only made a patch for most common and used by me, so you still
need to check other modules for this.
--
Vilius
-------------- next part --------------
Index: agora/config/menu.php.dist
===================================================================
RCS file: /repository/agora/config/menu.php.dist,v
retrieving revision 1.2
diff -u -r1.2 menu.php.dist
--- agora/config/menu.php.dist 16 Nov 2003 11:36:14 -0000 1.2
+++ agora/config/menu.php.dist 3 Nov 2004 08:01:00 -0000
@@ -1,6 +1,39 @@
<?php
-/*
+/**
* $Horde: agora/config/menu.php.dist,v 1.2 2003/11/16 11:36:14 jan Exp $
+ *
+ * This file lets you extend Agora's menu with your own items.
+ *
+ * To add a new menu item, simply add a new entry to the $_menu array.
+ * Valid attributes for a new menu item are:
+ *
+ * 'url' The URL value for the menu item.
+ * 'text' The text to accompany the menu item.
+ *
+ * These attributes are optional:
+ *
+ * 'icon' The filename of an icon to use for the menu item.
+ * 'icon_path' The path to the icon if it doesn't exist in the graphics/
+ * directory.
+ * 'target' The "target" of the link (e.g. '_top', '_blank').
+ * 'onclick' Any JavaScript to execute on the "onclick" event.
+ *
+ * Here's an example entry:
+ *
+ * $_menu[] = array(
+ * 'url' => 'http://www.example.com/',
+ * 'text' => 'Example, Inc.',
+ * 'icon' => 'example.png',
+ * 'icon_path' => 'http://www.example.com/images/',
+ * 'target' => '_blank',
+ * 'onclick' => ''
+ * );
+ *
+ * You can also add a "separator" (a spacer) between menu items. To add a
+ * separator, simply add a new string to the $_menu array set to the text
+ * 'separator'. It should look like this:
+ *
+ * $_menu[] = 'separator';
*/
$_menu = array();
Index: imp/config/menu.php.dist
===================================================================
RCS file: /repository/imp/config/menu.php.dist,v
retrieving revision 1.4
diff -u -r1.4 menu.php.dist
--- imp/config/menu.php.dist 16 Oct 2004 08:33:11 -0000 1.4
+++ imp/config/menu.php.dist 3 Nov 2004 08:01:01 -0000
@@ -1,5 +1,5 @@
<?php
-/*
+/**
* $Horde: imp/config/menu.php.dist,v 1.4 2004/10/16 08:33:11 mdjukic Exp $
*
* This file lets you extend IMP's menu with your own items.
Index: imp/config/servers.php.dist
===================================================================
RCS file: /repository/imp/config/servers.php.dist,v
retrieving revision 1.45
diff -u -r1.45 servers.php.dist
--- imp/config/servers.php.dist 4 Oct 2004 22:27:31 -0000 1.45
+++ imp/config/servers.php.dist 3 Nov 2004 08:01:02 -0000
@@ -4,7 +4,7 @@
*
* This file is where you specify what mail servers people using your
* installation of IMP can log in to.
-
+ *
* Properties that can be set for each server:
*
* name: This is the plaintext, english name that you want displayed
Index: kronolith/config/keywords.php.dist
===================================================================
RCS file: /repository/kronolith/config/keywords.php.dist,v
retrieving revision 1.2
diff -u -r1.2 keywords.php.dist
--- kronolith/config/keywords.php.dist 19 Feb 2002 18:00:42 -0000 1.2
+++ kronolith/config/keywords.php.dist 3 Nov 2004 08:01:03 -0000
@@ -1,5 +1,5 @@
<?php
-/*
+/**
* Kronolith Keyword Definition File
*
* This file is where you define the list of keywords that can be used
Index: kronolith/config/menu.php.dist
===================================================================
RCS file: /repository/kronolith/config/menu.php.dist,v
retrieving revision 1.3
diff -u -r1.3 menu.php.dist
--- kronolith/config/menu.php.dist 19 Feb 2002 18:00:42 -0000 1.3
+++ kronolith/config/menu.php.dist 3 Nov 2004 08:01:03 -0000
@@ -1,5 +1,5 @@
<?php
-/*
+/**
* $Horde: kronolith/config/menu.php.dist,v 1.3 2002/02/19 18:00:42 chuck Exp $
*
* This file lets you extend Kronolith's menu with your own items.
@@ -23,7 +23,7 @@
* $_menu[] = array(
* 'url' => 'http://www.example.com/',
* 'text' => 'Example, Inc.',
- * 'icon' => 'example.gif',
+ * 'icon' => 'example.png',
* 'icon_path' => 'http://www.example.com/images/',
* 'target' => '_blank',
* 'onclick' => ''
Index: mimp/config/menu.php.dist
===================================================================
RCS file: /repository/mimp/config/menu.php.dist,v
retrieving revision 1.1
diff -u -r1.1 menu.php.dist
--- mimp/config/menu.php.dist 2 Nov 2002 02:09:30 -0000 1.1
+++ mimp/config/menu.php.dist 3 Nov 2004 08:01:04 -0000
@@ -1,8 +1,8 @@
<?php
-/*
+/**
* $Horde: mimp/config/menu.php.dist,v 1.1 2002/11/02 02:09:30 chuck Exp $
*
- * This file lets you extend IMP's menu with your own items.
+ * This file lets you extend MIMP's menu with your own items.
*
* To add a new menu item, simply add a new entry to the $_menu array.
* Valid attributes for a new menu item are:
@@ -23,7 +23,7 @@
* $_menu[] = array(
* 'url' => 'http://www.example.com/',
* 'text' => 'Example, Inc.',
- * 'icon' => 'example.gif',
+ * 'icon' => 'example.png',
* 'icon_path' => 'http://www.example.com/images/',
* 'target' => '_blank',
* 'onclick' => ''
Index: mimp/config/servers.php.dist
===================================================================
RCS file: /repository/mimp/config/servers.php.dist,v
retrieving revision 1.4
diff -u -r1.4 servers.php.dist
--- mimp/config/servers.php.dist 27 Sep 2004 18:06:19 -0000 1.4
+++ mimp/config/servers.php.dist 3 Nov 2004 08:01:04 -0000
@@ -3,7 +3,7 @@
* $Horde: mimp/config/servers.php.dist,v 1.4 2004/09/27 18:06:19 chuck Exp $
*
* This file is where you specify what servers people using your
- * installation of IMP can log in to. There are a number of properties
+ * installation of MIMP can log in to. There are a number of properties
* that you can set for each server:
*
* name: This is the plaintext, english name that you want displayed
@@ -56,7 +56,7 @@
* screen.
*
* preferred is only useful if you want to use the same servers.php
- * file for different machines: if the Hostname of the IMP Machine is
+ * file for different machines: if the Hostname of the MIMP Machine is
* identical to one of those in the preferred list, then the
* corresponding option in the select box will include SELECTED,
* i.e. it is selected per default. Otherwise the first entry in the
Index: nag/config/menu.php.dist
===================================================================
RCS file: /repository/nag/config/menu.php.dist,v
retrieving revision 1.3
diff -u -r1.3 menu.php.dist
--- nag/config/menu.php.dist 19 Feb 2002 18:00:47 -0000 1.3
+++ nag/config/menu.php.dist 3 Nov 2004 08:01:04 -0000
@@ -1,5 +1,5 @@
<?php
-/*
+/**
* $Horde: nag/config/menu.php.dist,v 1.3 2002/02/19 18:00:47 chuck Exp $
*
* This file lets you extend Nag's menu with your own items.
@@ -23,7 +23,7 @@
* $_menu[] = array(
* 'url' => 'http://www.example.com/',
* 'text' => 'Example, Inc.',
- * 'icon' => 'example.gif',
+ * 'icon' => 'example.png',
* 'icon_path' => 'http://www.example.com/images/',
* 'target' => '_blank',
* 'onclick' => ''
Index: turba/config/menu.php.dist
===================================================================
RCS file: /repository/turba/config/menu.php.dist,v
retrieving revision 1.3
diff -u -r1.3 menu.php.dist
--- turba/config/menu.php.dist 19 Feb 2002 18:00:54 -0000 1.3
+++ turba/config/menu.php.dist 3 Nov 2004 08:01:06 -0000
@@ -1,5 +1,5 @@
<?php
-/*
+/**
* $Horde: turba/config/menu.php.dist,v 1.3 2002/02/19 18:00:54 chuck Exp $
*
* This file lets you extend Turba's menu with your own items.
@@ -23,7 +23,7 @@
* $_menu[] = array(
* 'url' => 'http://www.example.com/',
* 'text' => 'Example, Inc.',
- * 'icon' => 'example.gif',
+ * 'icon' => 'example.png',
* 'icon_path' => 'http://www.example.com/images/',
* 'target' => '_blank',
* 'onclick' => ''
Index: ulaform/config/menu.php.dist
===================================================================
RCS file: /repository/ulaform/config/menu.php.dist,v
retrieving revision 1.1
diff -u -r1.1 menu.php.dist
--- ulaform/config/menu.php.dist 5 May 2003 01:51:49 -0000 1.1
+++ ulaform/config/menu.php.dist 3 Nov 2004 08:01:06 -0000
@@ -1,5 +1,5 @@
<?php
-/*
+/**
* $Horde: ulaform/config/menu.php.dist,v 1.1 2003/05/05 01:51:49 mdjukic Exp $
*
* This file lets you extend Ulaform's menu with your own items.
@@ -23,7 +23,7 @@
* $_menu[] = array(
* 'url' => 'http://www.example.com/',
* 'text' => 'Example, Inc.',
- * 'icon' => 'example.gif',
+ * 'icon' => 'example.png',
* 'icon_path' => 'http://www.example.com/images/',
* 'target' => '_blank',
* 'onclick' => ''
More information about the dev
mailing list