vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   WYSIWYG Post Editor v1.0 (https://vborg.vbsupport.ru/showthread.php?t=40283)

Martin CX 07-03-2002 01:22 AM

When doing updates please remember that less is more in regards to size. It's enough that what was less than a 2K page (creating a new thread) is now more than 4K (horrific sizes, I know) - but the script runs slower the bigger it gets.

It would be very cool if your script was modular in the sense that it is easy to suss out what to delete because you don't need it, and it won't wreck the script. For example, I don't use smilies at all in my forums (my users vehemently abhors them!) so I don't need lots of extra code to do them properly - thus that is a part of the script I would delete.

Erwin 07-03-2002 01:36 AM

Thanks for the updates - works real well.

memobug 07-03-2002 01:47 AM

This is a great hack, but I'd love to see some kind of image handling, not necessarily an upload feature, which is kind of redundant, but maybe something similar to the links button that will let you insert an image already on the web.

Pops up an http://_____________ box, accepts a url and inserts it in a wyswig way.

It's the first thing I looked for when I saw your post. sniff

Oh well, this is about 100x better than the standard stoneage editor!

Regards,

Matt

WallStreat 07-03-2002 09:01 AM

Quote:

Originally posted by Velocd
Great job Wallstreet, that defiantly helps! Alot of my members still didn't really know about the WYSIWYG editor because they had to switch it on, mostly the new registered users. One small problem is this WYSIWYG still has some bugs I and my members have noticed, if a member just doesn't want to use it I don't want to force them to install some older browser, I like to give them the option of turning it off....but that requires calling some queries.


as per birdie 501, incorp my mod & the user table hack, nake enabling wysiwyg as the default. hence for users who dun want to use it, they need to explicity trun it off:

if ( ($enableHTMLEdit == 1) AND ( ($bbuserinfo['enablewysiwyg']) ) ) {
eval("dooutput(\"".gettemplate("newthread_wysiwyg" )."\");");
} else {
eval("dooutput(\"".gettemplate("newthread")."\");" );
}

Quote:

Another problem though, you said it checks if the browser is older than IE 5.5, but what about other browsers? I know alot of people use Mozilla, and as I last heard Mozilla 1.0 isn't compatible with the WYSIWYG, will it also check this and bypass it?
my code checks for browers that are MS IE & running under Windows OS & version is 5.5 & 6.x . I'm still researching on a way to make this evern more foolproof :)

Boofo 07-03-2002 09:46 AM

Is there any way to have it check for their browser and if it isn't IE 5.5 or 6.0, not even show the option to turn it on or off?

Birdie501 07-03-2002 10:22 AM

Quote:

Originally posted by Boofo
Is there any way to have it check for their browser and if it isn't IE 5.5 or 6.0, not even show the option to turn it on or off?
i got it, just have to write instructions!

Birdie501 07-03-2002 10:41 AM

Quote:

Originally posted by Boofo
Is there any way to have it check for their browser and if it isn't IE 5.5 or 6.0, not even show the option to turn it on or off?

Here we go:

Add a new template called wysiwyg_modifyoption:
Sorry but you have to translate back in english :)

PHP Code:

<tr>
<
td bgcolor="#1D6AA0" colspan="2"><normalfont color="#EEEEFF"><b>WYSIWYG Modul</b></normalfont></td>
</
tr>
<
tr>
    <
td bgcolor="#1C5780"><normalfont><b>M?chtest Du dasWYSIWYG Modul benutzen?</b></normalfont><br>
    <
smallfont>Wenn Du ja w?hlstkannst du den Text beim schreiben/?ndern eines Beitrages nach deinen W?nschen formatieren, ?hnlich wie in MS Word. (WYSIWYG What You See Is What You Get) <br><b><u>Achtung:</uFunktioniert nicht mit allen Internet browserIE 6empfohlen!</b>
</
smallfont></td>
    <
td bgcolor="#1C5780"><normalfont>
        <
input type="radio" name="enablewysiwyg" value="yes" $enablewysiwygcheckedja
        
<input type="radio" name="enablewysiwyg" value="no" $enablewysiwygnotcheckednein
    
</normalfont></td>
</
tr



in template modifyoptions

find:

PHP Code:

<tr>
<
td bgcolor="#1D6AA0" colspan="2"><normalfont color="#EEEEFF"><b>WYSIWYG Modul</b></normalfont></td>
</
tr>
<
tr>
    <
td bgcolor="#1C5780"><normalfont><b>M?chtest Du dasWYSIWYG Modul benutzen?</b></normalfont><br>
    <
smallfont>Wenn Du ja w?hlstkannst du den Text beim schreiben/?ndern eines Beitrages nach deinen W?nschen formatieren, ?hnlich wie in MS Word. (WYSIWYG What You See Is What You Get) <br><b><u>Achtung:</uFunktioniert nicht mit allen Internet browserIE 6empfohlen!</b>
</
smallfont></td>
    <
td bgcolor="#1C5780"><normalfont>
        <
input type="radio" name="enablewysiwyg" value="yes" $enablewysiwygcheckedja
        
<input type="radio" name="enablewysiwyg" value="no" $enablewysiwygnotcheckednein
    
</normalfont></td>
</
tr

and replace with

PHP Code:

$wysiwyg_option 



in member.php

find:

PHP Code:


if ($bbuserinfo[userid]==or $permissions['canmodifyprofile']==0) {
    
show_nopermission();
  } 

after that add:

PHP Code:


if ($enableHTMLEdit == 1) {
    if (
$bbuserinfo[enablewysiwyg]) {
     
$enablewysiwygchecked="checked";
     
$enablewysiwygnotchecked="";
  } else {
     
$enablewysiwygchecked="";
     
$enablewysiwygnotchecked="checked";
  }
    eval (
"\$wysiwyg_option .= \"".gettemplate("wysiwyg_modifyoption")."\";");
    } else {
    
$wysiwyg_option="";
  } 


Thats all.

It works for me, i just tested with Navigator 6.0 and nothing was shown! :)

Boofo 07-03-2002 11:05 AM

I hate to be a pain here, but can somebaody translate this part for me? :)

PHP Code:

<tr>
<
td bgcolor="#1D6AA0" colspan="2"><normalfont color="#EEEEFF"><b>WYSIWYG Modul</b></normalfont></td>
</
tr>
<
tr>
    <
td bgcolor="#1C5780"><normalfont><b>M?chtest Du dasWYSIWYG Modul benutzen?</b></normalfont><br>
    <
smallfont>Wenn Du ja w?hlstkannst du den Text beim schreiben/?ndern eines Beitrages nach deinen W?nschen formatieren, ?hnlich wie in MS Word. (WYSIWYG What You See Is What You Get) <br><b><u>Achtung:</uFunktioniert nicht mit allen Internet browserIE 6empfohlen!</b>
</
smallfont></td>
    <
td bgcolor="#1C5780"><normalfont>
        <
input type="radio" name="enablewysiwyg" value="yes" $enablewysiwygcheckedja
        
<input type="radio" name="enablewysiwyg" value="no" $enablewysiwygnotcheckednein
    
</normalfont></td>
</
tr


Birdie501 07-03-2002 11:47 AM

just use this part from the original instruction file :)

Boofo 07-03-2002 12:08 PM

Which section should this go under? I put it under the start modify options section.

Code:

if ($enableHTMLEdit == 1) {
    if ($bbuserinfo[enablewysiwyg]) {
    $enablewysiwygchecked="checked";
    $enablewysiwygnotchecked="";
  } else {
    $enablewysiwygchecked="";
    $enablewysiwygnotchecked="checked";
  }
    eval ("\$wysiwyg_option .= \"".gettemplate("wysiwyg_modifyoption")."\";");
    } else {
    $wysiwyg_option="";
  }

There are 4 sections in there with:

Code:

if ($bbuserinfo[userid]==0 or $permissions['canmodifyprofile']==0) {
    show_nopermission();
  }

Quote:

Originally posted by Birdie501
just use this part from the original instruction file :)


All times are GMT. The time now is 07:38 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.03282 seconds
  • Memory Usage 1,793KB
  • 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
  • (6)bbcode_php_printable
  • (5)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