Extension talk:CategoryBreadcrumb

From mediawiki.org
Latest comment: 7 years ago by Samwilson in topic License ?

WARNING: This doesnt work on 1.10.1

It does work on 1.11 and all other version just dont forget to put $wgUseCategoryBrowser = true; in localsettings


Shows duplicate categories[edit]

I don't know why, but for some reason this script seems to show duplicate categories. For example, if I have a mediawiki entry tagged as category "person", the breadcrumb for person will show up 2 or 3 times when I use this extension. Any ideas why?

Dwharrington

I have also noticed this bug. I am hoping to try to debug this if no one else already has.

Version[edit]

Same here on Mediawiki 1.11. Breaks the whole point of using this extension. Very good idea otherwise. Tonticologo

Agree with point above. I see same problem (sometimes) with MW 1.13.2. Is anybody working to solve? --Robinson Weijman 15:47, 3 March 2010 (UTC)Reply

The sources do not match[edit]

the php program sources are different. The source on this site and the one on the download site (http://www.leerwiki.nl/How_to_create_breadcrumb_with_Mediawiki) are not the same. I'm not a php expert so I don't have much of an explanation; however, the one on the leerwiki site gave me an error while the one on this site works w/o any prob.

Problem in 1.15[edit]

I have installed this and the breadcrumb appears, however all the content of the page has been shifted into the "catlinks" div. Any ideas why this might have happened?

multiple breadcrumb trails[edit]

Hey, any way to get multiple trails to appear if a page is in two categories? ideally it should look like start -> major cat1 -> sub cat2 -> currentpage start -> major cat3 -> sub cat4 -> currentpage

--My edit does that, see my user page or the link below --Cm 11:43, 29 October 2009 (UTC)Reply

Left Pane Navigation moves to the bottom of the page[edit]

We attempted to implement this extension, but it pushed the main navigation menu on the left pane all the way to the bottom left of the page. Users do not see the menu anymore unless they scroll all the way to the bottom of the page.

I get the same thing[edit]

It seems to only happen to the main page. Navigating to other pages, places the sidebar in its normal position. Anybody have an idea on how to fix this?

Me too (MW 1.13.2) --Robinson Weijman 08:26, 4 March 2010 (UTC)Reply

Hi,

Is this problem resolved? Here I'm facing the same problem. Can anyone help?

Edits to include Start Link and support for Image pages[edit]

I put these minor changes to the source code here: User:Cm#Updates_to_CategoryBreadcrumb --Cm 11:43, 29 October 2009 (UTC)Reply

Left Pane Navigation moves to the bottom of the page[edit]

Same here[edit]

I so want this to work...


Skin.php[edit]

// <--  !!! $msg = wfMsgExt( 'pagecategories', array( 'parsemag', 'escapenoentities' ), count( $allCats['normal'] ) ); <br /> //$s .= '<div id="mw-normal-catlinks"> 1 ' . <br /> // $this->link( Title::newFromText( wfMsgForContent( 'pagecategorieslink' ) ), $msg ) <br /> // . $colon . $t . '</div>';

Demo: Буддизм


Hi,

What does it mean? Will it fix any of the above problems?

Other defect: text size increase[edit]

In addition to the #Shows duplicate categories and #Left Pane Navigation moves to the bottom of the page I saw above:

  • When viewing pages, The text in the my talk / my preferences bar gets bigger. This does not occur when viewing categories.

--Robinson Weijman 15:53, 3 March 2010 (UTC)Reply

I kind of have the same problem, but mine get smaller, did anyone figured out what tags it is messing with and how to prevent it?
It's a bodge, I know, but this works for me. I just changed the combine line by adding in some css styling on the links and then putting in a font-size for the following text (you'll have to remove the space between the < and the DIVs in the final line below to get it to work):
// set tree on top of text and register into $tpl
// $combine = $tree[1].$wgOut->mBodytext;
$combine="< div style='font-size:11px;margin:10px;'>".$tree[1]."</div>"."< div style='font-size:14px;'>".$wgOut->mBodytext;

MW 1.16.0 bug[edit]

Using with subj version results in exception when open category or special pages, though leaf pages are displayed properly.
Fix:

  • Use code from wiki page, not from 'download' URL.
  • Another way - comment string "if ($wgArticle->getTitle()->mNamespace != 0) return $out;" (not sure if it's secure)

Kills categories on the bottom[edit]

I don't know PHP so I need help from someone. This extensions adds bread crumb on the top and kills the categories on the bottom of the page. What do I need to remove or add to the PHP code so that it doesn't remove categories on the bottom? I tried to comment out this line $p->set( 'catlinks', ''); What it did is that it kept the categories but it also added another bread crumb trail to the bottom, any ideas how i can remove that bread crumb trail?

Several bug-fixes[edit]

The following code-changes will fix the #Other defect: text size increase and #Kills categories on the bottom bug and avoid an error, if an article is not categorized (e.g. the Mainpage).

  • comment $p->set( 'catlinks', ''); (line 35)
  • add the following lines after the commented line 35:
$simplecatlist = explode('<br />', $q->getCategories());
$p->set( 'catlinks', $simplecatlist[0].'</div>');
  • change $combine = $tree[1].$wgOut->mBodytext; (line 38) to $combine = '<div>'.$tree[1].$wgOut->mBodytext;
  • add if ($q->getcategorylinks() == null) return true; after if ($wgArticle->getTitle()->mNamespace != 0) return true; (line 29).

--79.235.66.184 00:29, 5 July 2011 (UTC)Reply

In category pages, the breadcrumb trail ends in the bottom[edit]

Mediawiki 1.16.5, installed the patched version according to this talk; it happens that in the category: pages the breadcrumb trail ends in the bottom div with id='catlinks'; is there a workaround for that, or how can i build one, given that i have little knowledge of the mediawiki API?

Does it work with MediaWiki 1.17.0?

i dont use mw 1.17, too much customisations i made, is important for me to make it work on 1.16.5

[still the original poster] Any body can give me a hint on how to fix the code so that the breadcrumbs will appear only on the top?

Undefined variable: final_last_parent in /xxx/extensions/CategoryBreadCrumbs/CategoryBreadCrumbs.php on line 95[edit]

I get the error: Notice: Undefined variable: final_last_parent in /xxx/extensions/CategoryBreadCrumbs/CategoryBreadCrumbs.php on line 95 on the top of my page http://xxx/Alerts --User:LTech 9 April 2013 (UTC)

To remove the error I added on line 74
                                    $last_parent = '';	$final_last_parent = ''; //added to remove error on alert page  		$last_text_modified = strtolower(str_replace(" ","-",$last_text)); 

--User:LTech 9 April 2013 (UTC)

Links to authors page are not working for me, are they dead?[edit]

Kmacdowe (talk) 01:47, 16 May 2014 (UTC)Reply

License ?[edit]

Hello,

What is the license of this extension? We would like to fork it but it needs to be FOSS...

--2A01:E35:8A04:870:F823:AD74:88C8:7FA0 20:35, 7 April 2016 (UTC)Reply

I guess, as it's code is included within this wiki, you could assume it's licensed the same as all content here (i.e. CC BY-SA 3.0). I'm no lawyer though! :-) Sam Wilson 12:13, 3 August 2016 (UTC)Reply

It is working on MW 1.27?[edit]

Hello, when I try to use the extension on MW 1.27.1 the wiki does show the breadcrumb. Does anybody know something about that?

Thanks!