I think that this wouldn't be too hard in the following scenario: a) Docudo is being used for main TG documentation b) You want to install another instance of Docudo someplace else (like on your laptop, local network, whatever)
Is this what you mean? If so, then it should be pretty easy, since the back end of Docudo is just a SVN repository. You could use "svn export" to a local repository if nothing else. Kevin H. PS. I just finished a "6-week" project that actually took 14 weeks (ugh) and monopolized ALL of my free time. Since Ronald Jaramillo hasn't been around in a while, that means basically noone has been working on Docudo for the last several months. Hopefully I'll have some time in the near future to get back working on it (starting in maybe a week or two, or maybe after the new year). Anyone with any ideas/feature requests/free time/offers of coding help/etc. should post them either here or (even better) the Docudo list. There's also a Trac at: http://trac.docudo.org/ . Thanks! On 12/1/06, Adam Jones <[EMAIL PROTECTED]> wrote: > > > > [EMAIL PROTECTED] wrote: > > parse this link may easier > > http://docs.turbogears.org/TitleIndex?action=titleindex > > > > ==================================== > > import urllib2 > > import re > > > > acquire_site = "http://docs.turbogears.org/" > > acquire_version = "1.0" > > doclist = "TitleIndex?action=titleindex" > > > > def get_doclist(): > > docs = urllib2.urlopen(acquire_site + doclist) > > targets = [] > > for link in docs.readlines(): > > if re.match(acquire_version, link): > > targets.append(link) > > print targets > > > > ============================== > > The above code simply filter and return the 1.0 docs list for us, > > the question is, what kind of the offline documents that users prefer > > to have? > > I would assume html, although I see two requests for pdf on > docs.tg.org/1.0 > > I think most people would be happy with offline docs in any form at > this point. > > When the switch happens to docudo I think it would be cool to have the > ability to install docudo* and have it import docs from the main site. > Nice combination of offline documentation and easy access to a fine > documentation system for your own project. > > * Note that I know absolutely nothing about docudo, so if this idea is > stupid/unfeasible blame my ignorance, not me. > > -Adam > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears Docs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears-docs?hl=en -~----------~----~----~----~------~----~------~--~---
