[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

static website generation

Martin DeMello

7/10/2006 8:49:00 AM

Anyone have a static site generation tool to recommend? I'm looking at
webgen, which seems pretty good, but if there are other nice ones out
there I'd like to spend a few days comparing them before diving in.

martin

5 Answers

jmg3000

7/10/2006 2:06:00 PM

0

On 7/10/06, Martin DeMello <martindemello@gmail.com> wrote:
> Anyone have a static site generation tool to recommend? I'm looking at
> webgen, which seems pretty good, but if there are other nice ones out
> there I'd like to spend a few days comparing them before diving in.
>
> martin

I just write all my source in [Markdown][1] (processing it with
[BlueCloth][2]) and have a little script rummage through them
processing the ones that are newer than their generated html
counterparts. Actually, I should probably be using rake for that, but
am doing it manually at the moment.

---John

jmg3000

7/10/2006 2:08:00 PM

0

On 7/10/06, John Gabriele <jmg3000@gmail.com> wrote:
> On 7/10/06, Martin DeMello <martindemello@gmail.com> wrote:
> > Anyone have a static site generation tool to recommend? I'm looking at
> > webgen, which seems pretty good, but if there are other nice ones out
> > there I'd like to spend a few days comparing them before diving in.
> >
> > martin
>
> I just write all my source in [Markdown][1] (processing it with
> [BlueCloth][2]) and have a little script rummage through them
> processing the ones that are newer than their generated html
> counterparts. Actually, I should probably be using rake for that, but
> am doing it manually at the moment.
>
> ---John

Gah!

[1]: http://daringfireball.net/projects...
[2]: http://www.deveiate.org/projects...

Martin DeMello

7/10/2006 6:42:00 PM

0

On 7/10/06, John Gabriele <jmg3000@gmail.com> wrote:
> On 7/10/06, Martin DeMello <martindemello@gmail.com> wrote:
> > Anyone have a static site generation tool to recommend? I'm looking at
> > webgen, which seems pretty good, but if there are other nice ones out
> > there I'd like to spend a few days comparing them before diving in.
> >
> > martin
>
> I just write all my source in [Markdown][1] (processing it with
> [BlueCloth][2]) and have a little script rummage through them
> processing the ones that are newer than their generated html
> counterparts. Actually, I should probably be using rake for that, but
> am doing it manually at the moment.

Thanks John; I did consider that sort of approach, but this is a
rather large site, so I'm looking for something that will give me a
bit more of a "helping hand" in terms of standardised navigation,
central configuration of repeated elements, etc.

martin

Joel VanderWerf

7/10/2006 6:45:00 PM

0

Martin DeMello wrote:
> rather large site, so I'm looking for something that will give me a
> bit more of a "helping hand" in terms of standardised navigation,
> central configuration of repeated elements, etc.

Never used it but...

http://www.zenspider.com/ZSS/Produc...

I'll be curious know what you end up with.

--
vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407

Martin DeMello

7/10/2006 6:59:00 PM

0

On 7/11/06, Joel VanderWerf <vjoel@path.berkeley.edu> wrote:
> Martin DeMello wrote:
> > rather large site, so I'm looking for something that will give me a
> > bit more of a "helping hand" in terms of standardised navigation,
> > central configuration of repeated elements, etc.
>
> Never used it but...
>
> http://www.zenspider.com/ZSS/Produc...
>
> I'll be curious know what you end up with.

Thanks - will give it a spin too!

martin