From 1e79c70b681c854851e7a3f0cdabcaffacf1043c Mon Sep 17 00:00:00 2001 From: duergner Date: Thu, 29 May 2003 18:45:08 +0000 Subject: [PATCH] *** empty log message *** --- lam/help/help.inc | 6 +++--- lam/help/help_numbers.assign | 3 ++- lam/lib/status.inc | 2 +- lam/templates/help.php | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/lam/help/help.inc b/lam/help/help.inc index 383a4c62..1b8811ba 100644 --- a/lam/help/help.inc +++ b/lam/help/help.inc @@ -29,7 +29,7 @@ $helpArray = array ( // for testing purposes "0" => array ("ext" => "FALSE", "Headline" => _("Hilfetest 1"), "Text" => _("blablabla 1"), "SeeAlso" => "02"), "02" => array ("ext" => "FALSE", "Headline" => _("Hilfetest 2"), "Text" => _("blablabla 2"), "SeeAlso" => ""), - "03" => array ("ext" => "TRUE", "Link" => "help/extFileExample.php"), + "03" => array ("ext" => "TRUE", "Link" => "extFileExample.php"), // 200 - 299 // Roland Gruber // configuration wizard @@ -93,8 +93,8 @@ $helpArray = array ( /* This is a sample help entry. Just copy this line an modify the vakues between the [] brackets. Help text is located in the array: "[Helpnumber]" => array ("ext" => "FALSE", "Headline" => _("[Headline]"), "Text" => _("[Text]"), "SeeAlso" => "[SeeAlso link]"), - Help text is located in an extra file; path must be relative to lam_root; File should be stored in help directory - "[Helpnumber]" => array ("ext" => "TRUE", "Link" => "[help/pathToFile]), + Help text is located in an extra file; File must be stored in help directory; Link has to be the path to the file if it is stored in a subdirectory and the filename with a leading slash; + "[Helpnumber]" => array ("ext" => "TRUE", "Link" => "[path/FileName]), */ ); ?> diff --git a/lam/help/help_numbers.assign b/lam/help/help_numbers.assign index 52ee965a..54ce4d44 100644 --- a/lam/help/help_numbers.assign +++ b/lam/help/help_numbers.assign @@ -1,5 +1,5 @@ /* -This file contains a list of 100er blocks of help numbers. Each block can be unassigned or assigned to a developer. Each block description contains the name of the developer and the topic the help numbers a used for. +This file contains a list of 100er blocks of help numbers. Each block can be unassigned or assigned to a developer. Each block description contains the name of the developer and the topic the help numbers are used for. If you are a developer and need a block of help numbers please contact Michael Dürgner ICQ-UIN:176796482. @@ -9,4 +9,5 @@ Help numbers should only be used if they are assigned in this file to avoid doub 0 - 99: any developer: for testing purposes 100 - 199: unassigend 200 - 299: Roland Gruber: configuration wizard, configuration login +300 - 399: Roland Gruber: profil editor 300 -: unassigned diff --git a/lam/lib/status.inc b/lam/lib/status.inc index fd26ef10..c0ba2544 100644 --- a/lam/lib/status.inc +++ b/lam/lib/status.inc @@ -47,7 +47,7 @@ function StatusMessage($MessageTyp, $MessageHeadline, $MessageText) $class = "class=\"status_error\""; $MessageTyp = _("LAM Internal Error"); $MessageHeadline = _("Invalid/Missing Message Typ"); - $MessageText = _("Please report this error to the {link=mailto:lam-devel@sourceforge.net}LDAP Account Manager Development Team{endlink}. The error number is {bold}0001:Invalid/Missing Message Typ.{endbold} Thank you."); + $MessageText = _("Please report this error to the Bug-Tracker at {link=http://lam.sf.net}LDAP Account Manager Development Team{endlink}. The error number is {bold}0001:Invalid/Missing Message Typ.{endbold} Thank you."); } $MessageHeadline = parseMessageString($MessageHeadline); diff --git a/lam/templates/help.php b/lam/templates/help.php index 1f04c19f..b95cae4c 100644 --- a/lam/templates/help.php +++ b/lam/templates/help.php @@ -87,7 +87,7 @@ function displayHelp($helpNumber) elseif($helpArray[$helpNumber]["ext"] == "TRUE") { echoHTMLHead(); - include_once("../" . $helpArray[$helpNumber]["Link"]); + include_once("../help/" . $helpArray[$helpNumber]["Link"]); echoHTMLFoot(); } /* Print empty page in all other cases */