Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vbMediaWiki Vector Details »»
vbMediaWiki Vector
Version: 1.06 RC, by bepe bepe is offline
Developer Last Online: Jun 2013 Show Printable Version Email this Page

Category: Integration with vBulletin - Version: 4.0.x Rating:
Released: 07-24-2010 Last Update: 08-18-2010 Installs: 169
DB Changes Uses Plugins Template Edits Auto-Templates
Additional Files Is in Beta Stage  
No support by the author.

vbMediaWiki Vector

Manual (don't forget to RTFM!)

Interested in doing a translation? PM me

Screenshot Look here!

Changelog Online Version, click here!

vbMediaWiki IRC Channel
I might be online... just try or use the forum
irc://irc.freenode.net/vbmediawiki
http://webchat.freenode.net?channels=vbmediawiki
Donations
Every donation is welcome and appreciated. This product is for free and it will stay free despite the fact‎ that commercial products with much less capabilities cost a lot of money. So before you spend that money on other products, try this one and feel free to send that money to me
http://www.duplexgaragen24.de

Download Now

File Type: zip vbMediaWiki_Vector_1.06_RC_(fixed).zip (805.7 KB, 1242 views)
File Type: zip vbMediaWiki_Vector_1.06_RC_fix_only.zip (11.7 KB, 143 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
daviet

Comments
  #252  
Old 10-22-2010, 12:39 PM
Lord Doys Lord Doys is offline
 
Join Date: May 2003
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

also if your collapsed tab disappears

remove from the MEDIAWIKIFORUM template

<script type="text/javascript">
<!--
var IMGDIR_MISC = BBURL + "/" + IMGDIR_MISC;
var IMGDIR_BUTTON = BBURL + "/" + IMGDIR_BUTTON;
// -->
</script>

there is no need for the BBURL any more, so defining IMGDIR_MISC = IMGDIR_MISC is just not needed and therefore can be removed
Reply With Quote
  #253  
Old 10-22-2010, 01:45 PM
crazyace crazyace is offline
 
Join Date: Oct 2009
Location: Nashville TN
Posts: 201
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lord Doys View Post
its quite easy to fix.
It seems that the sidebar.css is not loaded in the MEDIAWIKIFORUM template.

replace the line below
{wiki:raw headinclude}

with
{vb:cssfile forumbits.css,forumhome.css,widgets.css,sidebar.cs s,options.css,tagcloud.css}
Thanks that fixed the side bar. Now for the bar across the top. That's broken also.
Reply With Quote
  #254  
Old 10-25-2010, 08:03 AM
Lord Doys Lord Doys is offline
 
Join Date: May 2003
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have also written (actually isolated from vbwikipro) an addon to link duscussion tabs to the forums (creating new thread if no discussion exists etc)
If there are more people wanting this feature let me know and i will try to see if i can put it up somewhere

for a working example see my signature
Reply With Quote
  #255  
Old 10-25-2010, 07:41 PM
IRJustman IRJustman is offline
 
Join Date: Oct 2010
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Has anyone used Liquid Threads with this addon? I'll be honest and say that I have not tried this extension in a "neat" environment yet (MediaWiki in its own environment, no integration).

What happens is that when I'm not logged in, I can expand threads as normal. However, once I'm logged in, I cannot expand threads. I can still view them via the "history" link, but I cannot view them in a "normal" mode.

If you need details, request a PM and I'll send all the particulars there.

The URL for LiquidThreads is http://www.mediawiki.org/wiki/Extension:LiquidThreads

Thanks.

--Ian.

UPDATE: The extension does work in "neat" 1.16.0 MediaWiki. Any ideas?

UPDATE 2: If you clear your preferences and set them afresh, you're good to go.

NB: I'm using an existing wiki that has been in operation for about three years which might be part of that problem.
Reply With Quote
  #256  
Old 10-26-2010, 11:40 AM
Igel1 Igel1 is offline
 
Join Date: May 2010
Posts: 78
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

@Lord Doys
How do you fix the bar across the top (abovebits in Mediawiki Template)
Reply With Quote
  #257  
Old 10-26-2010, 02:52 PM
Lord Doys Lord Doys is offline
 
Join Date: May 2003
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Igel1 View Post
@Lord Doys
How do you fix the bar across the top (abovebits in Mediawiki Template)
to make it float right again:

find in vbmediawikiforum.php (~line 955):
<ul class=\"popupgroup forumdisplaypopups\">" . $html . "

replace with
<ul class=\"popupgroup forumdisplaypopups\"style='float:right;'>" . $html . "

but to fix it to make them line up again...

the problem lies in the watch.icon css.. i dont have the time at the moment to figure out (didnt upgrade my live forums yet either)

play with these settings
/* Watch/Unwatch Icon Styling */
#ca-unwatch.icon a,
#ca-watch.icon a {
margin: 0;
padding: 0;
outline: none;
display: block;
width: 26px;
height: 14px;
}
#ca-unwatch.icon a {
background-image: url(images/watch-icons.png);
background-position: -43px 60%;
}
#ca-watch.icon a {
background-image: url(images/watch-icons.png);
background-position: 5px 60%;
}
#ca-unwatch.icon a:hover {
background-image: url(images/watch-icons.png);
background-position: -67px 60%;
}
#ca-watch.icon a:hover {
background-image: url(images/watch-icons.png);
background-position: -19px 60%;
}
#ca-unwatch.icon a.loading,
#ca-watch.icon a.loading {
background-image: url(images/watch-icon-loading.gif);
background-position: center 60%;
}
#ca-unwatch.icon a span,
#ca-watch.icon a span {
display: none;
}
Reply With Quote
  #258  
Old 10-26-2010, 06:55 PM
Igel1 Igel1 is offline
 
Join Date: May 2010
Posts: 78
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for the Hint.
Reply With Quote
  #259  
Old 10-27-2010, 11:27 PM
murekhalir murekhalir is offline
 
Join Date: Oct 2006
Posts: 254
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Wow. Wow Wow.
Reply With Quote
  #260  
Old 10-28-2010, 07:02 AM
RichieBoy67's Avatar
RichieBoy67 RichieBoy67 is offline
 
Join Date: Apr 2004
Location: CT - Down in a hole..
Posts: 3,057
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello,

I was wondering if anyone has a working version I can check out before installing for a client.

Thanks,

Rich
Reply With Quote
  #261  
Old 10-28-2010, 09:23 AM
der_darkon der_darkon is offline
 
Join Date: Feb 2009
Posts: 34
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lord Doys View Post
I have also written (actually isolated from vbwikipro) an addon to link duscussion tabs to the forums (creating new thread if no discussion exists etc)
If there are more people wanting this feature let me know and i will try to see if i can put it up somewhere
Wow!
I?m very interested in this.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 10:26 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05439 seconds
  • Memory Usage 2,353KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (1)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (2)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete