Author |
Topic  |
SiSL
Average Member
  
Turkey
671 Posts |
|
AnonJr
Moderator
    
United States
5768 Posts |
Posted - 20 September 2005 : 08:31:58
|
I've seen a lot of Rich Text Editors that support HTML - if your willing to take that risk.... not just the javascript et al, but people adding/forgetting a few </table>'s or </div>'s 
I haven't found any publicly available that natively support forum code, but I'm about ready to find a good Open Source project and hack it myself.... in my spare time 
here's an older topic along a similar line: http://forum.snitz.com/forum/topic.asp?TOPIC_ID=59179
(ed. to add link, courtesy of Search)< |
Edited by - AnonJr on 20 September 2005 08:35:31 |
 |
|
SiSL
Average Member
  
Turkey
671 Posts |
|
tribaliztic
Senior Member
   
Sweden
1532 Posts |
Posted - 10 November 2005 : 06:03:07
|
Did you find anything? =) < |
/Tribaliztic - www.gotlandrace.se -
|
 |
|
Nertz
Junior Member
 
Canada
341 Posts |
Posted - 10 November 2005 : 07:59:23
|
I'm trying out FCKeditor with Snitz. I have a few minor issues with it, but it seems to work for the most part. I would really like to convert its output to and save post in db as forum code, and that's where most of the issues are. If I allow HTML, it works pretty well. Also have issues with poll mod and calendar mod posts.
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 - 10 November 2005 : 08:14:25
|
I would only allow use of the wysiwyg for certain members that's allowed to post articles/reviews, so html should be ok. I'd preffer to only use forum code but... =) < |
/Tribaliztic - www.gotlandrace.se -
|
 |
|
Nertz
Junior Member
 
Canada
341 Posts |
Posted - 10 November 2005 : 08:28:09
|
quote: Originally posted by tribaliztic
I would only allow use of the wysiwyg for certain members that's allowed to post articles/reviews, so html should be ok.
I thought of doing something like that. I want to setup an additional field in the members table, member's editor privilege, and set up to 4 levels which can be modified only by admin. Lev 0 - forum code only Lev 1 - HTML w/ limited toolbar Lev 2 - HTML w/ advanced toolbar Lev 3 - full HTML privilege (admin for most part) That's the tough part for me to do....
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 - 10 November 2005 : 08:36:39
|
I have done that, added a field M_RANK and then an include inc_func_rank.asp:
<% strSQL = "SELECT M_RANK FROM " & strMemberTablePrefix & "MEMBERS where MEMBER_ID = """ & MemberID & """ " set rs = Server.CreateObject("ADODB.Recordset") rs.open strSql, my_Conn if not rs.EOF then m_status = rs("M_RANK") else m_status = 0 end if rs.close %> This is set via a scroll down menu in the users profiles. (Copied some code already in the pop_profile.asp). < |
/Tribaliztic - www.gotlandrace.se -
|
 |
|
Nertz
Junior Member
 
Canada
341 Posts |
Posted - 10 November 2005 : 08:51:13
|
Thanks tribaliztic.... that doesn't seem anywhere near as complicated as I thought. Now, how do I save that in session cookie so I don't have to query db for M_RANK before each post?< |
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 - 10 November 2005 : 08:55:45
|
No idea =) Long time since I played with cookies, sorry.. < |
/Tribaliztic - www.gotlandrace.se -
|
 |
|
Davecl
Junior Member
 
United Kingdom
105 Posts |
Posted - 11 November 2005 : 02:02:06
|
<% strSQL = "SELECT M_RANK FROM " & strMemberTablePrefix & "MEMBERS where MEMBER_ID = """ & MemberID & """ " set rs = Server.CreateObject("ADODB.Recordset") rs.open strSql, my_Conn if not rs.EOF then m_status = rs("M_RANK") else m_status = 0 end if Session("m_status")= m_status rs.close %> < |
Dave |
 |
|
tribaliztic
Senior Member
   
Sweden
1532 Posts |
Posted - 11 November 2005 : 03:11:47
|
Thanks! Now it's possible to put this code in like the inc_header.asp or something? < |
/Tribaliztic - www.gotlandrace.se -
|
 |
|
s80ts0465
Junior Member
 
Italy
290 Posts |
Posted - 16 November 2005 : 16:21:41
|
ok i made the same thing using Web Wiz Rich Text Editor.
but i've the problem that in the email sent after subscriptions i read the code :-(
how could i solve it???
bye ste< |
 |
|
AnonJr
Moderator
    
United States
5768 Posts |
Posted - 16 November 2005 : 22:11:54
|
If I remember right its set to send the e-mail in plain text. Change the way the component sends the e-mail to HTML.< |
 |
|
s80ts0465
Junior Member
 
Italy
290 Posts |
Posted - 17 November 2005 : 02:43:57
|
Yeah it works perfectly right now. thanks
bye ste< |
 |
|
Nertz
Junior Member
 
Canada
341 Posts |
Posted - 18 November 2005 : 20:09:05
|
I'm close... using TinyMCE. Gave up on FCKEditor, though I thought it had the better interface with ASP Class defined. TinyMCE works very well if the user has HTML privs turned on. I'm having some problems translating between forum code and HTML, such as when replying with quotes to post done in forum code. Would work fine if HTML was enabled globally or if used with Super/Admin/Mod HTML mod.
Running out of time right now, but hope to resume next 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 |
Edited by - Nertz on 20 November 2005 19:06:55 |
 |
|
Topic  |
|