Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 MOD Preview: WYSIWYG Post Editor
 New Topic  Reply to Topic
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 7

olef
Starting Member

Denmark
19 Posts

Posted - 23 March 2006 :  17:19:32  Show Profile  Reply with Quote
Is it possible to have the MOD for testing ?
<

Edited by - olef on 23 March 2006 17:20:08
Go to Top of Page

Nertz
Junior Member

Canada
341 Posts

Posted - 23 March 2006 :  17:53:43  Show Profile  Reply with Quote
olef, the mod is not complete and therefore not publicly available yet. It is available in limited distribution by email to those who would like to help and contribute to the project. If you would like to help and contribute, please send me an email via this forum.

cheers,
Nat<

Sadly, most Family Court Judges wrongfully reward opportunistic gold diggers
that use our children unjustly as "instruments" of power.


www.fathers-4-justice-canada.ca
Go to Top of Page

Nertz
Junior Member

Canada
341 Posts

Posted - 26 March 2006 :  14:19:13  Show Profile  Reply with Quote
To all who requested the mod, I notice tinyMCE has been updated to ver. 2.0.5.1. I have updated my copy on the church site and it appears to work fine. Along with a small change to inc_RTE.asp and making use of local caching, it also loads much quicker too.

If anyone who received the mod file from me has any changes or updates, please let me know soon as I'd like to bundle them up with the changes to inc_RTE.asp and distribute an update later this week.

cheers,
Nat<

Sadly, most Family Court Judges wrongfully reward opportunistic gold diggers
that use our children unjustly as "instruments" of power.


www.fathers-4-justice-canada.ca
Go to Top of Page

Nertz
Junior Member

Canada
341 Posts

Posted - 26 March 2006 :  15:22:46  Show Profile  Reply with Quote
Serritzlev, I'll be sending you a new inc_RTE later this week.

Nat<

Sadly, most Family Court Judges wrongfully reward opportunistic gold diggers
that use our children unjustly as "instruments" of power.


www.fathers-4-justice-canada.ca
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 27 March 2006 :  09:56:49  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote
quote:
Originally posted by Nertz

trib, I can't reproduce. Can you give me user access with RTE lev 3 or 4 so I can have a look at it directly? If not, can you recreate a new post with multiple smilies, and just before you submit the post open and copy the contents of the HTML viewer (HTML button) on the editor. You will need to use lev. 3 or 4 to get HTML source. Then submit the post, and edit the post again. Without making any changes, copy the HTML viewer again. Send me both before post and after post HTML contents by email. The regex conversion is failing on one or more smilie, I'll try to find out why.

cheers,
Nat



Done!

The smilie bug kindof have to be solved, my users have a bad habit of inserting multiple smilies =(

Also: I tried to make this editor show up in 2 forums only but I can't make it work. Is it cached somewhere or how does it work? I don't even have the code for post.asp added but it still show when I try to create a new topic. Strange =)
<

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 27 March 2006 :  18:03:34  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote
quote:
Originally posted by Nertz

To all who requested the mod, I notice tinyMCE has been updated to ver. 2.0.5.1. I have updated my copy on the church site and it appears to work fine. Along with a small change to inc_RTE.asp and making use of local caching, it also loads much quicker too.

If anyone who received the mod file from me has any changes or updates, please let me know soon as I'd like to bundle them up with the changes to inc_RTE.asp and distribute an update later this week.

cheers,
Nat



Good work! =)
<

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page

Nertz
Junior Member

Canada
341 Posts

Posted - 27 March 2006 :  22:53:11  Show Profile  Reply with Quote
quote:
Originally posted by tribaliztic

Also: I tried to make this editor show up in 2 forums only but I can't make it work. Is it cached somewhere or how does it work? I don't even have the code for post.asp added but it still show when I try to create a new topic. Strange =)


Trib, the way the editor works it will convert any textarea named "Message" to RTE on those pages allowed in the if statement in inc_RET.asp. If you want to isolate it to selected forums, you will need to add forum= conditionals to that if or another if statement below it. Not going to be easy though.

cheers,
Nat<

Sadly, most Family Court Judges wrongfully reward opportunistic gold diggers
that use our children unjustly as "instruments" of power.


www.fathers-4-justice-canada.ca
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 28 March 2006 :  03:20:24  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote
hmm...Could I change it so that it only show on textareas named "Message2" for example? =) I think it would be easier to change the textarea names in post.asp IF FORUM_ID = XX?
<

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page

Nertz
Junior Member

Canada
341 Posts

Posted - 29 March 2006 :  08:54:50  Show Profile  Reply with Quote
quote:
Originally posted by tribaliztic

hmm...Could I change it so that it only show on textareas named "Message2" for example? =) I think it would be easier to change the textarea names in post.asp IF FORUM_ID = XX?


Trib, sorry I haven't been around for a couple of days, was travelling. I don't think it's a good idea to change textarea name in post.asp, it will affect post_info.asp too, and the quick reply form in topic.asp. Easiest way is to deal with it in inc_RTE.asp.

I have thought about a forum setting where you can decide which forums to allow RTE, I might include that in the next version. I think it's a good idea to allow admins to choose which forums they would allow RTE. It's easy enough adding a new field to the forum table and checking it before loading RTE.

For now though, you can add an if statement in inc_RTE, just below the if statement that checks U_edLev and the allowed pages. But doing this will not allow you to load the RTE in other pages besides post.asp (eg: topic.asp quick reply area)

if Request.QueryString("FORUM_ID")="xx" or Request.QueryString("FORUM_ID")="yy" then
.... code to load RTE
end if

just replace xx and yy with the forum IDs you want to allow RTE.

cheers,
Nat<

Sadly, most Family Court Judges wrongfully reward opportunistic gold diggers
that use our children unjustly as "instruments" of power.


www.fathers-4-justice-canada.ca
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 29 March 2006 :  10:29:56  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote
Okay, I can't really find where to put this code, could you give me some line numbers maybe? =)
Why can't I use this on other pages than post.asp if I add this if statement? What pages is allowed is set before this?

A forum setting would be great!<

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page

Nertz
Junior Member

Canada
341 Posts

Posted - 29 March 2006 :  22:42:10  Show Profile  Reply with Quote
trib, with that little patch it wouldn't find a forumID on other pages except post.asp or topic.asp. Give me a little time, I started working on setting forums that allow RTE. I've been coding while in transit on flights, just haven't been able to test it yet from up there. Soon as I get back home I will test it and get you something where you could set which forums to allow RTE. I did get your email and will be investigating your other problem further too.

Nat<

Sadly, most Family Court Judges wrongfully reward opportunistic gold diggers
that use our children unjustly as "instruments" of power.


www.fathers-4-justice-canada.ca
Go to Top of Page

Etymon
Advanced Member

United States
2385 Posts

Posted - 29 March 2006 :  23:28:35  Show Profile  Visit Etymon's Homepage  Reply with Quote
Hi Nertz,

After I uploaded the file online the MOD did show up. When I was using it offline on Personal Web Server and Windows 98SE, it didn't show at all.

I've just begun to play with it, so I'll let you know more when I get my mind into it more.

Cheers,

Etymon
<
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 30 March 2006 :  02:05:30  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote
quote:
Originally posted by Nertz

trib, with that little patch it wouldn't find a forumID on other pages except post.asp or topic.asp. Give me a little time, I started working on setting forums that allow RTE. I've been coding while in transit on flights, just haven't been able to test it yet from up there. Soon as I get back home I will test it and get you something where you could set which forums to allow RTE. I did get your email and will be investigating your other problem further too.

Nat



Ah, I didn't think about that one (the forum_id that is...)
Great!! I still have a few other things to finish before I'm in a hurry with this one so take your time =)
<

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page

Nertz
Junior Member

Canada
341 Posts

Posted - 30 March 2006 :  09:39:13  Show Profile  Reply with Quote
These are the next few features/add-ins to the mod for the next limited distribution beta release. If you'd like to see other features, let me know.
  • Local caching of JS scripts for quicker loads

  • Use session cookie to save user RTE level

  • basic Browser compatibility check - will assume all browsers are compatible, and deals with exceptions only. Thus far I've come across two exceptions, WebTV and Safari on Mac OSX. Of course IE4 and earlier and earlier versions of netscape. If you know of more, let me know.

  • RTE Allowed Forums (Trib)

  • Smilie Manager changes (Trib & serritzlev)

  • Maybe if time and my skills allow... TinyMCE config panel to customize editor features for each RTE level. Thought of doing this with a db table, but works against caching. Looking for a secure way to alter JS files from an admin panel

  • Additional HTML/ForumCode conversions


Struck out items are already complete, tested and ready for the release package.
<

Sadly, most Family Court Judges wrongfully reward opportunistic gold diggers
that use our children unjustly as "instruments" of power.


www.fathers-4-justice-canada.ca
Go to Top of Page

tribaliztic
Senior Member

Sweden
1532 Posts

Posted - 30 March 2006 :  09:58:52  Show Profile  Visit tribaliztic's Homepage  Send tribaliztic an ICQ Message  Reply with Quote
Nice work!!
Can't think of anything else at the moment.
<

/Tribaliztic
- www.gotlandrace.se -
Go to Top of Page
Page: of 7 Previous Topic Topic Next Topic  
Previous Page | Next Page
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.15 seconds. Powered By: Snitz Forums 2000 Version 3.4.07