Re: [PyCS-devel] Outliner Directories and PyCS
Status: Alpha
Brought to you by:
myelin
|
From: Phillip P. <pp...@my...> - 2002-12-18 22:44:22
|
> >Check out the HTML source of linksammlung.html - it looks like there's > >an app running on subhonker6 that downloads .opml files and generates > >HTML directories out of them. Here's the URL to do it for your page: > > Aaarghl. Those Userland-programmers are driving me crazy with their > linking/fetching/transforming/stuffing/distributing stuff. Can't they > decide on what system to run their code? :-) Heh :-) There some logic behind it ... basically, anything that doesn't need to change once it's on the server is rendered by the client and uploaded. Anything that needs to be more dynamic is done on the server. In this case, your OPML could be generated by the client but the HTML had to be done by the server. > Ok, so that's not so easy to hack up, this calls for a bit more action. > Hmm. It shouldn't be too hard. All you need to do is: - fetch the OPML file (check authentication, validate filename, read file) - parse OPML into a tree - figure out which branch to display - display branch, putting in links as required Cheers, Phil :) |