Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Mindestic GlosPro 1.2.2 Details »»
Mindestic GlosPro 1.2.2
Version: 1.2.1, by SS9267547 SS9267547 is offline
Developer Last Online: Jun 2009 Show Printable Version Email this Page

Category: Major Additions - Version: 3.6.4 Rating:
Released: 11-26-2006 Last Update: 01-14-2007 Installs: 130
DB Changes Uses Plugins Template Edits
Additional Files  
No support by the author.

Development of this mod is on hold due to lack of time and development of Mindestic Gaming CMS Lite. No support will be given at this time.

Mindestic GlosPro Description
Mindestic GlosPro is an advanced yet simple to use system to create a glossary of terms for your website along side with vBulletin 3.6.X series. Loaded with features, Mindestic GlosPro is a great tool for any sized website!

Mindestic GlosPro Information
Current Version Number: 1.2.2
vBulletin Test Version(s): 3.6.4
Queries to run: 5
File Edits: 0
New Files: 12
New Phrases: 225
New Templates: 21
New Plugins: 10
Template Edits: 4
Last Edited: January 14, 2007
Edited By: Lucas Pawelczyk
Install Time: 2 minutes
Difficulty: Easy

Current Planned Features For Version 1.2.3
  1. Add import/export system. (50% Complete)
  2. Fix additional problems with crosslinking feature. (0% Complete)
  3. Add custom administrator permissions. (0% Complete)
  4. Fix and add missing codes. (40% Complete)
Screenshots And Change Log
  1. Screenshot For Version 1.2.0
  2. Screenshot For Version 1.2.1
  3. Screenshot For Version 1.2.2
  4. Change Log
Known Bugs For Version 1.2.2:
  • PM messages will not send if pm quota for any admins is full and/or their PM system is off.
  • Line breaks go missing with the Basic Editor(?).
  • Crosslinking feature issues.
  • Crosslink popup goes outside of visible area.
  • Field required option for custom fields not yet intergated.
Previous Versions:
For those wanting the hack for the 3.5.X series please click visit:
https://vborg.vbsupport.ru/showthread.php?p=938884
For those wanting the hack for the 3.0.X series please click visit:
https://vborg.vbsupport.ru/showthread.php?t=111622

Additional Credits:
  • Orginal Navbar Plugin by Billspaintball. Thanks for the idea!
Remember if you use and like this hack make sure to click 'Install'. Thanks!

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #92  
Old 12-06-2006, 06:04 PM
bada_bing's Avatar
bada_bing bada_bing is offline
 
Join Date: Feb 2004
Location: Michigan
Posts: 1,698
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can some tell me how I can only allow certain groups to turn on/off the glassary from the usercp? Currently all usergroups have this option, I want to only allow certain groups to have this option in usercp, any help with this please?
Reply With Quote
  #93  
Old 12-06-2006, 10:23 PM
SS9267547's Avatar
SS9267547 SS9267547 is offline
 
Join Date: Nov 2001
Location: Canada
Posts: 390
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

To allow certain groups to be able to view this find the following code in the 'modifyoptions' template:

PHP Code:
<!-- Start Glossary User Options -->
<if 
condition="$vboptions['vbglossaryactive']"
Replace it with:
PHP Code:
<!-- Start Glossary User Options -->
<if 
condition="$vbulletin->userinfo['usergroupid'] == '2'">
<if 
condition="$vboptions['vbglossaryactive']"
The find the following:
PHP Code:
</if>
<!-- 
End Glossary User Options -->
<
br /> 
Replace it with:
PHP Code:
</if>
<!-- 
End Glossary User Options -->
<
br />
</if> 
Now replace '2' with whatever usergroup number you want to be able to view it.
Reply With Quote
  #94  
Old 12-07-2006, 03:35 AM
Amenadiel's Avatar
Amenadiel Amenadiel is offline
 
Join Date: Sep 2006
Posts: 171
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there a way to turn letterbit on for every page of the glossary?

I mean, when I'm looking at a certain definition I'd really like to have the letterbit above it.
Reply With Quote
  #95  
Old 12-07-2006, 04:33 AM
SS9267547's Avatar
SS9267547 SS9267547 is offline
 
Join Date: Nov 2001
Location: Canada
Posts: 390
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There is no settings for that but it can be done by editing the templates as well the main glossary.php file, so it depends on howw badly you want it lol.
Reply With Quote
  #96  
Old 12-07-2006, 10:08 AM
Amenadiel's Avatar
Amenadiel Amenadiel is offline
 
Join Date: Sep 2006
Posts: 171
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well I'm getting to know the code, I've already modified the code to make glossary.php without args to act as if it had received a do=listglossary&c=1 by editing the "default action":

if (empty($_REQUEST['do']))
{
$_REQUEST['do'] = 'listglossary';
$_REQUEST['c'] = '1';
}

Then I also inserted a "show all" link at the beggining of the letterbit, but it was a minor edit, I just added:

eval('$letterbits = "<td><a href=glossary.php>Show all</a></td>";');

before the other evals.

But this one I cannot accomplish. I edited the main Glossary template and in the section where the letterbit table is displayed I removed the "if" so it should display letterbit no matter what, and yet it doesn't happen.

I hope you don't mind I'm performing this little customization, I believe it's impossible to make a product to suit each and every webmaster out there LMAO.

EDIT: I did it! I hadn't noticed that in glossary.php the letterbit eval part is inside an if statement restricting it to show only if do = listglossary, so I took that whole part outside the 'if'. I had to set c = 1 because it is initially = 0 and takes me to a blank page.
Reply With Quote
  #97  
Old 12-07-2006, 11:34 AM
SS9267547's Avatar
SS9267547 SS9267547 is offline
 
Join Date: Nov 2001
Location: Canada
Posts: 390
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No thats fine Amenadiel. I'm more then happy to see customization and happy to see people share what they did in the thread, who knows might add additional options for whatever has been added.
Reply With Quote
  #98  
Old 12-07-2006, 03:00 PM
dilbert dilbert is offline
 
Join Date: Nov 2004
Location: Boston
Posts: 251
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here's an interesting item I just noticed with cross linking.
If I have the word Telephone in the glossary, and a user places the work telephone in a post, the post becomes capitalized.

Is there a way to allow the post to remain as is?
Reply With Quote
  #99  
Old 12-07-2006, 05:08 PM
bada_bing's Avatar
bada_bing bada_bing is offline
 
Join Date: Feb 2004
Location: Michigan
Posts: 1,698
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by SS9267547 View Post
To allow certain groups to be able to view this find the following code in the 'modifyoptions' template:

PHP Code:
<!-- Start Glossary User Options -->
<if 
condition="$vboptions['vbglossaryactive']"
Replace it with:
PHP Code:
<!-- Start Glossary User Options -->
<if 
condition="$vbulletin->userinfo['usergroupid'] == '2'">
<if 
condition="$vboptions['vbglossaryactive']"
The find the following:
PHP Code:
</if>
<!-- 
End Glossary User Options -->
<
br /> 
Replace it with:
PHP Code:
</if>
<!-- 
End Glossary User Options -->
<
br />
</if> 
Now replace '2' with whatever usergroup number you want to be able to view it.
Thanks for the code... I want to be able to allow more then one usergroup to view this though and when I do this it doesnt show up for any usergroup

HTML Code:
<!-- Start Glossary User Options -->
<if condition="$vbulletin->userinfo['usergroupid'] == '5,6,7,11,12,16'">
<if condition="$vboptions['vbglossaryactive']">


An I doing something wrong?
Reply With Quote
  #100  
Old 12-07-2006, 11:08 PM
SS9267547's Avatar
SS9267547 SS9267547 is offline
 
Join Date: Nov 2001
Location: Canada
Posts: 390
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

dilbert: No I havn't figured a way with that. If someone does they can let me know lol.

bada_bing: Instead of this:
PHP Code:
<if condition="$vbulletin->userinfo['usergroupid'] == '5,6,7,11,12,16'"
Use this option, think it works lol:
PHP Code:
<if condition="$vbulletin->userinfo['usergroupid'] == '5' OR $vbulletin->userinfo['usergroupid'] == '6' OR $vbulletin->userinfo['usergroupid'] == '7'"
Reply With Quote
  #101  
Old 12-08-2006, 12:38 AM
bada_bing's Avatar
bada_bing bada_bing is offline
 
Join Date: Feb 2004
Location: Michigan
Posts: 1,698
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by SS9267547 View Post
dilbert: No I havn't figured a way with that. If someone does they can let me know lol.

bada_bing: Instead of this:
PHP Code:
<if condition="$vbulletin->userinfo['usergroupid'] == '5,6,7,11,12,16'"
Use this option, think it works lol:
PHP Code:
<if condition="$vbulletin->userinfo['usergroupid'] == '5' OR $vbulletin->userinfo['usergroupid'] == '6' OR $vbulletin->userinfo['usergroupid'] == '7'"
Awe this worked thank you... Now one more question.. What happens if in the past few days that the option was showing up in the usercp a member disabled the crosslinking and now I have removed that usergroup from seeing the crosslinking option in the usercp what would happen? Does the feature remain on or off?
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 03:34 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.05375 seconds
  • Memory Usage 2,360KB
  • Queries Executed 27 (?)
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
  • (1)bbcode_html
  • (12)bbcode_php
  • (2)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
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete