User talk:Dantman
[edit] A pie for you!
| ...testing WikiLove + LQT. Dantman 22:28, 25 September 2011 (UTC) |
[edit] A barnstar for you!
| The Civility Barnstar | |
| test 晒太阳的冰 03:11, 14 November 2011 (UTC) |
Contents
| Thread title | Replies | Last modified |
|---|---|---|
| Skin-Synagonism | 1 | 16:45, 10 December 2011 |
| Url for special pages pointing to previous host | 0 | 10:33, 3 December 2011 |
| Post to social media feeds | 0 | 20:42, 29 November 2011 |
| RESOLVED:Extension:Theme Designer | 0 | 22:13, 26 September 2011 |
| A barnstar for you! | 0 | 22:27, 25 September 2011 |
| Realnames | 0 | 22:26, 25 September 2011 |
| Extension SidebarDonateBox (2) | 0 | 22:25, 25 September 2011 |
| WikiVid SQL | 0 | 22:23, 25 September 2011 |
| Extension SidebarDonateBox | 0 | 22:22, 25 September 2011 |
| Download-Link von Extension:WikiCategoryTagCloud | 1 | 22:21, 25 September 2011 |
| CreateRedirect | 0 | 22:18, 25 September 2011 |
Synagonism greatly improves page-READING by moving the table-of-contents on the left and showing the position the reader is reading! You can find it at SorceForge. It needs testing and commit. If you are interesting, do it!
I've been having one little problem with the Monaco skin (which I love) and left a question here about it:
Thread:Project:Support desk/Url for special pages pointing to previous host's path
and:
Thanks,
Left a message on talk page for /Post to social media feeds - great interested for a project - let me know if you want help/support. :)
I was wondering if you knew how to fix an error in SpecialThemeDesigner.php line #75 echo Html::closeElement('body'); ?
I can not read all the error message as it is displayed behind the skins dropdown. Here is the link to my wiki's Special pages [1]. Also the extension is not showing up on the version page here [2]. You can leave a reply (if you would) Here or my main account Here.
Thank you
Thanks for the feedback! I just released 0.1.1 of Extension:Realnames. It should address everything you mentioned (save 1.18 integration and possible slowdowns on RC and History -- waiting for feedback for those).
Hallo Dantman - super Extension! Dazu habe ich zwei Fragen:
- Wie kann ich den Donate Button OHNE Hauptmenupunkt direkt im Sidebar platzieren? (D.h.: Statt "Donate"->Donate Button nur "Donate Button" - also auf Stufe "Main page")
- Wie kann ich die Reihenfolge ändern? Ich möchte den Donate Button nämlich ganz oben anzeigen lassen...
Im SidebarDonateBox.php vermute ich, dass man $bar['Donate'] = $egSidebarDonateBoxContent; anpassen müsste, nur leider kenne ich mich mit PHP (noch) nicht so gut aus...
P.S.: Ich verwende MW 1.16 mit dem Vector Skin.
Viele Grüsse
Hallo Dantman. Ich habe bei mir das Extension SidebarDonateBox (siehe thrunk) installiert und ein bisschen aufgepeppt. Es unterstützt nun nach Wahl WikiText und holt die Einstellungen (z.B. Navigation nur für ein Wiki in einer Farm) aus Mediawiki:DonateBox (auch konfigurierbar).
<?php /** * SidebarDonateBox * @package SidebarDonateBox * @author Daniel Friesen (http://mediawiki.org/wiki/User:Dantman) <mediawiki@danielfriesen.name> * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ if ( !defined( 'MEDIAWIKI' ) ) die( "This is an extension to the MediaWiki package and cannot be run standalone." ); $wgExtensionCredits['parserhook'][] = array ( 'name' => 'SidebarDonateBox', 'url' => 'http://mediawiki.org/wiki/Extension:SidebarDonateBox', 'version' => '1.1a', 'author' => "[http://mediawiki.org/wiki/User:Dantman Daniel Friesen]", 'description' => "Adds a custom donate box to the sidebar" ); $wgHooks['SkinBuildSidebar'][] = 'efSidebarDonateBox'; ///! Edit Mediawiki:Sidebar to include. (e.g. * Navigation if $efSidebarDonateBoxTitle is 'Navigation') $efSidebarDonateBoxParse=true;//Whether to parse the page or not. $egSidebarDonateBoxTitle='Donate';//The Title of the Box like those "Search", "Toolbox", etc... $egSidebarDonateBoxPage='DonateBox'; //The page Mediawiki:___ contains the contents for the Box. function efSidebarDonateBox( $skin, &$bar ) { global $wgParser, $egSidebarDonateBoxPage, $egSidebarDonateBoxTitle, $efSidebarDonateBoxParse; if($efSidebarDonateBoxParse==true) { $title = Title::newFromText( $egSidebarDonateBoxPage, NS_MEDIAWIKI ); $article = new Article($title); $text = $article->getContent(); $options = new ParserOptions; $out=$wgParser->parse($text,$title,$options); $bar[$egSidebarDonateBoxTitle]=$out->mText; } else { $bar[$egSidebarDonateBoxTitle] = $egSidebarDonateBoxContent; } return true; }
Download-Link von Extension:WikiCategoryTagCloud
Hallo Daniel,
ich krieg den Link http://wiki-tools.com/wiki/Wiki_Category_Tag_Cloud nicht geöffnet.
Kannst Du mal nachschauen, was da krumm ist?