vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   vB Spell :: Spell Checker in WYSIWYG and Standard Modes (https://vborg.vbsupport.ru/showthread.php?t=92202)

Mr Chad 10-13-2005 02:43 AM

This is amaizing! Only problem was adding the dictionary to the database. I host with 1and1 and their DB konks out if i send to much at a time. so i had to add it until it gave me the error then find out how far it added and take all the stuff it added from the Dict.TXT and re add it. Worked perfectly.

dsmcd01 10-13-2005 01:50 PM

Quote:

Originally Posted by tamarian
Try this: open vbspell.php, find:

PHP Code:

preg_match_all "/" $ignore_sets "\[[^\]]+\]|[[:alpha:]']+|<[^>]+>|&[^;\ ]+;/im"$mystr$alphasPREG_OFFSET_CAPTURE|PREG_PATTERN_ORDER); 

Replace with:
PHP Code:

preg_match_all "/" $ignore_sets "\[[^\]]+\]|[[:alpha:]]+|<[^>]+>|&[^;\ ]+;/im"$mystr$alphasPREG_OFFSET_CAPTURE|PREG_PATTERN_ORDER); 


No, sorry. No difference. Spell checking:
word 'word' "word"
still finds 'word' misspelled.

Thx,
D.

AaronBBrown 10-14-2005 12:54 PM

I've followed the instructions, put A and B in SHOWTHREAD and followed the special instructions and put
Code:

<input type="button" class="button" value="Spell Check" onClick="spellCheck('qeform', '$editorid', '2');" />
in postbit_quickedit, but my quickedit spellcheck button does nothing. Suggestions?

tamarian 10-14-2005 01:26 PM

Quote:

Originally Posted by AaronBBrown
I've followed the instructions, put A and B in SHOWTHREAD and followed the special instructions and put
Code:

<input type="button" class="button" value="Spell Check" onClick="spellCheck('qeform', '$editorid', '2');" />
in postbit_quickedit, but my quickedit spellcheck button does nothing. Suggestions?

There is a problem with Quick edit that has yet to be resolved. For now, just click advanced to use the spell checker.

AaronBBrown 11-01-2005 05:18 PM

This mod strips out all backslashes from a post.

If I type "C:\Mypath\Foo"

vBSpell immediately strips it to "C:MypathFoo" when it comes up.

Lea Verou 11-01-2005 05:29 PM

Quote:

Originally Posted by AaronBBrown
This mod strips out all backslashes from a post.

If I type "C:\Mypath\Foo"

vBSpell immediately strips it to "C:MypathFoo" when it comes up.

Yep that's a common thing in php to ensure that even if magic quotes is enabled the text will look correct... If that didn't exist in the code you'd probably see additional backslashes in the text (although you wouldn't loose the ones you posted).
I don't know if that can be fixed, but if it can I'd really like to see the solution!

6impy 11-03-2005 08:23 AM

I upgraded to vB3.5.1 and now when I try to use the spell checker, the popup window is completely blank.

sim tech 11-04-2005 04:03 PM

Quote:

Originally Posted by 6impy
I upgraded to vB3.5.1 and now when I try to use the spell checker, the popup window is completely blank.

Here too...


I ended up running the install script and selecting uninstall.

Then I re-installed it & it's now working. The install/uninstall script made it very painless!

tamarian 11-04-2005 06:38 PM

Re: 3.5.1: The reason it stops working is that the vbspell template gets deleted after the upgrade, probably due to product id, as it was made before products. I'll check on that.

In the mean time, to get it back, all you need to do is re-create the vbspell template, either by running the install script (only the template step), or create a new vbspell template by pasting this:

HTML Code:

$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>vB Spell $vboptions[bbtitle]</title>
$style[css]
<script>
var iFrameBody;
var spell_formname="$FormName";
var spell_fieldname="$FieldName";
</script>
<script src="vbspell.js"></script>
<script>
$js;
</script>
</head>

<body>

<form name="fm1" onSubmit="return false;">

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
        <tr>
                <td class="tcat" colspan="2">
                        <strong>vB Spell</strong>
                </td>
        </tr>

        <tr>
                <td class="alt1" colspan="2">
                        <iframe name="spellbox" id="spellbox" width="100%" height="270" scrolling="auto" src="vbspell_iframe.php"></iframe>
                </td>
        </tr>

        <tr class="alt1">
                <td valign="top" width="310">
                        <fieldset class="fieldset" style="margin:0px">
                                <legend>Change to:</legend>
                                <div style="padding:$stylevar[formspacer]px">
                                        <div>
                                                <input type="text" name="changeto" class="biginput">
                                        </div>
                                </div>
                        </fieldset>       
                </td>

                <td width="310">
                        <fieldset class="fieldset" style="margin:0px">
                                <legend>Suggestions:</legend>
                                <div style="padding:$stylevar[formspacer]px">
                                        <div>
                                                <select style="width:100%" name="suggestions" size="4" onClick="this.form.changeto.value = this.options[ this.selectedIndex ].text">
                                                </select>
                                        </div>
                                </div>
                        </fieldset>
                </td>
        </tr>

        <tr>
                <td colspan="2" class="alt2" noWrap="noWrap">
                        <input type="button" class="button" name="change" value="Change" onClick="replaceWord()">
                        <input type="button" class="button" name="changeall" value="Change All" onClick="replaceAll()">
                        <input type="button" class="button" name="ignore" value="Ignore" onClick="nextWord(false)">
                        <input type="button" class="button" name="ignoreall" value="Ignore All" onClick="nextWord(true)">
                        <input type="button" class="button" name="learn" value="Learn" onClick="learnWord()">
                        <input type="button" class="button" name="thesarus" value="Thesaurus" onClick="thesarusWord()">
                        <input type="button" class="button" name="lookup" value="Lookup" onClick="lookupWord()">       
                        <input type="button" class="button" name="quit" value="Quit" onClick="exitWord()">       
                        <input type="button" class="button" name="done" value="Done" onClick="doneWord()">
                </td>
        </tr> 
</table>
</form>
</body>
</html>


thewitt 11-06-2005 12:48 AM

Have you looked at the integration comments for template editing from message #48? These are very slick and so far seem to work great.

It replaces the IE only enabled ABC-checkmark with this editor. It seems to work really well and only required three template edits.

Comments?

-t


All times are GMT. The time now is 01:30 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.01549 seconds
  • Memory Usage 1,786KB
  • 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
  • (2)bbcode_code_printable
  • (1)bbcode_html_printable
  • (2)bbcode_php_printable
  • (4)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