View Full Version : Wysiwyg



mmonroe
05-23-2008, 02:09 AM
I'm looking for something like a server side WYSIWYG Editor...

What I want to do is to be able to log into an area, and be able to list all my text files [.txt, .html, .php, .js, .css, etc.] in their respected folders and allow me to edit them through the browser and save the changes...

The closest working example that I can think of would be Wordpress's Theme Editor. Anyone know what i'm talking about?

Oh GAWD the Smell!
05-23-2008, 02:27 AM
Why don't you just use terminal services/remote desktop?

mmonroe
05-23-2008, 03:22 AM
Because neither one of those will do what I want to do or serve the purpose... i guess.

I found almost exactly what I was looking for though. I think with a few modifications, I'll get it to do what I want, but it's an awesome application non the less.

File Thingie • PHP File Manager (http://www.solitude.dk/filethingie/)

flintysooner
05-23-2008, 08:16 AM
There's no such thing as a server side editor by definition. If you want to edit the file you have to interact with it.

If you're wanting to use WYSIWYG for html, xml, css, etc then you'd need to use a server side application with a JavaScript client for the WySIWYG. I've built them and there are content managers that do this.

mmonroe
05-23-2008, 01:30 PM
Well, I defined it to be server side and not client side because i wanted an editor that worked through the browser and not a stand alone desktop application.

flintysooner
05-24-2008, 12:13 AM
It is a common misconception so you are in good company.

mmonroe
05-24-2008, 04:37 AM
I mean, I get how it's works, and proper terminology, but people who know what i'm talking about [that's you] would be the only ones to properly point me in the direction I needed.

It's also not necessarily a "WYSIWYG" type of editor.

flintysooner
05-24-2008, 06:59 AM
If you use Firefox you might take a look at the Xinha! Here (https://addons.mozilla.org/en-US/firefox/addon/1449) extension. It uses the Xinha open source html editor. (http://xinha.webfactional.com/).

The benefit of this is that your editor is a part of your browser now so is not dependent upon anything being delivered from the server. But there still has to be a text area field for it to work. But it does work very well. So all you have to do is create a simple program on the server to open a file and put the contents in a textarea and then you can edit it with Xinha. Then your program has to save.

If you are building your own application on the web server and need an html editor for your project then I've used several both that I've purchased and that are free. I think the last one I used was tinyMCE (http://tinymce.moxiecode.com/) so you might check it.

You might look at fireFTP for Firefox (https://addons.mozilla.org/en-US/firefox/addon/684) - gives you a nice FTP client that you can use directly from your Firefox.

I personally use UltraEdit (http://www.ultraedit.com/) but I've been using it a long time.

Martin
05-24-2008, 08:52 AM
ultraedit is great for web in that it has a built-in ftp client. that's what i use.

-M

flintysooner
05-24-2008, 09:06 AM
ultraedit is great for web in that it has a built-in ftp client. that's what i use.I like that I can set up projects and associate my project folders with my web structure and it keeps the ftp information for me. I also like that I can have multiple syntax templates.

However, I am not working much anymore so I'm quickly losing touch with all the new stuff that's happening. I haven't done any of AJAX.

Also it is intriguing to read about the embedded application work that Amazon and Google are supporting in the clouds. Google is supporting Python it appears and Amazon is PHP but both are promising more languages. Quite an exciting time in web development.