IDE: simplified URLs to the wiki

git-svn-id: trunk@17140 -
This commit is contained in:
vincents 2008-10-28 10:49:01 +00:00
parent 13e3cd5e97
commit daca979962
3 changed files with 4 additions and 4 deletions

View File

@ -189,7 +189,7 @@ begin
OfficialLabel.Caption := 'Official:';
OfficialURLLabel.Caption := 'http://lazarus.freepascal.org';
DocumentationLabel.Caption := 'Documentation:';
DocumentationURLLabel.Caption := 'http://wiki.lazarus.freepascal.org/index.php/Main_Page';
DocumentationURLLabel.Caption := 'http://wiki.lazarus.freepascal.org';
LoadContributors;
LoadAcknowledgements;
@ -329,7 +329,7 @@ begin
//skip empty lines
if Length(s) > 0 then
begin
//check for bold makeup token
//check for bold format token
if s[1] = '#' then
begin
s := copy(s, 2, Length(s) - 1);

View File

@ -43,7 +43,7 @@ uses
const
lihcFPCMessages = 'FreePascal Compiler messages';
lihFPCMessagesURL = 'http://wiki.lazarus.freepascal.org/index.php/';
lihFPCMessagesURL = 'http://wiki.lazarus.freepascal.org/';
type

View File

@ -470,7 +470,7 @@ begin
if HelpNode=nil then begin
Result:='';
end else begin
Result:='http://wiki.lazarus.freepascal.org/index.php/'+HelpNode.GetFullPath;
Result:='http://wiki.lazarus.freepascal.org/'+HelpNode.GetFullPath;
end;
end;