vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Add-On Releases - vBulletin-Glossary (https://vborg.vbsupport.ru/showthread.php?t=188189)

kud0gfx 12-11-2008 01:33 AM

In the vBulletin Language system

a squared 12-11-2008 01:40 AM

Languages & Phrases>>>Import Language XML File???

Create New Language I suppose? And name it what?

Vossi 12-11-2008 05:09 AM

Quote:

Originally Posted by a squared (Post 1682842)
Languages & Phrases>>>Import Language XML File???


Create New Language I suppose? And name it what?

Don't create a new language but choose the language you want to import (eg. german).

kud0gfx 12-11-2008 12:17 PM

Hi vossi, is there anyway to make an option when the edits of the entrys will be moderated as the new entries by usergroups? because there are some fools that dont have nothing better to do, that delete all the entrys, and yes, i know i can get it back, but if they know it has to be aproved first, wont do it...

is that possible? or i cant just see the option

i'm actually thinking also miss an option to make the reports go to a subforum, not pm...

and also wondering how much will cost the branding free

Vossi, can you contact me by mp please?

Vossi 12-11-2008 12:33 PM

Quote:

Originally Posted by kud0gfx (Post 1683080)
Hi vossi, is there anyway to make an option when the edits of the entrys will be moderated as the new entries by usergroups? because there are some fools that dont have nothing better to do, that delete all the entrys, and yes, i know i can get it back, but if they know it has to be aproved first, wont do it...

is that possible? or i cant just see the option

Hm, I dont know exactly what you mean. You can moderate new entries, no doubt about that. But that has nothing to do with users deleting entries. You can simply turn that off within the grouprights.

Is that what you meant?
Quote:

Originally Posted by kud0gfx (Post 1683080)
i'm actually thinking also miss an option to make the reports go to a subforum, not pm...

That option is not available yet, but we might incloude it for the next release.
Quote:

Originally Posted by kud0gfx (Post 1683080)
and also wondering how much will cost the branding free

Vossi, can you contact me by mp please?

You got a PM about that.

kud0gfx 12-12-2008 06:05 AM

i mean when an user edit some existent entry, before his edit will be visible to public, it should be aproved by some mod, with that option, no one will try to ++++ it up...

physiart 12-12-2008 07:00 PM

Hi there Vossi and the rest of the team, excellent add-on!

I have a situation. I needed the glossary to work in Greek, so I hacked vbglossar.php to generate the Greek Alphabet:

I found
Code:

        // now do alpha-characters
        for ($i = 65; $i < 91; $i++)
        {
                $currentletter = chr($i);
                $linkletter =& $currentletter;
                $show['selectedletter'] = $ltr == $currentletter ? true : false;

                eval('$glossarletterbits .= "' . fetch_template('vbglossar_letterbits') . '";');
        }

and changed it to call the Greek characters. The problem here is that char 210 is not a valid Greek letter so I had to add some more code:
Code:

        // now do alpha-characters
        for ($i = 193; $i < 210; $i++)
        {
                $currentletter = chr($i);
                $linkletter =& $currentletter;
                $show['selectedletter'] = $ltr == $currentletter ? true : false;

                eval('$glossarletterbits .= "' . fetch_template('vbglossar_letterbits') . '";');
        }
                for ($i2 = 211; $i2 < 218; $i2++)
        {
                $currentletter = chr($i2);
                $linkletter =& $currentletter;
                $show['selectedletter'] = $ltr == $currentletter ? true : false;

                eval('$glossarletterbits .= "' . fetch_template('vbglossar_letterbits') . '";');
        }

I've located the string $i in the script and I've duplicated it using $i2 wherever it appears. For example after the code:
Code:

                for ($i = 0; $i < count($elist); $i++)
                {
                        eval('$entryidstodelete .= "' . fetch_template('vbglossar_checkedentries') . '";');
                }

I have added
Code:

                for ($i2 = 0; $i2 < count($elist); $i2++)
                {
                        eval('$entryidstodelete .= "' . fetch_template('vbglossar_checkedentries') . '";');
                }

. The problem is that I have found in line 371 the following:
Code:

                        for ($i = 0; $i < sizeof($keywords); $i++)
and I'm not sure what to duplicate there. However, the Greek alphabet appears allright.

The result is that whenever I add a new entry I get the message:
Warning: htmlentities () [function.htmlentities]: charset 'ISO-8859-7' not supported, assuming iso-8859-1 in [path]/includes/class_dm_vbglossar_entry.php on line 314

The entry is being added though, but the alphabet sorting does not work properly.

I would really really really appreciate any help on my problem, as I have been waiting for such a splendid add-on for quite a while...

a squared 12-13-2008 01:37 AM

Vossi, thank you. Turned out that I didn't need to upload the file. I was a little confused at first with the language files. I've edited the product-vbglossar.xml to correct "Glossar" to "Glossary" wherever viewable on the client side (including Admin CP, Mod CP) as well as a few other spelling mistakes and English grammar issues that just don't translate well from German. I would like to e-mail you the new file so that you can review it and possibly use it for the current upload package.


Quote:

Originally Posted by Vossi (Post 1682923)
Don't create a new language but choose the language you want to import (eg. german).


Vossi 12-13-2008 11:27 AM

Quote:

Originally Posted by a squared (Post 1684248)
I would like to e-mail you the new file so that you can review it and possibly use it for the current upload package.

You just got PM :)
Quote:

Originally Posted by physiart (Post 1684043)
I would really really really appreciate any help on my problem, as I have been waiting for such a splendid add-on for quite a while...

Could you send me the URL and an account to that forum in order for me to check that myself (via PM)? I might have an idea...

Hugo Holbling 12-14-2008 09:45 AM

I hope it's okay to ask this: how does this glossary compare with the Geek Auto-linker?

Vossi 12-14-2008 11:16 AM

Quote:

Originally Posted by Hugo Holbling (Post 1685096)
I hope it's okay to ask this: how does this glossary compare with the Geek Auto-linker?

I personally didn't test it as I don't own a licence of GAL. But maybe this can be checked out by somebody who has an active GAL running.

Excalibur! 12-14-2008 12:35 PM

I'm trying to install (new installation) vbglossary, but I got error:

Code:

Importing Product, Please Wait...

[:]

    * Erstelle Tabelle/create table vbglossar_category ... Erledigt/done!
    * Erstelle Tabelle/create table vbglossar_entry ... Erledigt/done!
    * Erstelle Tabelle/create table vbglossar_entryhistory ... Erledigt/done!
    * Erstelle Tabelle/create table vbglossar_attachment ... Erledigt/done!
    * Erstelle Tabelle/create table vbglossar_attachmentviews ... Erledigt/done!
    * �ndere Tabelle/change table usergroup ...
      Database Error        Database error


Vossi 12-14-2008 01:01 PM

What kind of database error?

Excalibur! 12-14-2008 01:14 PM

I don't know, but as you can see installation stops here:
* �ndere Tabelle/change table usergroup ...
and there is some strange letter...

Hugo Holbling 12-14-2008 01:18 PM

I have a GAL license so I'll try this and let you know how it compares. How many queries are added to showthread?

Edit: I am testing this and so far I think it is better than GAL, particularly with ease of use. However, I am unable to get bbcode to display in crosslinks, even though I have the categories set correctly. Any idea what I am doing wrong?

Vossi 12-14-2008 09:48 PM

Quote:

Originally Posted by Hugo Holbling (Post 1685216)
I have a GAL license so I'll try this and let you know how it compares. How many queries are added to showthread?

Edit: I am testing this and so far I think it is better than GAL, particularly with ease of use. However, I am unable to get bbcode to display in crosslinks, even though I have the categories set correctly. Any idea what I am doing wrong?

The Crosslinking inside bbcodes is manually turned off due to our code in order to spare performance. With the next major release of the glossary, this will be an option and crosslinks within bbcodes can be used after we finally release the glossary with a new DOM-parser.

Vossi 12-14-2008 09:49 PM

Quote:

Originally Posted by Excalibur! (Post 1685208)
I don't know, but as you can see installation stops here:
* �ndere Tabelle/change table usergroup ...
and there is some strange letter...

There is no errorcode? Aren't you getting a system-mail with more infos? :confused:

Hugo Holbling 12-15-2008 03:35 AM

Quote:

Originally Posted by Vossi (Post 1685479)
The Crosslinking inside bbcodes is manually turned off due to our code in order to spare performance.

Maybe we mean the same thing but I meant that bbcode inside crosslinks won't display, not the other way around. Other than that, it's excellent.

How many queries does this product use?

Vossi 12-15-2008 05:00 AM

Quote:

Originally Posted by Hugo Holbling (Post 1685645)
Maybe we mean the same thing but I meant that bbcode inside crosslinks won't display, not the other way around. Other than that, it's excellent.

How many queries does this product use?

The product works with Datastore, so there is one query left for showthread, in order to fetch the croslinkings, that' all.

And yes, about the bbcodes...thats the same I meant.

Hugo Holbling 12-15-2008 05:06 AM

Okay, great - thanks for answering my questions. I will be swapping GAL for this as soon as the DOM-parser version is released. Nice job. :)

physiart 12-17-2008 10:54 AM

Hi Vossi,

Everything's working smoothly now (including the popup texts).
Thanks a lot for your support. Great work!

pretke 12-17-2008 06:04 PM

Same:(

Code:

* Erstelle Tabelle/create table vbglossar_category ... Erledigt/done!
    * Erstelle Tabelle/create table vbglossar_entry ... Erledigt/done!
    * Erstelle Tabelle/create table vbglossar_entryhistory ... Erledigt/done!
    * Erstelle Tabelle/create table vbglossar_attachment ... Erledigt/done!
    * Erstelle Tabelle/create table vbglossar_attachmentviews ... Erledigt/done!
    * �ndere Tabelle/change table usergroup ...
      Database Error        Database error

the reason why:
Duplicate column name 'groupvbglossar' :confused:

solutions:
sql queries:

ALTER TABLE usergroup DROP COLUMN groupvbglossar

kud0gfx 12-19-2008 08:23 AM

is there anyway to let somegroups use html?

im a lol, you can do it in the manage category menu (if somebody have the same doubt)

hey vossi, are you working in something now? hows the reply's thing going... thanks for all your work man!

GameWizard 12-19-2008 04:17 PM

Quote:

Originally Posted by chadi (Post 1655467)
I already mentioned that, that was the area that was not picking up the changes. (glossarylink). I already have glossar enabled/checked in vbglossar > crosslinking settings area under "Active pages (THIS_SCRIPT)"

See screenshots

This problem can be corrected by adding a # infront of all the entires. For Example, instead of FFFFFF, use #FFFFFF.

GameWizard 12-19-2008 04:49 PM

I have managed to reproduce this issue. I trust you will correct it in the coming version.

My Default editor is WYSIWYG, i type 'test'. I press the Bold button. The text changes to bold as it should. If I now press the Editor change button at the top right, it changes to:
HTML Code:

[b]test[/b]
However, if I press the Editor change again, it does not change back to being bolded. It stays as:
HTML Code:

[b]test[/b]
I have tested this on a fresh installation, and it's isolated to the glossary, it does not appear in the normal forums.

EDIT: I found a bug that was in VB which was similar and corrected:
http://www.vbulletin.com/forum/proje...?issueid=21227

wottech 12-21-2008 04:55 PM

Has anyone else noticed that it won't pick up a word if it has a parentheses in front of it? I guess I could add that as a synonym as a fix, unless something thinks of a better way.

burlesque 12-29-2008 05:45 PM

Does anybody know how to have a random glossary entry appear on the forumhome template?

jacki 12-29-2008 06:56 PM

thank you :)

wottech 12-29-2008 07:17 PM

Quote:

Originally Posted by burlesque (Post 1696591)
Does anybody know how to have a random glossary entry appear on the forumhome template?

Should be as easy as creating a plugin to add a query that selects a random entry from the database. Then, assign a hook location to the plugin and make the appropriate template modification to display it where you want it. That's actually an interesting idea, and even better if you could integrate the query into an existing forumhome query so you don't add an additional query.

iBardia 12-29-2008 08:10 PM

Can you put the screenshots in English so I can understand them?

pckolojim 01-01-2009 09:55 AM

Is it compatible to v3.8 ? Anybody tried? I got DB error when i tried to import product.

Database error in vBulletin 3.8.0 Release Candidate 1:

Invalid SQL:
ALTER TABLE vb_usergroup
ADD groupvbglossar INT(10) UNSIGNED DEFAULT '0' NOT NULL;

MySQL Error : Duplicate column name 'groupvbglossar'
Error Number : 1060
Request Date : Thursday, January 1st 2009 @ 01:55:15 PM
Error Date : Thursday, January 1st 2009 @ 01:55:16 PM

pappocapo 01-01-2009 11:58 AM

very nice, thanks ;)

ICEEXOL 01-02-2009 01:01 PM

Database error in vBulletin 3.8.0 Release Candidate 1:

Invalid SQL:
ALTER TABLE vb_usergroup
ADD groupvbglossar INT(10) UNSIGNED DEFAULT '0' NOT NULL;

MySQL Error : Duplicate column name 'groupvbglossar'
Error Number : 1060
Request Date : Thursday, January 1st 2009 @ 01:55:15 PM
Error Date : Thursday, January 1st 2009 @ 01:55:16 PM

kyle 01-07-2009 04:34 AM

Is there a option/edit to remove the add on/by, last edit to get a cleaner display ?

kastet 01-15-2009 03:12 PM

Database error in vBulletin 3.8.0:

Invalid SQL:
ALTER TABLE vb3_usergroup
ADD groupvbglossar INT(10) UNSIGNED DEFAULT '0' NOT NULL;

MySQL Error : Duplicate column name 'groupvbglossar'
Error Number : 1060
Request Date : Thursday, January 15th 2009 @ 10:07:28 AM

pretke 01-15-2009 08:00 PM

Version 3.7.4. Same again. Terrible addon:down::down::down::down::down::down::down:

alehawk 01-19-2009 05:03 PM

rss of the glossar would be nice :)

a squared 01-26-2009 01:11 PM

Will this be updated to 3.8.x? I really hope so.

Andreas 01-26-2009 01:28 PM

Quote:

Originally Posted by pckolojim (Post 1698415)
Is it compatible to v3.8

It is not fully compatible and moste likely won't be until Jelsoft adds the required hook :)
Anyway, the DB error has nothing to do with that.

Hugo Holbling 01-26-2009 02:02 PM

Quote:

Originally Posted by Andreas (Post 1725177)
It is not fully compatible and moste likely won't be until Jelsoft adds the required hook :)

Can you explain this in a little more detail, Andreas? It is working fine for me (or so I thought) on vB3.8.0.


All times are GMT. The time now is 01:12 AM.

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.01553 seconds
  • Memory Usage 1,845KB
  • 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
  • (7)bbcode_code_printable
  • (2)bbcode_html_printable
  • (17)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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