User talk:Dantman

From MediaWiki.org
Jump to: navigation, search


[edit] A pie for you!

A very beautiful Nectarine Pie.jpg ...testing WikiLove + LQT. Dantman 22:28, 25 September 2011 (UTC)

[edit] A barnstar for you!

Civility Barnstar Hires.png The Civility Barnstar
test 晒太阳的冰 03:11, 14 November 2011 (UTC)
Start a new discussion

Contents

Thread titleRepliesLast modified
Skin-Synagonism116:45, 10 December 2011
Url for special pages pointing to previous host010:33, 3 December 2011
Post to social media feeds020:42, 29 November 2011
RESOLVED:Extension:Theme Designer022:13, 26 September 2011
A barnstar for you!022:27, 25 September 2011
Realnames022:26, 25 September 2011
Extension SidebarDonateBox (2)022:25, 25 September 2011
WikiVid SQL022:23, 25 September 2011
Extension SidebarDonateBox022:22, 25 September 2011
Download-Link von Extension:WikiCategoryTagCloud122:21, 25 September 2011
CreateRedirect022:18, 25 September 2011

Skin-Synagonism

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!

Synagonism07:31, 10 December 2011

I'm not really interested in skins that look as hacked together like that.

Daniel Friesen (Dantman)16:45, 10 December 2011
 

Url for special pages pointing to previous host

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:

http://monaco.wikkii.com/wiki/Talk:Monaco_port#Url_for_special_pages_pointing_to_previous_host.27s_path

Thanks,

Andrewrutherford10:33, 3 December 2011

Post to social media feeds

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.  :)

Varnent20:42, 29 November 2011

RESOLVED:Extension:Theme Designer

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

Mlpearc powwow 05:36, 30 May 2011 (UTC)22:24, 25 September 2011

A barnstar for you!

Vitruvian Barnstar Hires.png The Technical Barnstar
Self-gifting ;) Muahahaha... Dantman 11:27, 25 September 2011 (UTC)
Dantman 11:27, 25 September 2011 (UTC)22:27, 25 September 2011

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).

Quadir 22:29, 17 September 2011‎22:26, 25 September 2011

Extension SidebarDonateBox (2)

Hallo Dantman - super Extension! Dazu habe ich zwei Fragen:

  1. 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")
  2. 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

--Mrnett1974 08:22, 18 August 2011 (UTC)22:25, 25 September 2011

WikiVid SQL

Why is mine doing this?

192.197.54.28 18:57, 15 January 2010 (UTC)22:23, 25 September 2011

Extension SidebarDonateBox

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;
}
--Wersonst22:22, 25 September 2011

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?

--Martin 12:29, 1 July 2009 (UTC)22:21, 25 September 2011

Hallo Martin, sofern ich es richtig verstanden habe, ist das Wiki endgültig aufgegeben worden. Der aktuelle Code kann hier gefunden werden. Gruß

--Marbot 11:57, 5 July 2009 (UTC)22:21, 25 September 2011
 

CreateRedirect

Hi I saw you were possibly going to make a similar extension to CreateRedirect. Are you still planning on doing that? I have a few suggestions.

--Bluesoju 04:47, 28 June 2009 (UTC)22:18, 25 September 2011
Personal tools
Namespaces
Variants
Actions
Site
Support
Download
Development
Communication
Print/export
Toolbox