| Topic Archived |
View previous topic :: View next topic |
| Author |
Message |
Viperal Supporter


Offline Joined: May 01, 2004 Posts: 858 Location: New York
|
Posted: Thu May 06, 2004 6:46 pm Post subject: WYSIWYG Editor |
|
Is it posible to have the new WYSIWYG Editor in CPGnuke standard as on
www.pitcher.no It is a really good editor
I being used here
www.pitcher.no/index.p...e=Feedback
_________________ What is The Viperal ?
Email: viperal1 @ gmail.com
Viperal please enter your server specs in your user profile!
Last edited by Viperal on Mon May 31, 2004 12:56 am; edited 1 time in total |
|
| Back to top |
|
 |
Ertan I18N / L10N Lead Dev


Offline Joined: Apr 21, 2004 Posts: 98 Location: Germany
|
Posted: Thu May 06, 2004 7:41 pm Post subject: Re: WYSIWYG Editor |
|
this topic is worked out - got loose after hoster change
pitcher use htmlarea
there are other editors out(jscript,fckeditor....)
but they make trouble with output code
we have to wait for maze ;--)
Ertan's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
|
|
| Back to top |
|
 |
Viperal Supporter


Offline Joined: May 01, 2004 Posts: 858 Location: New York
|
Posted: Thu May 06, 2004 7:58 pm Post subject: Re: WYSIWYG Editor |
|
Thank i look like htmlarea is simple to integrate, and work with both IE and Firefox(NS), WYSIWYG Editor 720b1 is only IE base now but a bit more dificault it install. So i guess i give it a try.
_________________ What is The Viperal ?
Email: viperal1 @ gmail.com
Viperal please enter your server specs in your user profile!
Last edited by Viperal on Mon May 31, 2004 12:56 am; edited 1 time in total |
|
| Back to top |
|
 |
Viperal Supporter


Offline Joined: May 01, 2004 Posts: 858 Location: New York
|
Posted: Fri May 07, 2004 2:15 pm Post subject: Re: WYSIWYG Editor |
|
well HTMLArea 3.0(latest) still has problem with Firebird(MZ) i guess i will try WYSIWYG Editor 720b1,
It will not work with MZ but it would carry you back to the regular editing window so FB/MZ can still do some thing. Will try porting it after 8.2
_________________ What is The Viperal ?
Email: viperal1 @ gmail.com
Viperal please enter your server specs in your user profile!
Last edited by Viperal on Mon May 31, 2004 12:56 am; edited 1 time in total |
|
| Back to top |
|
 |
FishySteve Gold Supporter


Offline Joined: Apr 21, 2004 Posts: 158 Location: Australia
|
Posted: Thu May 27, 2004 12:44 pm Post subject: Re: WYSIWYG Editor |
|
Any updates on this?
I'd also like to use a wysiwyg editor.
Regards
Steve
FishySteve's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux(Unix) - Apache/1.3.34 - MySQL Client API version 4.1.21 - PHP Version 4.4.2 - Perl Version 5.8 - DF 9.0.6.1
|
|
| Back to top |
|
 |
dirtbag Nice poster


Offline Joined: May 06, 2004 Posts: 143
|
Posted: Thu May 27, 2004 1:36 pm Post subject: Re: WYSIWYG Editor |
|
Me too... Have anytime to mess with this..
_________________ www.subfighter.com
Jiu Jitsu Instructionals Grappling BJJ Techniques Videos Online
dirtbag's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) XP//3.23.41/4.3.3
|
|
| Back to top |
|
 |
liqweed Newbie


Offline Joined: Apr 22, 2004 Posts: 20
|
Posted: Sat May 29, 2004 10:31 pm Post subject: Re: WYSIWYG Editor |
|
I realy like FCKeditor.
Featuring:
| Quote:: |
XHTML support
Font formatting: type, size, color, style, bold, italic, etc
Text formatting: alignment, indentation, bullets list, etc
Cut, Paste and Past as Plain Text, Undo and Redo
Paste from Word cleanup with auto detection
Link creation
Anchors support
Image insertion, with upload and server browsing support
Table creation and editing (add, delete rows, etc)
Table cells editing (size, colors, etc)
Form fields
Right click context menus support
Complete toolbar customization
Spell checker
CSS support for a better integration in your web site
Multi-language support with automatic client language detection.
Lightweight and fast
Compatible with Internet Explorer 5+
Automatic browser detection and customization
Integration with ASP, ASP.NET, Java, ColdFusion, PHP, Javascript and IE Behaviours
Image and file links upload and server repository browser.
For web developer it is easy to install and customize
For web users its simply easy to use! |
...anyways, it's very cool and it's a very active project. I think it would make an excellent addition to CPG-Nuke.
liqweed's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux/1.2/3/4
|
|
| Back to top |
|
 |
FishySteve Gold Supporter


Offline Joined: Apr 21, 2004 Posts: 158 Location: Australia
|
Posted: Sun May 30, 2004 12:19 pm Post subject: Re: WYSIWYG Editor |
|
Looks good to me, although at this stage I'd be happy with a stripped down version that is easy for users to drive and alows them to upload an image.
Regards
Steve
FishySteve's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux(Unix) - Apache/1.3.34 - MySQL Client API version 4.1.21 - PHP Version 4.4.2 - Perl Version 5.8 - DF 9.0.6.1
|
|
| Back to top |
|
 |
liqweed Newbie


Offline Joined: Apr 22, 2004 Posts: 20
|
Posted: Sun May 30, 2004 1:46 pm Post subject: Re: WYSIWYG Editor |
|
Using FCKeditor, it's easy to define a few toolbars and then to use each one in the right context.
For example, I use 3 sets of toolbars:
* Guest - which has basic editing, using to pre-defined styles to conform with the site's design. Includes basic elements like lists & tables.
* Editor - meant for article contributors. A bit more lax version, includes uploading of images on top of what's included in Guest's toolbox.
* Admin - the whole enchilada (except for stuff I ain't never gonna' use like forms).
The code looks roughly like this:
| Code:: |
include("includes/FCKeditor/fckeditor.php");
...
$oFCKeditor = new FCKeditor;
$oFCKeditor->ToolbarSet = 'Editor' ;
$oFCKeditor->Value = "$hometext";
$oFCKeditor->CreateFCKeditor('hometext', '70%', 350); |
All I have to do is set the ToolbarSet with the set of my choice (set set), according to context.
liqweed's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux/1.2/3/4
|
|
| Back to top |
|
 |
fesja Newbie


Offline Joined: Apr 24, 2004 Posts: 49 Location: Madrid - Spain
|
Posted: Fri Jun 04, 2004 10:35 pm Post subject: Re: WYSIWYG Editor |
|
I agree with the idea to use fckeditor. I'm using it and it's very fast if you configure your toolbar. I recommend you to add it to cpgnuke.
fesja's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Ubuntu Hoary / 2.0.53 / 4.1.10 / 4.3.10/ 9.0.3
|
|
| Back to top |
|
 |
snurre Newbie


Offline Joined: Apr 20, 2004 Posts: 6
|
Posted: Mon Jun 07, 2004 10:20 pm Post subject: Re: WYSIWYG Editor |
|
Yes, a WYSIWYG editor is what is making me stop using CPG nuke, and we can not call CPG nuke a CMS before FCK editor or HTML area is implemented..
Until I can upload images, such as in HTML area, in Topics, News, Content and all other textarea, and the rest of the functionality, I will use PHP nuke...
Sorry..
snurre's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Yes
|
|
| Back to top |
|
 |
confusedxx Nice poster


Offline Joined: Jun 24, 2004 Posts: 70
|
Posted: Thu Jun 24, 2004 5:20 pm Post subject: Re: WYSIWYG Editor |
|
Was there anything special you had to do to use the WYSIWYG Editor 720b1?
confusedxx's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) 4.5/4.3/3.5/6.4
|
|
| Back to top |
|
 |
FishySteve Gold Supporter


Offline Joined: Apr 21, 2004 Posts: 158 Location: Australia
|
Posted: Fri Jun 25, 2004 5:20 am Post subject: Re: WYSIWYG Editor |
|
I'm "finally" about to bring the new cpg powered site online  in about a week maybe.
I have the news feature deactivated atm, if a wysiwyg editor is ever ported over for CPG would it easily install over an "existing news"?
The reason I ask is, if it would install and work ok I'll activate it as it is a great artibute to this CMS otherwize I'll leave it disabled for now because I want to use a WYSIWYG editor for my visitors at the end of the day.
Please, If someone successfully ports a WYSIWYG editor please let us know as it looks like there are a number of people that would like to see this happen.
Kindest Regards
Steve.
FishySteve's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux(Unix) - Apache/1.3.34 - MySQL Client API version 4.1.21 - PHP Version 4.4.2 - Perl Version 5.8 - DF 9.0.6.1
|
|
| Back to top |
|
 |
Viperal Supporter


Offline Joined: May 01, 2004 Posts: 858 Location: New York
|
Posted: Sat Jun 26, 2004 8:15 pm Post subject: Re: WYSIWYG Editor |
|
Being done, just finding a good way of adding the bbcode smiles directly (don't think much people use it but hay).
This is being done using htmlarea.
_________________ What is The Viperal ?
Email: viperal1 @ gmail.com
Viperal please enter your server specs in your user profile!
|
|
| Back to top |
|
 |
FishySteve Gold Supporter


Offline Joined: Apr 21, 2004 Posts: 158 Location: Australia
|
Posted: Sat Jun 26, 2004 10:18 pm Post subject: Re: WYSIWYG Editor |
|
FishySteve's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux(Unix) - Apache/1.3.34 - MySQL Client API version 4.1.21 - PHP Version 4.4.2 - Perl Version 5.8 - DF 9.0.6.1
|
|
| Back to top |
|
 |
|
|