LinuxQuestions.org
Register a domain and help support LQ
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices

Reply
 
LinkBack Search this Thread
Old 07-23-2005, 11:28 AM   #1
rblampain
Member
 
Registered: Aug 2004
Location: Western Australia
Distribution: Debian Lenny
Posts: 761

Rep: Reputation: 31
HTML editor


I have a large web site in the testing stage, it's all been done by hand and I have no experience at all with any HTML editor.
Soon I'll have to make this site world readable, this will require a few changes like links etc.

Can anyone suggest what I can use? Give a few hints?

I'll probably need features like global search & replace. I started looking at Quanta but couldn't find any "strip HTML tags" function. I don't need flashy features. What I can also use is a translation option (for example from English to French or German etc)

Thank you for your help.

Last edited by rblampain; 07-23-2005 at 11:31 AM.
 
Old 07-23-2005, 11:35 AM   #2
jailbait
Guru
 
Registered: Feb 2003
Location: Blue Ridge Mountain
Distribution: Debian Squeeze, Fedora 14
Posts: 7,268

Rep: Reputation: 83
"Can anyone suggest what I can use?"

Like you I went from doing HTML by hand to using a special purpose HTML editor. I tried several HTML editors and settled on Bluefish. That was long enough in the past that I don't remember the pros and cons of the other HTML editors that I looked at.

http://sourceforge.net/projects/bluefish/

----------------------------
Steve Stites
 
Old 07-23-2005, 11:50 AM   #3
Nathanael
Member
 
Registered: May 2004
Location: Karlsruhe, Germany
Distribution: debian, gentoo, os x (darwin), ubuntu
Posts: 940

Rep: Reputation: 31
vi, kate, gedit
 
Old 07-23-2005, 11:55 AM   #4
reddazz
Guru
 
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298

Rep: Reputation: 70
You could also take a look at nvu.
 
Old 07-23-2005, 08:36 PM   #5
sekelsenmat
Member
 
Registered: Apr 2005
Location: São Paulo - Brazil
Distribution: Mageia Linux 1
Posts: 353

Rep: Reputation: 30
Re: HTML editor

Quote:
Originally posted by rblampain
I started looking at Quanta but couldn't find any "strip HTML tags" function.
What do you mean by "strip html tags"??? Do you mean clean the code? This can be done by hand quite quickly. In fact, html is done better by hand.

I use Quanta, but I almost donīt use itīs visual stuff. I just like itīs color scheme and itīs powerful html validator.
 
Old 07-23-2005, 08:41 PM   #6
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid
Posts: 4,455
Blog Entries: 11

Rep: Reputation: 389Reputation: 389Reputation: 389Reputation: 389
W3C Amaya
Amaya is a complete online web browsing and authoring environment and comes equipped with a WYSIWYG style of interface, similar to that of the most popular commercial browsers. With such an interface, users do not need to know the HTML or CSS languages.
NVU
NVU (pronounced N-view, for a "new view") makes managing a web site a snap. Now anyone can create web pages and manage a website with no technical expertise or knowledge of HTML.
Quanta Plus.
Quanta Plus is a web development tool for the GNU/Linux K Desktop Environment. Quanta is designed for quick web development and is rapidly becoming a mature editor with a number of great features and lies at the heart of the KDE Web Dev suite of tools.
Bluefish
Bluefish is a powerful editor for experienced web designers and programmers.
Bluefish supports many programming and markup languages, but it focuses on editing dynamic and interactive websites.
Mozilla Composer
Mozilla's HTML editor keeps getting better with dynamic image and table resizing, quick insert and delete of table cells, improved CSS support, and support for positioned layers. For all your simple documents and website projects, Composer is all you need.
SCREEM
Screem is a web development environment. It's purpose is to increase productivity when constructing a site, by providing quick access to commonly used features. While it is written for use with the GNOME desktop environment in mind it does not specifically require you to be running it, just have the libraries installed.
Unlike most other HTML editors SCREEM does not provide a WYSIWYG display of pages. Instead you are presented with the raw html source in its editor window.
Scite
ScitE is a GUI-based single-document editor which uses the Scintilla editor component. It rapidly styles most common programming languages with good control over how syntactic elements are displayed, and features folding for C++, C, Java, JavaScript, and Python. Styling of HTML also styles embedded scripts written in VBScript, Javascript, or Python.

For Windows user I would recommend HTML Kit
HTML-Kit is a full-featured, highly customizable and free development environment that can be used to create, edit, validate, preview and publish web pages and scripts. Despite its name and the light download size, HTML-Kit is a multi-purpose tool that has support for several scripting and programming languages. Over 400 free plugins are available for extending and customizing HTML-Kit to fit the way you work.

You can use Tidy to clean up your code.

Of course you can also edit by hand using any text editor.

Last edited by craigevil; 07-23-2005 at 08:45 PM.
 
Old 07-23-2005, 10:11 PM   #7
jlliagre
Moderator
 
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris10, Solaris 11, Ubuntu, OEL
Posts: 9,165

Rep: Reputation: 243Reputation: 243Reputation: 243
elvis (vi clone) has a cool html mode.
 
Old 07-24-2005, 12:18 AM   #8
rblampain
Member
 
Registered: Aug 2004
Location: Western Australia
Distribution: Debian Lenny
Posts: 761

Original Poster
Rep: Reputation: 31
I still have one main question unanswered, I think I should have explained myself with a little more clarity.

What I mean by "global search & replace" is a search & replace in a whole site, for example I have over a hundred pages with links like:
"http://192.168.1.13/this.prog"
and that has to be replaced by:
"http://www.mydomain/cgi-bin/this.prog" or
"https://www.mydomain/cgi-bin/this.prog"

The editors I have on my machine don't do it (emacs, gedit, quanta), and i will know much faster which does by asking you, if anyone knows, than by investigating all these browsers.

A few years ago I used a Windows software named "Coffeecup" that did it very nicely.

Thank you all for your valuable comments.
 
Old 07-24-2005, 05:09 PM   #9
eddiebaby1023
Member
 
Registered: May 2005
Posts: 378

Rep: Reputation: 32
Use perl. A command like
Code:
perl -pi.bak -e 's/oldstring/newstring/g'  filenames
will change oldstring to newstring in all files named, saving the original version with a .bak suffix. To do it on all files:
Code:
find <startdir> -name "*.html" -print | xargs perl -pi.bak -e 's/oldstring/newstring/g'
 
Old 07-26-2005, 09:30 AM   #10
rblampain
Member
 
Registered: Aug 2004
Location: Western Australia
Distribution: Debian Lenny
Posts: 761

Original Poster
Rep: Reputation: 31
Thanks to eddiebaby1023.
It looks simpler than loading another browser.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
HTML Editor? SuSE_User Linux - Software 17 12-29-2004 02:46 AM
HTML Editor MrTheGeek Linux - General 9 12-14-2004 05:26 AM
HTML Editor sduffy89 Linux - Software 4 08-25-2004 11:01 AM
HTML Editor Pauli General 15 04-17-2004 09:59 PM
HTML Editor :( g0dzuki99 Linux - Software 7 11-25-2002 02:33 PM


All times are GMT -5. The time now is 03:35 PM.

Main Menu
 
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration