From: Carsten K. <car...@us...> - 2001-12-21 03:15:25
|
Update of /cvsroot/phpwiki/phpwiki In directory usw-pr-cvs1:/tmp/cvs-serv22330/phpwiki Modified Files: index.php Log Message: o The logo alt text now shows the Wiki's name and the localised name of the start page. o Removed the logo dimensions from the html code. Most browsers (probably all) do not wrap alt text inside image placeholders when images are turned off. o The page title now shows the Wiki's name, useful when making browser bookmarks of pages from multiple wikis. To accomodate this change and to encourage users to name their Wikis, the Wiki name is now enabled by default in index.php. o The link destination for the heading now points to the BackLinks for the page instead of just browsing to the page. This change maintains user-interface consistency, i.e. the title now always navigates to the BackLinks page (except for pages based on the message template). To refer to the original page during editing, click the back button in the browser or open a seperate window. o The page header now uses printf() to permit a correct language localization of the title. A hack was used in order to accomplish this, by replacing the BackLinks plugin line with a manually built url which links to the BackLinks for the current page. Index: index.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/index.php,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -r1.41 -r1.42 *** index.php 2001/12/21 00:56:56 1.41 --- index.php 2001/12/21 03:15:22 1.42 *************** *** 52,56 **** // This is used to generate a keywords meta tag in the HTML templates, // and during RSS generation for the <title> of the RSS channel. ! //define('WIKI_NAME', 'PhpWiki'); // If set, we will perform reverse dns lookups to try to convert the users --- 52,56 ---- // This is used to generate a keywords meta tag in the HTML templates, // and during RSS generation for the <title> of the RSS channel. ! define('WIKI_NAME', 'PhpWiki'); // If set, we will perform reverse dns lookups to try to convert the users |