|
From: <var...@us...> - 2019-04-19 08:31:04
|
Revision: 10112
http://sourceforge.net/p/phpwiki/code/10112
Author: vargenau
Date: 2019-04-19 08:31:00 +0000 (Fri, 19 Apr 2019)
Log Message:
-----------
Fix http://phpwiki.demo.free.fr URLs: add index.php
Modified Paths:
--------------
trunk/config/config-default.ini
trunk/config/config-dist.ini
trunk/configurator.php
trunk/lib/IniConfig.php
trunk/lib/SemanticWeb.php
trunk/lib/interwiki.map
trunk/lib/plugin/LdapSearch.php
trunk/lib/plugin/ModeratedPage.php
trunk/lib/plugin/RecentChanges.php
trunk/locale/fr/pgsrc/Aide%2FGreffonRessourcesRss
trunk/locale/fr/pgsrc/ModifsR%C3%A9centesPhpWiki
trunk/pgsrc/Help%2FRssFeedPlugin
trunk/pgsrc/PhpWikiRecentChanges
trunk/themes/MonoBook/templates/browse-footer.tmpl
trunk/themes/blog/templates/sidebar.tmpl
trunk/themes/fusionforge/interwiki.map
trunk/themes/shamino_com/templates/browse-footer.tmpl
Modified: trunk/config/config-default.ini
===================================================================
--- trunk/config/config-default.ini 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/config/config-default.ini 2019-04-19 08:31:00 UTC (rev 10112)
@@ -142,7 +142,7 @@
; COPYRIGHTPAGE_TITLE = Creative Commons License 1.0
; COPYRIGHTPAGE_URL = http://creativecommons.org/licenses/by/1.0/
AUTHORPAGE_TITLE = "The PhpWiki Programming Team"
-AUTHORPAGE_URL = "http://phpwiki.demo.free.fr/The%20PhpWiki%20programming%20team"
+AUTHORPAGE_URL = "http://phpwiki.demo.free.fr/index.php/The%20PhpWiki%20programming%20team"
TOC_FULL_SYNTAX = true
ENABLE_MARKUP_COLOR = true
Modified: trunk/config/config-dist.ini
===================================================================
--- trunk/config/config-dist.ini 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/config/config-dist.ini 2019-04-19 08:31:00 UTC (rev 10112)
@@ -986,7 +986,7 @@
; COPYRIGHTPAGE_URL = "http://creativecommons.org/licenses/by/2.0/"
; see http://creativecommons.org/learn/licenses/ for variations
;AUTHORPAGE_TITLE = The PhpWiki Programming Team
-;AUTHORPAGE_URL = http://phpwiki.demo.free.fr/The%20PhpWiki%20programming%20team
+;AUTHORPAGE_URL = http://phpwiki.demo.free.fr/index.php/The%20PhpWiki%20programming%20team
; Allow full markup in headers to be parsed by the CreateToc plugin.
;
Modified: trunk/configurator.php
===================================================================
--- trunk/configurator.php 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/configurator.php 2019-04-19 08:31:00 UTC (rev 10112)
@@ -1385,7 +1385,7 @@
new _define_commented_optional('AUTHORPAGE_TITLE', "The PhpWiki Programming Team", "
Default Author Names");
$properties["AUTHORPAGE_URL"] =
- new _define_commented_optional('AUTHORPAGE_URL', "http://phpwiki.demo.free.fr/The%20PhpWiki%20programming%20team", "
+ new _define_commented_optional('AUTHORPAGE_URL', "http://phpwiki.demo.free.fr/index.php/The%20PhpWiki%20programming%20team", "
Default Author URL");
$properties["TOC_FULL_SYNTAX"] =
Modified: trunk/lib/IniConfig.php
===================================================================
--- trunk/lib/IniConfig.php 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/lib/IniConfig.php 2019-04-19 08:31:00 UTC (rev 10112)
@@ -742,7 +742,7 @@
// If user has not defined DATA_PATH, we want to use relative URLs.
if (!defined('DATA_PATH')) {
// fix similar to the one suggested by jkalmbach for
- // installations in the webrootdir, like "http://phpwiki.demo.free.fr/HomePage"
+ // installations in the webrootdir, like "http://phpwiki.demo.free.fr/index.php/HomePage"
if (!defined('SCRIPT_NAME'))
define('SCRIPT_NAME', deduce_script_name());
$temp = dirname(SCRIPT_NAME);
Modified: trunk/lib/SemanticWeb.php
===================================================================
--- trunk/lib/SemanticWeb.php 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/lib/SemanticWeb.php 2019-04-19 08:31:00 UTC (rev 10112)
@@ -95,7 +95,7 @@
... (facts and rules described in XML)
*
* Links:
- * http://phpwiki.demo.free.fr/Help/SemanticRelations,
+ * http://phpwiki.demo.free.fr/index.php/Help/SemanticRelations,
* http://en.wikipedia.org/wiki/Knowledge_representation
* http://www.ontoweb.org/
* http://www.semwebcentral.org/ (OWL on top of FusionForge)
Modified: trunk/lib/interwiki.map
===================================================================
--- trunk/lib/interwiki.map 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/lib/interwiki.map 2019-04-19 08:31:00 UTC (rev 10112)
@@ -88,7 +88,7 @@
PersonalTelco http://www.personaltelco.net/index.cgi/
php-function http://www.php.net/%s
php-lookup http://www.php.net/manual-lookup.php?pattern=
-PhpWiki http://phpwiki.demo.free.fr/
+PhpWiki http://phpwiki.demo.free.fr/index.php/
PhpWikiSvn https://sourceforge.net/p/phpwiki/code/HEAD/tree/trunk/
Pikie http://pikie.darktech.org/cgi/pikie?
PlWikiPedia http://pl.wikipedia.org/wiki/
Modified: trunk/lib/plugin/LdapSearch.php
===================================================================
--- trunk/lib/plugin/LdapSearch.php 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/lib/plugin/LdapSearch.php 2019-04-19 08:31:00 UTC (rev 10112)
@@ -27,7 +27,7 @@
* WikiPlugin which searches an LDAP directory.
*
* Uses the config.ini constants as defaults.
- * See http://phpwiki.demo.free.fr/Help/LdapSearchPlugin
+ * See http://phpwiki.demo.free.fr/index.php/Help/LdapSearchPlugin
* TODO: Return a pagelist on certain attributes
*
* Usage Samples:
Modified: trunk/lib/plugin/ModeratedPage.php
===================================================================
--- trunk/lib/plugin/ModeratedPage.php 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/lib/plugin/ModeratedPage.php 2019-04-19 08:31:00 UTC (rev 10112)
@@ -31,7 +31,7 @@
*
* Not yet ready! part 3/3 is missing: The moderator approve/reject methods.
*
- * See http://phpwiki.demo.free.fr/Help/ModeratedPagePlugin
+ * See http://phpwiki.demo.free.fr/index.php/Help/ModeratedPagePlugin
* Author: Reini Urban
*/
Modified: trunk/lib/plugin/RecentChanges.php
===================================================================
--- trunk/lib/plugin/RecentChanges.php 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/lib/plugin/RecentChanges.php 2019-04-19 08:31:00 UTC (rev 10112)
@@ -751,7 +751,7 @@
printf("<body class=\"sidebar\">\n");
$html->printXML();
- echo '<a href="http://www.feedvalidator.org/check.cgi?url=http://phpwiki.demo.free.fr/RecentChanges?format=rss"><img src="themes/default/buttons/valid-rss.png" alt="[Valid RSS]" title="Validate the RSS feed" width="44" height="15" /></a>';
+ echo '<a href="http://www.feedvalidator.org/check.cgi?url=http://phpwiki.demo.free.fr/index.php/RecentChanges?format=rss"><img src="themes/default/buttons/valid-rss.png" alt="[Valid RSS]" title="Validate the RSS feed" width="44" height="15" /></a>';
printf("\n</body>\n");
printf("</html>\n");
Modified: trunk/locale/fr/pgsrc/Aide%2FGreffonRessourcesRss
===================================================================
--- trunk/locale/fr/pgsrc/Aide%2FGreffonRessourcesRss 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/locale/fr/pgsrc/Aide%2FGreffonRessourcesRss 2019-04-19 08:31:00 UTC (rev 10112)
@@ -49,7 +49,7 @@
{{{
<<RssFeed feed=PhpWikiRss description="PhpWiki RecentChanges"
- url=http://phpwiki.demo.free.fr/RecentChanges?format=rss>>
+ url=http://phpwiki.demo.free.fr/index.php/RecentChanges?format=rss>>
}}}
<noinclude>
Modified: trunk/locale/fr/pgsrc/ModifsR%C3%A9centesPhpWiki
===================================================================
--- trunk/locale/fr/pgsrc/ModifsR%C3%A9centesPhpWiki 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/locale/fr/pgsrc/ModifsR%C3%A9centesPhpWiki 2019-04-19 08:31:00 UTC (rev 10112)
@@ -7,7 +7,7 @@
Content-Transfer-Encoding: binary
<<RssFeed feed=PhpWikiRecentChanges description="PhpWiki RecentChanges"
- url=http://phpwiki.demo.free.fr/RecentChanges?format=rss>>
+ url=http://phpwiki.demo.free.fr/index.php/RecentChanges?format=rss>>
----
[[DocumentationDePhpWiki]]
Modified: trunk/pgsrc/Help%2FRssFeedPlugin
===================================================================
--- trunk/pgsrc/Help%2FRssFeedPlugin 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/pgsrc/Help%2FRssFeedPlugin 2019-04-19 08:31:00 UTC (rev 10112)
@@ -49,7 +49,7 @@
{{{
<<RssFeed feed=PhpWikiRss description="PhpWiki RecentChanges"
- url=http://phpwiki.demo.free.fr/RecentChanges?format=rss>>
+ url=http://phpwiki.demo.free.fr/index.php/RecentChanges?format=rss>>
}}}
<noinclude>
Modified: trunk/pgsrc/PhpWikiRecentChanges
===================================================================
--- trunk/pgsrc/PhpWikiRecentChanges 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/pgsrc/PhpWikiRecentChanges 2019-04-19 08:31:00 UTC (rev 10112)
@@ -7,7 +7,7 @@
Content-Transfer-Encoding: binary
<<RssFeed feed=PhpWikiRecentChanges description="PhpWiki RecentChanges"
- url=http://phpwiki.demo.free.fr/RecentChanges?format=rss>>
+ url=http://phpwiki.demo.free.fr/index.php/RecentChanges?format=rss>>
----
[[PhpWikiDocumentation]]
Modified: trunk/themes/MonoBook/templates/browse-footer.tmpl
===================================================================
--- trunk/themes/MonoBook/templates/browse-footer.tmpl 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/themes/MonoBook/templates/browse-footer.tmpl 2019-04-19 08:31:00 UTC (rev 10112)
@@ -1,7 +1,7 @@
<footer role="contentinfo">
<?php // <hr class="printer" /> ?>
<div class="clear-floats"></div>
- <div id="f-poweredbyico"><a href="http://phpwiki.demo.free.fr/"><img src="<?php echo $WikiTheme->getImageURL("poweredby_phpwiki_51x31.png") ?>" alt="Powered by PhpWiki" /></a></div>
+ <div id="f-poweredbyico"><a href="http://phpwiki.demo.free.fr"><img src="<?php echo $WikiTheme->getImageURL("poweredby_phpwiki_51x31.png") ?>" alt="Powered by PhpWiki" /></a></div>
<ul id="f-list">
<li id="f-lastmod"> <?php echo $WikiTheme->getOwnerMessage($page) ?> <?php echo $WikiTheme->getLastModifiedMessage($revision) ?> <?php echo $WikiTheme->getAuthorMessage($revision) ?> </li>
<li id="f-copyright">All text is available under the terms of the <a class="internal" href="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License</a> (see <b>
@@ -8,19 +8,19 @@
<?php if ($request->_dbi->isWikiPage(_("Copyrights"))) { ?>
<?php echo WikiLink(_("Copyrights")) ?>
<?php } else { ?>
- <a class="internal" href="http://phpwiki.demo.free.fr/Copyrights">Copyrights</a>
+ <a class="internal" href="http://phpwiki.demo.free.fr/index.php/Copyrights">Copyrights</a>
<?php } ?>
</b> for details).<br /></li>
<?php if ($request->_dbi->isWikiPage(_("About".WIKI_NAME))) { ?>
<?php echo WikiLink(_("About".WIKI_NAME)) ?>
<?php } else { ?>
- <li id="f-about"><a href="http://phpwiki.demo.free.fr/Help/PhpWiki">About PhpWiki</a></li>
+ <li id="f-about"><a href="http://phpwiki.demo.free.fr/index.php/Help/PhpWiki">About PhpWiki</a></li>
<?php } ?>
<li id="f-disclaimer">
<?php if ($request->_dbi->isWikiPage(_("GeneralDisclaimer"))) { ?>
<?php echo WikiLink(_("GeneralDisclaimer")) ?>
<?php } else { ?>
- <a href="http://phpwiki.demo.free.fr/GeneralDisclaimer">Disclaimer</a>
+ <a href="http://phpwiki.demo.free.fr/index.php/GeneralDisclaimer">Disclaimer</a>
<?php } ?>
</li>
</ul>
Modified: trunk/themes/blog/templates/sidebar.tmpl
===================================================================
--- trunk/themes/blog/templates/sidebar.tmpl 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/themes/blog/templates/sidebar.tmpl 2019-04-19 08:31:00 UTC (rev 10112)
@@ -33,7 +33,7 @@
printXml($box->format());
/*
$box = new PluginSidebarBox("RssFeed",
- array('url' => 'http://phpwiki.demo.free.fr/RecentChanges?format=rss',
+ array('url' => 'http://phpwiki.demo.free.fr/index.php/RecentChanges?format=rss',
'title' => _("PhpWiki News")));
printXml($box->format());
*/
Modified: trunk/themes/fusionforge/interwiki.map
===================================================================
--- trunk/themes/fusionforge/interwiki.map 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/themes/fusionforge/interwiki.map 2019-04-19 08:31:00 UTC (rev 10112)
@@ -19,7 +19,7 @@
MoinMoin http://moinmoin.wikiwikiweb.de/
php-function http://www.php.net/%s
php-lookup http://www.php.net/manual-lookup.php?pattern=
-PhpWiki http://phpwiki.demo.free.fr/
+PhpWiki http://phpwiki.demo.free.fr/index.php/
PhpWikiSvn https://sourceforge.net/p/phpwiki/code/HEAD/tree/trunk/
SourceForge http://sourceforge.net/
TWiki http://twiki.org/cgi-bin/view/
Modified: trunk/themes/shamino_com/templates/browse-footer.tmpl
===================================================================
--- trunk/themes/shamino_com/templates/browse-footer.tmpl 2019-04-19 08:03:22 UTC (rev 10111)
+++ trunk/themes/shamino_com/templates/browse-footer.tmpl 2019-04-19 08:31:00 UTC (rev 10112)
@@ -5,5 +5,5 @@
<?php } ?>
<span class="editdate"><?php echo $WikiTheme->getOwnerMessage($page) ?> <?php echo $WikiTheme->getLastModifiedMessage($revision) ?> <?php echo $WikiTheme->getAuthorMessage($revision) ?></span>
<br />
-<a href="<?php echo PHPWIKI_BASE_URL ?>"><?php echo WIKI_NAME?></a> created with <a href="http://phpwiki.demo.free.fr/">PhpWiki</a> © 1998-2007 | <?php echo WikiLink(_("TermsOfUse")) ?>
+<a href="<?php echo PHPWIKI_BASE_URL ?>"><?php echo WIKI_NAME?></a> created with <a href="http://phpwiki.demo.free.fr">PhpWiki</a> © 1998-2007 | <?php echo WikiLink(_("TermsOfUse")) ?>
</div>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|