[Mediawiki-l] Pagename foo/etc/bar displaying as Bar in 1.11.0

John Moorhouse john.moorhouse at powys.gov.uk
Fri Oct 12 09:09:22 UTC 2007


I've been using the patch by Juliano F. Ravasi below for Article.php so 
that only the subpage name shows in the title bar, I'm testing 1.11 and 
the patch no longer seems to be working, and suggestions on why this 
would be, or ways forward.

Thanks

John


Index: Article.php
===================================================================
--- Article.php	(revision 145)
+++ Article.php	(revision 146)
@@ -607,6 +607,7 @@
 		global $wgUser, $wgOut, $wgRequest, $wgContLang;
 		global $wgEnableParserCache, $wgStylePath, $wgUseRCPatrol, $wgParser;
 		global $wgUseTrackbacks, $wgNamespaceRobotPolicies;
+		global $wgNamespacesWithSubpages, $wgNamespacesToOmitParents;
 		$sk = $wgUser->getSkin();
 
 		wfProfileIn( __METHOD__ );
@@ -813,7 +814,18 @@
 		/* title may have been set from the cache */
 		$t = $wgOut->getPageTitle();
 		if( empty( $t ) ) {
-			$wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
+			/*
+			* -- jr - Feb 22, 2006
+			* Allow short page titles.
+			*/
+			if ( !empty($wgNamespacesWithSubpages[$this->mTitle->getNamespace()]) &&
+				!empty($wgNamespacesToOmitParents[$this->mTitle->getNamespace()]) ) {
+				$titleText = $this->mTitle->getPrefixedText();
+				$exploded = explode( '/', $titleText );
+				$wgOut->setPageTitle( $exploded[ count($exploded)-1 ] );
+			} else {
+				$wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
+			}
 		}
 
 		# check if we're displaying a [[User talk:x.x.x.x]] anonymous talk page
Index: DefaultSettings-Jr.php
===================================================================
--- DefaultSettings-Jr.php	(revision 145)
+++ DefaultSettings-Jr.php	(revision 146)
@@ -12,4 +12,9 @@
  */
 $wgCategoryIndexColumns = 3;
 
+/**
+ * Namespaces whose article titles won't carry parent titles.
+ */
+$wgNamespacesToOmitParents = array();
+
 ?>


-----------------------------------------
Cyngor Sir Powys County Council
www.powys.gov.uk

Mae'r e bost hwn ac unrhyw atodiad iddo yn gyfrinachol ac fe'i
bwriedir ar gyfer y sawl a enwir arno yn unig. Gall gynnwys
gwybodaeth freintiedig. Os yw wedi eich cyrraedd trwy gamgymeriad
ni ellwch ei gopio, ei ddosbarthu na'i ddangos i unrhyw un arall a
dylech gysylltu gyda Cyngor Sir Powys ar unwaith.

Mae unrhyw gynnwys nad yw'n ymwneud gyda busnes swyddogol Cyngor
Sir Powys yn bersonol i'r awdur ac nid yw'n awdurdodedig gan y
Cyngor.

This e mail and any attachments are confidential and intended for
the named recipient only. The content may contain privileged
information. If it has reached you by mistake, you should not copy,
distribute or show the content to anyone but should contact Powys
County Council at once.

Any content that is not pertinent to Powys County Council business
is personal to the author, and is not necessarily the view of the
Council.



More information about the MediaWiki-l mailing list