vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Integration with vBulletin - [obsolete!] vbMediaWiki 4.0.2 RC 3 (https://vborg.vbsupport.ru/showthread.php?t=235342)

BRotondi 03-04-2010 09:17 PM

Set Options correct?

karkey 03-05-2010 12:45 AM

1 Attachment(s)
seems like i have, see image

it located at http://www.jtf-2.com/wiki/ and my CMS is installed at http://www.jtf-2.com/

any more info will be appreciated

BRotondi 03-05-2010 05:25 AM

Created an account on your site but can't even find the links "My talk" etc. on jtf-2.com/wiki ... Perhaps you should go through your navbar template again... (btw: nice background image! :) )

BRotondi 03-05-2010 11:59 AM

1 Attachment(s)
For german users: Perhaps you preferr to remove 4x
Code:

  text-transform: lowercase;
in w\skins\vbmediawiki\main.css to capitalize the tabs and headers.

Example with some more modifications here.

BRotondi 03-06-2010 02:52 PM

Interesting News (from Mediawiki Edits in Postbit & Profile): In Template postbit_legacy (or postbit) search for
Code:

{vb:raw template_hook.postbit_userinfo_right_after_posts}
and add
Code:

<vb:if condition="$post['wikiedits'] > 0">
    <dt>Wiki Edits</dt> <dd><a title="Wiki Edits" href="/wiki/Special:Contributions/{vb:raw post.username}">{vb:raw post.wikiedits}</a></dd>
</vb:if>

below to see you wiki edits ({vb:raw post.wikiedits} is set by vbMediaWiki):
https://vborg.vbsupport.ru/attachmen...3&d=1264266631
(Can someane confirm this? Not sure if really correct, since I first installed and later uninstalled Mediawiki Edits in Postbit & Profile. Or does anyone know how to put this Templatemodification into a plugin instead? {vb:raw template_hook.postbit_userinfo_right_after_posts} seems to give us this possibility.)

ndahiya 03-06-2010 04:34 PM

hi bepe,

Regarding setting up a starting value for edits (for existing users):
Quote:

Originally Posted by bepe (Post 1994376)

hm... not that easy for me... might take some time

add the following to the install code section. this will create a column (and index) to get the initial values for wikiedits, and then drop that column. so you start with initial values, and your database looks as it does right now.

Code:

$vbulletin->db->query_write("ALTER TABLE mw_user ADD vbusername varchar(255) collate latin1_swedish_ci default NULL");
$vbulletin->db->query_write("ALTER TABLE mw_user ADD INDEX vbusername_idx (vbusername)");

$vbulletin->db->query_write("UPDATE mw_user SET vbusername = user_name WHERE vbusername is null");
$vbulletin->db->query_write("
        UPDATE " . TABLE_PREFIX . "user AS user
                SET user.wikiedits =
                        (  SELECT sum(user_editcount)
                        FROM mw_user
                        WHERE user.username = vbusername );
");
$vbulletin->db->query_write("ALTER TABLE mw_user DROP vbusername");

have to do a roundabout way to get a case insensitive username to compare to the vbulletin username, hence the latin1_swedish_ci for the column...

also, we need to change mw_user to wiki-database-name.mw_user (and mw_ to whatever prefix we are using), in case the wiki database is different. what this will still not populate is pages created (not sure if mediawiki can track that directly?)

a cleaner option might be to provide a link on the config page to update the data (after installing the app). that way no edits required to the xml file. but do not know how to set that up.


thanks.

ndahiya

ndahiya 03-06-2010 04:38 PM

Quote:

Originally Posted by BRotondi (Post 1998517)
Interesting News (from Mediawiki Edits in Postbit & Profile): In Template postbit_legacy (or postbit) search for
Code:

{vb:raw template_hook.postbit_userinfo_right_after_posts}
and add
Code:

<vb:if condition="$post['wikiedits'] > 0">
    <dt>Wiki Edits</dt> <dd><a title="Wiki Edits" href="/wiki/Special:Contributions/{vb:raw post.username}">{vb:raw post.wikiedits}</a></dd>
</vb:if>

below to see you wiki edits ({vb:raw post.wikiedits} is set by vbMediaWiki):
(Can someane confirm this? Not sure if really correct, since I first installed and later uninstalled Mediawiki Edits in Postbit & Profile. Or does anyone know how to put this Templatemodification into a plugin instead? {vb:raw template_hook.postbit_userinfo_right_after_posts} seems to give us this possibility.)

since the field name is the same (wikiedits), it will work. so bepe can just add this to the template mods, and this feature can be activated here too. the other mod is really redundant after bepe's awesome work!

karkey 03-06-2010 06:23 PM

Quote:

Originally Posted by BRotondi (Post 1997543)
Created an account on your site but can't even find the links "My talk" etc. on jtf-2.com/wiki ... Perhaps you should go through your navbar template again... (btw: nice background image! :) )

Hi probably not a template problem

As non of the wiki links go to the correct place
They all go to
http://www.jtf-2.com/wiki/index.php

BRotondi 03-07-2010 10:14 AM

Perhaps you don't want any media wiki discussions any more. One solution: Create a Subforum (e.g. "Wiki Articles") and link to this forum instead to the wiki discussion page:
in vbMediaWiki.php search for
Code:

                    echo'><a href="'.htmlspecialchars($tab['href']).'"';
and replace with
Code:

                    if ($key != "talk") {
                        echo'><a  href="'.htmlspecialchars($tab['href']).'"';
                    } else {
                        echo'><a  href="/forum/forums/69-Wiki-Artikel"';
                    }

replacing the bold part with the correct link for your forum.

The same way you can remove the user discussion: In vbMediaWiki.php search for
Code:

        foreach($this->data['personal_urls'] as $key => $item) { ?>
            <li><a href="<?php echo htmlspecialchars($item['href']) ?>"><?php echo htmlspecialchars($item['text']) ?></a></li><?php
        }

and replace with
Code:

        foreach($this->data['personal_urls'] as $key => $item) {
            if ($key != "anontalk" && $key != "mytalk") { ?>
                <li><a href="<?php echo htmlspecialchars($item['href']) ?>"><?php echo htmlspecialchars($item['text']) ?></a></li><?php
            }
        }

Example

Greetings, Bruno

benjaminlwells 03-07-2010 10:46 AM

I like that Bruno! I already have a sub-forum set up for wiki discussion, and it just never occurred to me to do that, I love the idea, will do it later.


All times are GMT. The time now is 07:38 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01737 seconds
  • Memory Usage 1,756KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (10)bbcode_code_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete