- Timestamp:
- Jan 16, 2007, 11:23:05 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/include/functions.php
r1724 r1726 1911 1911 if ($count != 0) 1912 1912 { 1913 $pwg_links = pwg_URL(); 1914 $link_fmt = '<a href="%s" onclick="window.open(this.href, \'\'); return false;">%s</a>'; 1913 1915 $header_notes[] = 1914 1916 sprintf 1915 1917 ( 1916 1918 l10n('note_check_more_info'), 1917 sprintf( '<a href="http://forum.phpwebgallery.net/" target="_blank"> %s</a>', l10n('note_check_more_info_forum')),1918 sprintf( '<a href="http://phpwebgallery.net/doc/" target="_blank"> %s</a>', l10n('note_check_more_info_wiki'))1919 sprintf($link_fmt, $pwg_links['FORUM'], l10n('note_check_more_info_forum')), 1920 sprintf($link_fmt, $pwg_links['WIKI'], l10n('note_check_more_info_wiki')) 1919 1921 ); 1920 1922 } … … 1922 1924 1923 1925 /** 1924 * Refer main PhpWebGallery URLs (currently phpwebgallery.netdomain)1926 * Refer main PhpWebGallery URLs (currently PHPWG_DOMAIN domain) 1925 1927 * 1926 1928 * @param void … … 1931 1933 global $lang_info; 1932 1934 $urls = array( 1933 'WIKI' => 'http:// phpwebgallery.net/doc/',1934 'HOME' => 'http:// phpwebgallery.net/',1935 'DEMO' => 'http://demo. phpwebgallery.net/',1936 'FORUM' => 'http://forum. phpwebgallery.net/',1937 'BUGS' => 'http://bugs. phpwebgallery.net/',1938 'EXTENSIONS' => 'http:// phpwebgallery.net/ext',1935 'WIKI' => 'http://'.PHPWG_DOMAIN.'/doc/', 1936 'HOME' => 'http://'.PHPWG_DOMAIN.'/', 1937 'DEMO' => 'http://demo.'.PHPWG_DOMAIN.'/', 1938 'FORUM' => 'http://forum.'.PHPWG_DOMAIN.'/', 1939 'BUGS' => 'http://bugs.'.PHPWG_DOMAIN.'/', 1940 'EXTENSIONS' => 'http://'.PHPWG_DOMAIN.'/ext', 1939 1941 ); 1940 1942 if ( isset($lang_info['code']) and 1941 1943 in_array($lang_info['code'], array('fr','en')) ) 1942 1944 { /* current wiki languages are French or English */ 1943 $urls['WIKI'] = 1944 'http://phpwebgallery.net/doc/doku.php?id='.$lang_info['code'].':start'; 1945 $urls['HOME'] = 'http://phpwebgallery.net/?lang='.$lang_info['code']; 1945 $urls['WIKI'] .= 'doku.php?id='.$lang_info['code'].':start'; 1946 $urls['HOME'] .= '?lang='.$lang_info['code']; 1946 1947 } 1947 1948 return $urls; -
trunk/admin/intro.php
r1724 r1726 3 3 // | PhpWebGallery - a PHP based picture gallery | 4 4 // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | 5 // | Copyright (C) 2003-200 5PhpWebGallery Team - http://phpwebgallery.net |5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | branch : BSF (Best So Far) … … 55 55 { 56 56 $versions = array('current' => PHPWG_VERSION); 57 $lines = @file( 'http://www.phpwebgallery.net/latest_version');57 $lines = @file(PHPWG_URL.'/latest_version'); 58 58 59 59 // if the current version is a BSF (development branch) build, we check -
trunk/include/constants.php
r1664 r1726 3 3 // | PhpWebGallery - a PHP based picture gallery | 4 4 // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | 5 // | Copyright (C) 2003-200 6PhpWebGallery Team - http://phpwebgallery.net |5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | branch : BSF (Best So Far) … … 28 28 // Default settings 29 29 define('PHPWG_VERSION', 'Alligator'); 30 define('PHPWG_ URL', 'http://www.phpwebgallery.net');31 define('PHPWG_ FORUM_URL', 'http://forum.phpwebgallery.net');30 define('PHPWG_DOMAIN', 'phpwebgallery.net'); 31 define('PHPWG_URL', 'http://www.'.PHPWG_DOMAIN); 32 32 define('PHPWG_DEFAULT_LANGUAGE', 'en_UK.iso-8859-1'); 33 33 -
trunk/include/functions_mail.inc.php
r1676 r1726 3 3 // | PhpWebGallery - a PHP based picture gallery | 4 4 // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | 5 // | Copyright (C) 2003-200 6PhpWebGallery Team - http://phpwebgallery.net |5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | 6 6 // | Copyright (C) 2006 Ruben ARNAUD - team@phpwebgallery.net | 7 7 // +-----------------------------------------------------------------------+ … … 225 225 $page['gallery_title'] : $conf['gallery_title'], 226 226 'VERSION' => $conf['show_version'] ? PHPWG_VERSION : '', 227 'PHPWG_URL' => PHPWG_URL, 227 228 228 229 'TITLE_MAIL' => urlencode(l10n('title_send_mail')), -
trunk/include/page_tail.php
r1595 r1726 3 3 // | PhpWebGallery - a PHP based picture gallery | 4 4 // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | 5 // | Copyright (C) 2003-200 5PhpWebGallery Team - http://phpwebgallery.net |5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | branch : BSF (Best So Far) … … 32 32 array( 33 33 'VERSION' => $conf['show_version'] ? PHPWG_VERSION : '', 34 'PHPWG_URL' => PHPWG_URL, 34 35 35 36 'L_TITLE_MAIL' => urlencode($lang['title_send_mail']), -
trunk/install.php
r1679 r1726 3 3 // | PhpWebGallery - a PHP based picture gallery | 4 4 // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | 5 // | Copyright (C) 2003-200 6PhpWebGallery Team - http://phpwebgallery.net |5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | branch : BSF (Best So Far) … … 364 364 'L_ADMIN_EMAIL_INFO'=>$lang['conf_mail_webmaster_info'], 365 365 'L_SUBMIT'=>$lang['Start_Install'], 366 'L_ HELP'=>$lang['install_help'],366 'L_INSTALL_HELP'=>sprintf($lang['install_help'], 'http://forum.'.PHPWG_DOMAIN.'/'), 367 367 'L_ERR_COPY'=>$lang['step1_err_copy'], 368 368 'L_END_TITLE'=>$lang['install_end_title'], -
trunk/language/en_UK.iso-8859-1/admin.lang.php
r1725 r1726 3 3 // | PhpWebGallery - a PHP based picture gallery | 4 4 // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | 5 // | Copyright (C) 2003-200 6PhpWebGallery Team - http://phpwebgallery.net |5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | branch : BSF (Best So Far) … … 573 573 $lang['note_check_more_info_wiki'] = 'the wiki'; 574 574 $lang['Duplicates'] = 'Files with same name in more than one physical category'; 575 $lang['WIKI'] = 'WIKI / DOC';576 575 $lang['DEMO'] = 'DEMO'; 577 576 $lang['HOME'] = 'HOME'; … … 579 578 $lang['BUGS'] = 'BUGS'; 580 579 $lang['EXTENSIONS'] = 'EXTENSIONS'; 580 $lang['WIKI / DOC'] = 'WIKI / DOC'; 581 581 582 582 ?> -
trunk/language/en_UK.iso-8859-1/install.lang.php
r871 r1726 3 3 // | PhpWebGallery - a PHP based picture gallery | 4 4 // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | 5 // | Copyright (C) 2003-200 5PhpWebGallery Team - http://phpwebgallery.net |5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | branch : BSF (Best So Far) … … 65 65 $lang['step2_pwd_conf'] = 'Password [confirm]'; 66 66 $lang['step2_pwd_conf_info'] = 'verification'; 67 $lang['install_help'] = 'Need help ? Ask your question on <a href=" http://forum.phpwebgallery.net">PhpWebGallery message board</a>.';67 $lang['install_help'] = 'Need help ? Ask your question on <a href="%s">PhpWebGallery message board</a>.'; 68 68 $lang['install_end_message'] = 'The configuration of PhpWebGallery is finished, here is the next step<br /><br /> 69 69 For security reason, please delete file "install.php"<br /> -
trunk/language/fr_FR.iso-8859-1/admin.lang.php
r1725 r1726 3 3 // | PhpWebGallery - a PHP based picture gallery | 4 4 // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | 5 // | Copyright (C) 2003-200 6PhpWebGallery Team - http://phpwebgallery.net |5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | branch : BSF (Best So Far) … … 572 572 $lang['Duplicates'] = 'Fichiers portant le même nom dans plusieurs' . 573 573 ' catégories physiques'; 574 $lang['WIKI'] = 'WIKI / DOC';575 574 $lang['DEMO'] = 'DÉMO'; 576 575 $lang['HOME'] = 'ACCUEIL PWG'; 577 576 $lang['FORUM'] = 'FORUM'; 578 577 $lang['BUGS'] = 'BOGUES'; 579 $lang['EXTENSIONS'] = 'EXTENSIONS'; 578 $lang['EXTENSIONS'] = 'EXTENSIONS'; 579 $lang['WIKI / DOC'] = 'WIKI / DOC'; 580 580 581 581 ?> -
trunk/language/fr_FR.iso-8859-1/install.lang.php
r871 r1726 3 3 // | PhpWebGallery - a PHP based picture gallery | 4 4 // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | 5 // | Copyright (C) 2003-200 5PhpWebGallery Team - http://phpwebgallery.net |5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | branch : BSF (Best So Far) … … 60 60 $lang['step2_pwd_conf_info'] = 'Vérification'; 61 61 $lang['step1_err_copy'] = 'Copiez le texte en bleu entre les tirets et collez-le dans le fichier mysql.inc.php qui se trouve dans le répertoire "include" à la base de l\'endroit où vous avez installé PhpWebGallery (le fichier mysql.inc.php ne doit comporter QUE ce qui est en bleu entre les tirets, aucun retour à la ligne ou espace n\'est autorisé)'; 62 $lang['install_help'] = 'Besoin d\'aide ? Posez votre question sur le <a href=" http://forum.phpwebgallery.net">forum de PhpWebGallery</a>.';62 $lang['install_help'] = 'Besoin d\'aide ? Posez votre question sur le <a href="%s">forum de PhpWebGallery</a>.'; 63 63 $lang['install_end_message'] = 'La configuration de l\'application s\'est correctement déroulée, place à la prochaine étape<br /><br /> 64 64 Par mesure de sécurité, merci de supprimer le fichier "install.php"<br /> -
trunk/template/yoga/footer.tpl
r1708 r1726 6 6 7 7 <!-- Please, do not remove this copyright. If you really want to, 8 9 8 contact us on http://phpwebgallery.net to find a solution on how 9 to show the origin of the script...--> 10 10 11 <a href=" http://www.phpwebgallery.net" class="back" title="{lang:powered_by}">11 <a href="{PHPWG_URL}" class="back" title="{lang:powered_by}" onclick="window.open(this.href, ''); return false;"> 12 12 <img src="{pwg_root}{themeconf:icon_dir}/pwg_footer.png" alt="{lang:powered_by}"> 13 13 </a> -
trunk/template/yoga/mail/footer.tpl
r1676 r1726 2 2 3 3 <!-- Please, do not remove this copyright. If you really want to, 4 5 4 contact us on http://phpwebgallery.net to find a solution on how 5 to show the origin of the script...--> 6 6 7 7 <a href="{GALLERY_URL}" class="back">{GALLERY_TITLE}</a> - 8 <a href=" http://www.phpwebgallery.net" class="back" title="{lang:powered_by}">8 <a href="{PHPWG_URL}" class="back" title="{lang:powered_by}" onclick="window.open(this.href, ''); return false;"> 9 9 <img src="{pwg_root}{themeconf:icon_dir}/pwg_footer.png" alt="{lang:powered_by}"> 10 10 </a>
Note: See TracChangeset
for help on using the changeset viewer.