473,473 Members | 1,895 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Web authoring tools on Macintosh OS X

I'm contemplating switching from Windows (long time user) to a
Macintosh (a system I know virtually nothing about), so I am
looking for equivalent (or better) programs for some tasks.

I do a little hobby web site (380 pages - maybe it expanded more
than I thought) using The Semware Editor (an old DOS editor) with
some HTML color coding add-ons, and CSE HTML validator to catch
typos, backed by validator.w3.org (when I remember).

At the moment it is all hand written in HTML 4.01 Strict pretty
much, with very plain HTML markup (a lot of it legacy stuff from
long ago) and a CSS file in each directory to give some visual
differences to each different topic area on the site. No
scripting at all. Only about a dozen pages with inappropriate
tables (I'll fix them next major rewrite). I also figure some of
my viewers are browsing with small screen PDAs or even mobile
phones, so I try to have everything that depends on CSS fail
gracefully.

Does anyone have any special favourites for Mac OS X HTML editor,
offline HTML and/or CSS validator, link checkers, or anything
else that might make clean web page generation easier for an
amateur?

This potential move also seemed an appropriate time to consider
moving some aspects of my site to database driven generation of
the web pages. This would only be for some of the pages. Lists
of boat trips, lists of programs, that sort of stuff, maybe
20-30% of the total pages, but harder to keep track of changes
because some items appear on multiple pages (and could be better
served by being on additional pages).

I was thinking offline generation of my pages on my local
machine, followed by uploading changed pages to the commercial
web server I use say once a week. I don't think I want to get
into generating pages on the fly on the server.

However in this area there seems a lot of almost conflicting
potential ways of doing the pages. Some of the texts I've seen
seem to indicate you should generate your material in XML, and
then convert into HTML. While I sort of like the idea of XML,
the books I've seen make this sound pretty complicated for a
hobby situation. Nor did it seem really clear which tools to
look for. To be honest, having looked at a couple of O'Reilly
books on XML, I'm not sure it is appropriate to a hobby user.

The other way seems to be to gather my raw information in a
database (for various reasons, some of it is most easily
collected and updated on a PDA while wandering around, so it
would probably end up as a CSV file). Then use scripts on some
sort of text extraction tool (Awk, Perl, PHP, Rebol, Rexx?) to
generate appropriate web pages. I know I'll have a bit of a
fight with whatever scripting language I choose, but once I get
one type of web page extracted, it will be a lot easier to write
other scripts for all the other web pages.

Has anyone any suggestions about approaches? Is there anything
particularly appropriate to OS X that I have ignored? It seems
to me that there would be many people in a similar situation, and
therefore there is probably some absolutely great, ready to use
tool out there, and I've just searched badly so far.

--
Eric Lindsay http://www.ericlindsay.com/airlie
Airlie Beach Qld Australia - Great Barrier Reef entry
Psion & Epoc site http://www.ericlindsay.com/epoc
Bait for spammers: root@localhost postmaster@localhost
admin@localhost abuse@localhost po********@127.0.0.1
Jul 20 '05 #1
2 2422
In article <40***************@news.bigpond.com>,
ja*****@ericlindsayINVALID.comDOMAIN (Eric Lindsay's spam trap) wrote:
I'm contemplating switching from Windows (long time user) to a
Macintosh (a system I know virtually nothing about), so I am
looking for equivalent (or better) programs for some tasks.

I do a little hobby web site (380 pages - maybe it expanded more
than I thought) using The Semware Editor (an old DOS editor) with
some HTML color coding add-ons, and CSE HTML validator to catch
typos, backed by validator.w3.org (when I remember).

At the moment it is all hand written in HTML 4.01 Strict pretty
much, with very plain HTML markup (a lot of it legacy stuff from
long ago) and a CSS file in each directory to give some visual
differences to each different topic area on the site. No
scripting at all. Only about a dozen pages with inappropriate
tables (I'll fix them next major rewrite). I also figure some of
my viewers are browsing with small screen PDAs or even mobile
phones, so I try to have everything that depends on CSS fail
gracefully.

Does anyone have any special favourites for Mac OS X HTML editor,
offline HTML and/or CSS validator, link checkers, or anything
else that might make clean web page generation easier for an
amateur?


Balthisar Tidy <http://tidy.sourceforge.net/> is the MacOS X version of
the HTML Tidy project and is a must have for anyone want to make sure their
pages is valid.

As far as authoring is concerned I have found that using something that
generates HTML with the least amount of errors and using a text editor to
correct common gafts (like AppleWorks use of <br><br> rather than </p><p>
or Netscape composer using numberical values like “ instead of
&rdquo;) and then throw the corrected file at Balthisar Tidy for the final
clean up is the best way to go.

I have found that AppleWorks genrates the least number of boneheaded HTML
glitchs and it HTML pages are straight forward to clean up using Tex-Edit
pro for the final clean up via Balthisar Tidy.

I use Link Checker X for my pages and it works as good as the now defunk
Big Brother program did. Note that neither program will validates ftp
links so if you have a lot of those you are going to have problems.

Hope this little bit helps.
Jul 20 '05 #2
On 2/12/04 11:37 PM, in article
bg**************************@news.zianet.com, "Bruce Grubb"
<bg****@zianet.com> wrote:
In article <40***************@news.bigpond.com>,
ja*****@ericlindsayINVALID.comDOMAIN (Eric Lindsay's spam trap) wrote:
I'm contemplating switching from Windows (long time user) to a
Macintosh (a system I know virtually nothing about), so I am
looking for equivalent (or better) programs for some tasks.

I do a little hobby web site (380 pages - maybe it expanded more
than I thought) using The Semware Editor (an old DOS editor) with
some HTML color coding add-ons, and CSE HTML validator to catch
typos, backed by validator.w3.org (when I remember).

At the moment it is all hand written in HTML 4.01 Strict pretty
much, with very plain HTML markup (a lot of it legacy stuff from
long ago) and a CSS file in each directory to give some visual
differences to each different topic area on the site. No
scripting at all. Only about a dozen pages with inappropriate
tables (I'll fix them next major rewrite). I also figure some of
my viewers are browsing with small screen PDAs or even mobile
phones, so I try to have everything that depends on CSS fail
gracefully.

Does anyone have any special favourites for Mac OS X HTML editor,
offline HTML and/or CSS validator, link checkers, or anything
else that might make clean web page generation easier for an
amateur?


Balthisar Tidy <http://tidy.sourceforge.net/> is the MacOS X version of
the HTML Tidy project and is a must have for anyone want to make sure their
pages is valid.

As far as authoring is concerned I have found that using something that
generates HTML with the least amount of errors and using a text editor to
correct common gafts (like AppleWorks use of <br><br> rather than </p><p>
or Netscape composer using numberical values like “ instead of
&rdquo;) and then throw the corrected file at Balthisar Tidy for the final
clean up is the best way to go.

I have found that AppleWorks genrates the least number of boneheaded HTML
glitchs and it HTML pages are straight forward to clean up using Tex-Edit
pro for the final clean up via Balthisar Tidy.

I use Link Checker X for my pages and it works as good as the now defunk
Big Brother program did. Note that neither program will validates ftp
links so if you have a lot of those you are going to have problems.

Hope this little bit helps.

I use shareware call HTML Creator. It costs only $15 to register. It works
great. Plus after you have written your webpage, you can test it out on the
fly by choosing any browser that you have on you computer.

Jul 20 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Jan Roland Eriksson | last post by:
Archive-name: www/stylesheets/newsgroup-faq Posting-Frequency: twice a week (mondays and thursdays) Last-modified: March 10, 2001 Version: 1.95 URL: http://css.nu/faq/ciwas-mFAQ.html Maintainer:...
2
by: Jan Roland Eriksson | last post by:
Archive-name: www/stylesheets/newsgroup-faq Posting-Frequency: once a week Last-modified: 2004-07-26 Version: 2.00 URL: <http://css.nu/faq/ciwas-mFAQ.html> Maintainer: Jan Roland Eriksson...
0
by: Jan Roland Eriksson | last post by:
Archive-name: www/stylesheets/newsgroup-faq Posting-Frequency: once a week Last-modified: 2004-07-26 Version: 2.00 URL: <http://css.nu/faq/ciwas-mFAQ.html> Maintainer: Jan Roland Eriksson...
0
by: Jan Roland Eriksson | last post by:
Archive-name: www/stylesheets/newsgroup-faq Posting-Frequency: once a week Last-modified: 2004-07-26 Version: 2.00 URL: <http://css.nu/faq/ciwas-mFAQ.html> Maintainer: Jan Roland Eriksson...
7
by: Ron L | last post by:
I am at the beginning of a new project, and want to have my developers work on the Help files as we are developing the new application forms. Since most of my previous work has been in the ASP...
6
by: d.warnermurray | last post by:
I am doing a project for school that involves creating help files for a html authoring tool. If you could help me with answers to some questions it would really help. 1. What tasks do you expect...
2
by: Eric Lindsay | last post by:
Is this still the right place to discuss pages written in XHTML+XML and whether browsers treat them as XML or as HTML? I realise that Internet Explorer doesn't like XHTML pages served as...
3
by: Priyank | last post by:
Nvu - The Complete Web Authoring System for Linux Click Here To Download : http://downloadhub.uni.cc/category/detail.php?category=3&sub=38&id=5851 * WYSIWYG editing of pages, making web...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.