Author |
Topic |
olef
Starting Member
Denmark
19 Posts |
Posted - 23 March 2006 : 17:19:32
|
Is it possible to have the MOD for testing ? < |
Edited by - olef on 23 March 2006 17:20:08 |
|
|
Nertz
Junior Member
Canada
341 Posts |
Posted - 23 March 2006 : 17:53:43
|
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 |
|
|
Nertz
Junior Member
Canada
341 Posts |
Posted - 26 March 2006 : 14:19:13
|
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 |
|
|
Nertz
Junior Member
Canada
341 Posts |
Posted - 26 March 2006 : 15:22:46
|
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 |
|
|
tribaliztic
Senior Member
Sweden
1532 Posts |
Posted - 27 March 2006 : 09:56:49
|
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 -
|
|
|
tribaliztic
Senior Member
Sweden
1532 Posts |
Posted - 27 March 2006 : 18:03:34
|
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 -
|
|
|
Nertz
Junior Member
Canada
341 Posts |
Posted - 27 March 2006 : 22:53:11
|
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 |
|
|
tribaliztic
Senior Member
Sweden
1532 Posts |
Posted - 28 March 2006 : 03:20:24
|
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 -
|
|
|
Nertz
Junior Member
Canada
341 Posts |
Posted - 29 March 2006 : 08:54:50
|
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 |
|
|
tribaliztic
Senior Member
Sweden
1532 Posts |
Posted - 29 March 2006 : 10:29:56
|
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 -
|
|
|
Nertz
Junior Member
Canada
341 Posts |
Posted - 29 March 2006 : 22:42:10
|
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 |
|
|
Etymon
Advanced Member
United States
2385 Posts |
Posted - 29 March 2006 : 23:28:35
|
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 < |
|
|
tribaliztic
Senior Member
Sweden
1532 Posts |
Posted - 30 March 2006 : 02:05:30
|
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 -
|
|
|
Nertz
Junior Member
Canada
341 Posts |
Posted - 30 March 2006 : 09:39:13
|
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 |
|
|
tribaliztic
Senior Member
Sweden
1532 Posts |
Posted - 30 March 2006 : 09:58:52
|
Nice work!! Can't think of anything else at the moment. < |
/Tribaliztic - www.gotlandrace.se -
|
|
|
Topic |
|