473,405 Members | 2,171 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

web authoring tools

As is easily noticed, my website sucks. Enough people keep ragging
on me about it, that maybe I'll up and do something about it. However,
I currently have FrontPage 2000 and I hate it. Ideally, I would like an
open source website + html design tool implemented in Python, so
that possibly someday I can fix whatever's broken about it. That said,
I would like a tool that actually saves me work as a web designer. I
don't feel that FrontPage 2000 does this. I'm saying there's a certain
level of maturity that has to exist in the app, it can't be some "alpha
quality" thing. If you know of such a beast in Python, please
let me know.

Here are some examples of reasonable website designs for my purposes as
a game developer or consultant:

http://www.igda.org/seattle/
http://www.cyphondesign.com/
http://www.alphageeksinc.com/
http://www.gamasutra.com

The first 3 sites "breathe well," they aren't cluttered. Gamasutra is a
little cluttered, but has good aesthetics. Also when I write articles
for other people's consumption, this is the standard I'd measure them
by.

I'm not sure if I want a blogging capability, or something more like
Gamasutra. That's a quality vs. quantity issue. I don't know if I want
a web forum. I generally don't like web forums and I've tended to let
Yahoo! Groups do the mailing list job.

I believe my webhost can take either Unix or Windows stuff. My local
machine where I do all development is Windows. I'd be interested to
know about Linux solutions too though.

--
Cheers, www.indiegamedesign.com
Brandon Van Every Seattle, WA

"The pioneer is the one with the arrows in his back."
- anonymous entrepreneur
Jul 18 '05 #1
9 1545
On Mon, 11 Apr 2005 05:14:47 GMT, "Brandon J. Van Every"
<my*******************@mycompanyname.com> wrote:
As is easily noticed, my website sucks. Enough people keep ragging
on me about it, that maybe I'll up and do something about it. However,
I currently have FrontPage 2000 and I hate it. Ideally, I would like an
open source website + html design tool implemented in Python, so
that possibly someday I can fix whatever's broken about it. That said,
I would like a tool that actually saves me work as a web designer. I
don't feel that FrontPage 2000 does this. I'm saying there's a certain
level of maturity that has to exist in the app, it can't be some "alpha
quality" thing. If you know of such a beast in Python, please
let me know.
I've always found a html aware text editor works best. Programs like
front page tend to try to insert things when and where you don't want
them. So you end up fighting the program and/or having to get their
bugs out of your web site. I'm sure there are probably some good
visual what you see is what you get editors, but Just have't found any
I like.

I would use commercial software package if I was doing an internet
store with an inventory database, and shopping carts. That's a
situation where you want your web sight to be in a standard proven
format. But you hand over a lot of design freedom also.
Here are some examples of reasonable website designs for my purposes as
a game developer or consultant:

http://www.igda.org/seattle/
http://www.cyphondesign.com/
http://www.alphageeksinc.com/
http://www.gamasutra.com
These top three where done with text editors. If you view the source,
you will notice the formatting has good consistent indenting and there
isn't a lot of extra tags or other information needlessly inserted.

They make good use of CSS for formatting also. If this is the type of
thing you want, save the pages and study how they did it. Use your
own text and graphics of course.

The fourth one in your list uses something called SiteCatalyst, which
I'm not familiar with. The web site to it is listed in the source.
You'll notice it has empty spaces and inconsistent indenting due to it
being assembled from templates.
I'm not sure if I want a blogging capability, or something more like
Gamasutra. That's a quality vs. quantity issue. I don't know if I want
a web forum. I generally don't like web forums and I've tended to let
Yahoo! Groups do the mailing list job.
Since you're unsure of what you want, you should probably follow the
rule, 'if in doubt, leave it out', you can always expand or add
features later.
I believe my webhost can take either Unix or Windows stuff. My local
machine where I do all development is Windows. I'd be interested to
know about Linux solutions too though.


Here's a good place to start, to find python web site software.

http://www.python.org/topics/web/
Hope this helped,

Cheers,
Ron

Jul 18 '05 #2
Brandon J. Van Every wrote:
Ideally, I would like an open source website + html design tool implemented
in Python


didn't you just say that ideally, you wanted a tool written in lisp or scheme?

did you try the one frank wrote for you?

http://groups-beta.google.com/group/...f9eb74bfd16310

(for python tools, start here: http://www.python.org/topics/web/ )

</F>

Jul 18 '05 #3
"Fredrik Lundh" <fr*****@pythonware.com> wrote in
news:ma**************************************@pyth on.org:
Brandon J. Van Every wrote:
Ideally, I would like an open source website + html design tool
implemented in Python
didn't you just say that ideally, you wanted a tool written in lisp or
scheme?


I honestly got a little tired of the tone of the answers I was getting
from that crowd, about what an idiot I am. My query there is still
ongoing and perhaps genuinely useful answers will arise, but in the
interest of time I thought I'd initiate Plan B. The Python universe has
a much larger cadre of web designers than the Lisp / Scheme universe, so
I figured the answers here would be of a higher quality. I don't think
Python is appropriate to all programming tasks, but it's definitely
appropriate to web development and I wouldn't mind using / contributing
to open source web development tools written in it.
did you try the one frank wrote for you?

http://groups-beta.google.com/group/...g/6df9eb74bfd1
6310
No, because although it's amusing, it doesn't accomplish anything I wish
to accomplish. Currently my website does exactly what I intend it to do.
I want to see how long it is before I actually do something about it, and
when people say "Your website is down" it actually amuses me. Plus
reminds me that perhaps I should do something.
(for python tools, start here: http://www.python.org/topics/web/ )


Thanks!
--
Cheers, www.indiegamedesign.com
Brandon Van Every Seattle, WA

"The pioneer is the one with the arrows in his back."
- anonymous entrepreneur
Jul 18 '05 #4
Ron_Adam <radam2_@_tampabay.rr.com> wrote in

http://www.igda.org/seattle/
http://www.cyphondesign.com/
http://www.alphageeksinc.com/
http://www.gamasutra.com


These top three where done with text editors. If you view the source,
you will notice the formatting has good consistent indenting and there
isn't a lot of extra tags or other information needlessly inserted.

They make good use of CSS for formatting also. If this is the type of
thing you want, save the pages and study how they did it. Use your
own text and graphics of course.


Thanks for that insight. It may not be the answer I exactly wanted to
hear, but it does ring true with regards to my FrontPage 2000 experience.
--
Cheers, www.indiegamedesign.com
Brandon Van Every Seattle, WA

"The pioneer is the one with the arrows in his back."
- anonymous entrepreneur
Jul 18 '05 #5
Ideally, I would like an open source website + html design tool
implemented in Python


didn't you just say that ideally, you wanted a tool written in lisp or
scheme?


I honestly got a little tired of the tone of the answers I was getting
from that crowd, about what an idiot I am. My query there is still


You mean you are interested in a web application programming framework in
the spirit of Seaside, or in a HTML/CSS editor in the spirit of
Dreamweaver ?
Jul 18 '05 #6
=?iso-8859-15?Q?Pierre-Fr=E9d=E9ric_Caillaud?= <pe****@free.fr> wrote in
news:op.so2yz4blqfv3if@localhost:
Ideally, I would like an open source website + html design tool
implemented in Python

didn't you just say that ideally, you wanted a tool written in lisp
or scheme?


I honestly got a little tired of the tone of the answers I was
getting from that crowd, about what an idiot I am. My query there is
still


You mean you are interested in a web application programming
framework in
the spirit of Seaside, or in a HTML/CSS editor in the spirit of
Dreamweaver ?


I believe Dreamweaver-esque. I see myself writing articles and eventually
doing snazzy eye candy layouts. I do not see myself engaging in elaborate
flow control or anything terribly programmatic. I want to concentrate on
the content, not the mechanism.
--
Cheers, www.indiegamedesign.com
Brandon Van Every Seattle, WA

"The pioneer is the one with the arrows in his back."
- anonymous entrepreneur
Jul 18 '05 #7
Brandon J. Van Every wrote:
=?iso-8859-15?Q?Pierre-Fr=E9d=E9ric_Caillaud?= <pe****@free.fr> wrote in
news:op.so2yz4blqfv3if@localhost:

>Ideally, I would like an open source website + html design tool
>implemented in Python

didn't you just say that ideally, you wanted a tool written in lisp
or scheme?

I honestly got a little tired of the tone of the answers I was
getting from that crowd, about what an idiot I am. My query there is
still


You mean you are interested in a web application programming
framework in
the spirit of Seaside, or in a HTML/CSS editor in the spirit of
Dreamweaver ?

I believe Dreamweaver-esque. I see myself writing articles and eventually
doing snazzy eye candy layouts. I do not see myself engaging in elaborate
flow control or anything terribly programmatic. I want to concentrate on
the content, not the mechanism.

I've stayed out of this one so far because of a natural disinclination
to join religious discussions, but sine we are now talking good common
sense I'd like to ask whether a *batch-oriented* system for folding
database content into a static web site with common look-and-feel would
be of interest.

Now PyCon is over I've been able to blog about the techniques used to
generate the web site at http://www.holdenweb.com/, and most recently
about using reStructured Text in the database to ease authorship
problems for the less-taxing content. See

http://www.holdenweb.com/blogs/2005/...nted-post.html

to determine whether the overall approach would work for you.

regards
Steve
--
Steve Holden +1 703 861 4237 +1 800 494 3119
Holden Web LLC http://www.holdenweb.com/
Python Web Programming http://pydish.holdenweb.com/

Jul 18 '05 #8
Steve Holden <st***@holdenweb.com> wrote in
Brandon J. Van Every wrote:

I believe Dreamweaver-esque. I see myself writing articles and
eventually doing snazzy eye candy layouts. I do not see myself
engaging in elaborate flow control or anything terribly programmatic.
I want to concentrate on the content, not the mechanism.

I've stayed out of this one so far because of a natural disinclination
to join religious discussions, but sine we are now talking good common
sense I'd like to ask whether a *batch-oriented* system for folding
database content into a static web site with common look-and-feel
would be of interest.

Now PyCon is over I've been able to blog about the techniques used to
generate the web site at http://www.holdenweb.com/, and most recently
about using reStructured Text in the database to ease authorship
problems for the less-taxing content. See

http://www.holdenweb.com/blogs/2005/...implemented-po
st.html

to determine whether the overall approach would work for you.


I have 2 goals:

1) to worry about plumbing as little as possible, as I generate articles
and content. Once a framework is established, this can be handled
"cookie cutter."

2) to create a unique brand identity based on good eye candy. For this
part of the problem, the website cannot look generic. At a minimum, I
would need a facility that allows me to painlessly arrange my own 2D
artwork.

--
Cheers, www.indiegamedesign.com
Brandon Van Every Seattle, WA

"The pioneer is the one with the arrows in his back."
- anonymous entrepreneur
Jul 18 '05 #9
Brandon J. Van Every wrote:
Steve Holden <st***@holdenweb.com> wrote in
Brandon J. Van Every wrote:
I believe Dreamweaver-esque. I see myself writing articles and
eventually doing snazzy eye candy layouts. I do not see myself
engaging in elaborate flow control or anything terribly programmatic.
I want to concentrate on the content, not the mechanism.
I've stayed out of this one so far because of a natural disinclination
to join religious discussions, but sine we are now talking good common
sense I'd like to ask whether a *batch-oriented* system for folding
database content into a static web site with common look-and-feel
would be of interest.

Now PyCon is over I've been able to blog about the techniques used to
generate the web site at http://www.holdenweb.com/, and most recently
about using reStructured Text in the database to ease authorship
problems for the less-taxing content. See

http://www.holdenweb.com/blogs/2005/...implemented-po
st.html

to determine whether the overall approach would work for you.

I have 2 goals:

1) to worry about plumbing as little as possible, as I generate articles
and content. Once a framework is established, this can be handled
"cookie cutter."

The purpose of the software is precisely to deliver database content in
a "fully-plumbed" fashion. You still have to maintain the content, and
there are clearly no drag-and-drop tools, but a set of database rows in
a page table is what the system uses to generate www.holdenweb.com.
2) to create a unique brand identity based on good eye candy. For this
part of the problem, the website cannot look generic. At a minimum, I
would need a facility that allows me to painlessly arrange my own 2D
artwork.

That's what stylesheets are for, and this design is fully stylesheet-driven.

regards
Steve
--
Steve Holden +1 703 861 4237 +1 800 494 3119
Holden Web LLC http://www.holdenweb.com/
Python Web Programming http://pydish.holdenweb.com/

Jul 18 '05 #10

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...
32
by: Roman | last post by:
Hello group, I'm wondering which authoring tool would be most flexible and useful for large websites using only html, css and javascrip. So far I've tried Dreamweaver MX, but have heard BBEdit...
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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...
0
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
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...

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.