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
vBulletin-Glossary Details »»
vBulletin-Glossary
Version: 2.0.6, by Vossi Vossi is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Add-On Releases - Version: 4.1.4 Rating:
Released: 02-14-2011 Last Update: 06-16-2011 Installs: 127
DB Changes Uses Plugins Template Edits Auto-Templates
Additional Files Translations  
No support by the author.

What is vBulletin-Glossary:

A professional glossary with features like :
  • crosslinking
  • attachments in entries using vBullstin attachment system
  • searchable by using the vBulletin standard search
  • edit-history just like in wikipedia
  • synonyms to combine crosslinkings to other words
  • optional entryfields for more details of entry
  • vb-SEO compatible
  • etc.
Installation:

- Upload all files in 'upload' to your server

- set 777-permission for the following directories:
  • /vbglossar
  • /vbglossar/backup
  • /vbglossar/temp
- Import 'product-vbglossar.xml' in AdminCP as Add-On.

Right after the import of the productfile, go and set the usergroups. Afterwards edit the setting in AdminCP (Settings and Crosslinking). Now go to 'manage categories' and create the wanted cats.

Now the glossary should be configured and ready to use.

Updates from previous versions:

Follow the instruction of a new installation, also check the file permissions. After importing the product (overwrite: yes), check the grouprights and the settings of the glossary as there are some new features. In case the entries won't show up, please rebuild the datastore in the tools-section of the glossarin in admincp.

Template Modification:

Edit template 'search.css' and check for the following text
Quote:
/* as post */
Please include the following code above this:
Quote:
.threadinfo.glossaryentry a.threadstatus
{
background-image:url({vb:stylevar imgdir_searchresults}/search_results_glossaryentry.png);
background-position: 11px 6px;
}
General:

This addon has been developed by the follwing people (a-z): Andreas, Captainslater, G?rome, Surviver and me. We spent every free minute for this project (coding, translation, tests, etc). Also MrD and Ragtek have tested during the time when this addon got developed.

In directory '/tools' you might find a usefull Script by G?rome. User of vBCMS will find a module for their portal in directory 'vbcms' which shows a random entry of the glossary.

History:
  • 1.0.0 - First version
  • 1.0.0 PL 1 - Fixed Version by G?rome, users can't write unwnated entries anymore.
  • 1.0.1 - overwork of the code, now working with datastore and datamanager. Also we included some small new features into the addon (e. g. revert entries, inlinemod, etc).
  • 1.0.2 - overwork of the code, bugs removed, a lot of new features
  • 1.0.3 - fixed more small bugs and added new functions (create threads for discussions, more options for crosslinking, better options for mods/admins, etc).
  • 1.0.4 - bugfix-release.
  • 1.1.0 - added more main-features (synonyms can be used now, optional use of entryfields within categories, PDF-functions included, vB-SEO kompatible, TOC-list, etc)
  • 2.0.5 - Version for vBulletin 4.x with additional new features, bugs fixed.
  • 2.0.6 - Version for vBulletin 4.1.4 with small bug fixes.

Download Now

File Type: zip vbglossary205.zip (361.0 KB, 414 views)
File Type: zip vbglossary206.zip (486.7 KB, 829 views)

Screenshots

File Type: png 0-catview.png (28.7 KB, 0 views)
File Type: png 0-home.png (21.9 KB, 0 views)
File Type: jpg 1-entryview.jpg (112.7 KB, 0 views)
File Type: jpg 2-newentry.jpg (58.7 KB, 0 views)
File Type: png 3-threadpost.png (29.0 KB, 0 views)
File Type: png 4-admincp.png (4.8 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
6 благодарности(ей) от:
babyv0x, career, fxdigi-cash, RichieBoy67, Ricsca, Trangalleiro

Comments
  #202  
Old 11-08-2011, 11:24 AM
Webbstre Webbstre is offline
 
Join Date: Nov 2009
Posts: 175
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I would pay to see this modification turned into a bug-free fully fledged thing. :P I'm still running tests on my site for it.
Reply With Quote
  #203  
Old 11-08-2011, 11:46 AM
Seductor Seductor is offline
 
Join Date: May 2011
Posts: 128
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

@alaska_av8r:

This code from, overlib_vbglossary.js, generates my pop-up:

Code:
var txt = '<table width="'+o3_width+ '" border="1" cellpadding="'+o3_border+'" cellspacing="0" '+(o3_bgclass ? 'class="'+o3_bgclass+'"' : o3_bgcolor+' '+o3_height)+'><tr><td><table width="100%" border="1" '+((olNs4||!cpIsMultiple) ? 'cellpadding="'+o3_cellpad+'" ' : '')+'cellspacing="0" '+(o3_fgclass ? 'class="'+o3_fgclass+'"' : o3_fgcolor+' '+o3_fgbackground+' '+o3_height)+'><tr><td valign="TOP"'+(o3_textfontclass ? ' class="'+o3_textfontclass+'">' : ((!olNs4&&cpIsMultiple) ? ' style="'+setCellPadStr(o3_cellpad)+'">' : '>'))+(o3_textfontclass ? '' : wrapStr(0,o3_textsize,'text'))+text+(o3_textfontclass ? '' : wrapStr(1,o3_textsize))+'</td></tr></table></td></tr></table>';
For example, If you want to change the table width, you could replace the first '+o3_width+ ' with this:
Code:
800px
It works.


The box is larger. So, If you want to change the width, instead of replacing o3_width with a literal value, you should better modify the variable o3_width.

Notice that in my code, I have changed border="0" by border="1". It had not a variable, so I had to change it manually. This makes my box to have a border.
Reply With Quote
  #204  
Old 11-08-2011, 11:13 PM
alaska_av8r alaska_av8r is offline
 
Join Date: Dec 2009
Posts: 88
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Seductor thank you. I now have borders. I attempted to adjust padding etc but could not get it to work. The text within my popups is too close to the edges of the box (border) and the sentences are stacked too close to each other.

I don't know how to change that, but if I can figure it out then the popups will look much nicer. I have found out that in Firefox it looks very nice but in IE 9 it looks like crap.
Reply With Quote
  #205  
Old 11-08-2011, 11:17 PM
alaska_av8r alaska_av8r is offline
 
Join Date: Dec 2009
Posts: 88
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I also have a definition of COLREGS in my glossary, within that definition is the word demarcation line which is also a glossary entry. When I click demarcation line it takes me to that definition, so far so good.

Now in demarcation line is COLREGS, so I should be able to click on that to go back to the definition for COLREGS but all i get is a blank white page when i do.

you can see it here on http://www.boatinghowto.com/vbglossa...&catid=1&id=69
Reply With Quote
  #206  
Old 11-09-2011, 02:40 AM
Scalemotorcars's Avatar
Scalemotorcars Scalemotorcars is offline
 
Join Date: Mar 2006
Location: NC
Posts: 619
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by alaska_av8r View Post
I also have a definition of COLREGS in my glossary, within that definition is the word demarcation line which is also a glossary entry. When I click demarcation line it takes me to that definition, so far so good.

Now in demarcation line is COLREGS, so I should be able to click on that to go back to the definition for COLREGS but all i get is a blank white page when i do.

you can see it here on http://www.boatinghowto.com/vbglossa...&catid=1&id=69
As a guest theres no link. I see your text but its not linked to anything.

@Vossi Any ideal why Im having this issue. Thanks...
Reply With Quote
  #207  
Old 11-09-2011, 02:47 AM
alaska_av8r alaska_av8r is offline
 
Join Date: Dec 2009
Posts: 88
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks Scale I didn't realize that. I went to your site a while back to see how the glossary was working for you but I think you had it disabled. Did you get it worked out?

I love the basic idea of the mod, but wish it didn't have these issues.
Reply With Quote
  #208  
Old 11-10-2011, 12:32 AM
Scalemotorcars's Avatar
Scalemotorcars Scalemotorcars is offline
 
Join Date: Mar 2006
Location: NC
Posts: 619
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

A Alaska, I hope that helped a little. I know as an admin I sometimes forget I can see everything many members cant so I constantly have to remind myself to log out and check everything again.

This is the link for ours. http://www.scalemotorcars.com/forum/...el-dictionary/

Its core features are working fairly well. There's just a few minor bugs but I think most of those are related to my VBSEO. I think the rewrites need a little more work. Overall its a great mod and hey, you cant beat the price.
Reply With Quote
  #209  
Old 11-12-2011, 08:24 PM
blueperspective blueperspective is offline
 
Join Date: Sep 2011
Posts: 54
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Does this mod work with vBulletin 4.1.7 ?

Later edit:

Installed it using Seductor's modification.
So far so good.
Thanks to everyone who contributed to this mod.
Reply With Quote
  #210  
Old 12-02-2011, 02:54 PM
sigh sigh is offline
 
Join Date: Oct 2002
Posts: 38
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I had this working not too badly with vB 4.1.7, then realized it was blocking my Google / Doubleclick For Publishers ad scripts preventing the ads from displaying.

Disabled until this is fixed.
Reply With Quote
  #211  
Old 12-06-2011, 10:34 AM
Seductor Seductor is offline
 
Join Date: May 2011
Posts: 128
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sigh View Post
I had this working not too badly with vB 4.1.7, then realized it was blocking my Google / Doubleclick For Publishers ad scripts preventing the ads from displaying.

Disabled until this is fixed.
Are you sure about the glossary did that?
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 02:45 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.07238 seconds
  • Memory Usage 2,363KB
  • 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
  • (2)bbcode_code
  • (4)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
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (6)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
  • (8)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