Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #12995

Re: Create an index from a webpage [RANT, DNFTT]

Path csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!xlned.com!feeder5.xlned.com!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <rosuav@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.040
X-Spam-Evidence '*H*': 0.92; '*S*': 0.00; 'python': 0.08; 'received:209.85.160.174': 0.09; 'received:mail- gy0-f174.google.com': 0.09; 'run.': 0.09; 'files).': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'subject:Create': 0.16; 'wrote:': 0.16; 'trying': 0.21; "doesn't": 0.22; 'header:In-Reply-To:1': 0.22; 'exist,': 0.23; 'sep': 0.23; 'pm,': 0.24; 'xml': 0.25; 'subject:]': 0.26; 'message- id:@mail.gmail.com': 0.29; 'updated': 0.29; 'script': 0.29; 'closer': 0.30; 'least': 0.31; 'chris': 0.32; 'actually': 0.33; 'there': 0.33; 'to:addr:python-list': 0.33; '(as': 0.34; 'received:209.85.160': 0.35; 'fri,': 0.36; 'example,': 0.37; 'impression': 0.37; 'opposed': 0.37; 'but': 0.37; 'page': 0.37; 'something': 0.37; 'allows': 0.38; 'some': 0.38; 'received:google.com': 0.38; 'received:209.85': 0.38; 'subject:: ': 0.39; 'getting': 0.39; 'to:addr:python.org': 0.39; 'subject:from': 0.40; 'might': 0.40; 'basis': 0.61; 'website.': 0.64; 'google.': 0.64; 'stated': 0.67; 'ideas.': 0.73; '12:43': 0.84; 'map.': 0.84
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=nF7/w4NwQZLlnOMj/R71TnVDIIHtbtACudB0AAkjHtY=; b=leUxN0LfrhaRRX/gxy0IwIAsJ5lW2NhCe7txfnWPGfN38oiNYbw7lf6qoXzNJRDNfK k7/IDyRYUUa78l+gvFfSXqDZIYOmLRFBLXBXv4rFHVd5eXHda9k2pWluWQoYa0/7au/a HzAFHLvx1e3RypdjW99I1xPnzESXPyfUqDo2c=
MIME-Version 1.0
In-Reply-To <4E697D6E.4010101@fossworkflowguides.com>
References <mailman.874.1315484806.27778.python-list@python.org> <1537032.qVoOGUtdWV@PointedEars.de> <4e68db21$0$30002$c3e8da3$5496439d@news.astraweb.com> <mailman.886.1315525252.27778.python-list@python.org> <4e69769f$0$29987$c3e8da3$5496439d@news.astraweb.com> <4E697D6E.4010101@fossworkflowguides.com>
Date Fri, 9 Sep 2011 12:59:09 +1000
Subject Re: Create an index from a webpage [RANT, DNFTT]
From Chris Angelico <rosuav@gmail.com>
To python-list@python.org
Content-Type text/plain; charset=ISO-8859-1
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.12
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.893.1315537151.27778.python-list@python.org> (permalink)
Lines 21
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1315537151 news.xs4all.nl 2495 [2001:888:2000:d::a6]:38316
X-Complaints-To abuse@xs4all.nl
Xref x330-a1.tempe.blueboxinc.net comp.lang.python:12995

Show key headers only | View raw


On Fri, Sep 9, 2011 at 12:43 PM, Simon Cropper
<simoncropper@fossworkflowguides.com> wrote:
> At present I am definitely getting the impression that my assumption that
> something like this' must out there', is wrong.
>
> I have found a XML-Sitemaps Generator at http://www.xml-sitemaps.com,
> this page allows you to create the XML files that can be uploaded to google.
> But as stated I don't actually want what people now call 'sitemaps' I want a
> automatically updated 'index / contents page' to my website. For example, if
> I add a tutorial or update any of my links I want the 'global contents page'
> to be updated when the python script is run.

What you're looking at may be closer to autogenerated documentation
than to a classic site map. There are a variety of tools that generate
HTML pages on the basis of *certain information found in* all the
files in a directory (as opposed to the entire content of those
files). What you're trying to do may be sufficiently specific that it
doesn't already exist, but it might be worth having a quick look at
autodoc/doxygen - at least for some ideas.

Chris Angelico

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Create an index from a webpage Simon Cropper <simoncropper@fossworkflowguides.com> - 2011-09-08 22:26 +1000
  Re: Create an index from a webpage Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2011-09-08 14:38 +0200
    Re: Create an index from a webpage Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2011-09-09 01:11 +1000
      Re: Create an index from a webpage [RANT, DNFTT] Simon Cropper <simoncropper@fossworkflowguides.com> - 2011-09-09 09:40 +1000
        Re: Create an index from a webpage [RANT, DNFTT] "Rhodri James" <rhodri@wildebst.demon.co.uk> - 2011-09-09 01:32 +0100
          Re: Create an index from a webpage [RANT, DNFTT] Simon Cropper <simoncropper@fossworkflowguides.com> - 2011-09-09 12:09 +1000
            Re: Create an index from a webpage [RANT, DNFTT] Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2011-09-09 12:16 +1000
            Re: Create an index from a webpage [RANT, DNFTT] Duncan Booth <duncan.booth@invalid.invalid> - 2011-09-09 10:29 +0000
        Re: Create an index from a webpage [RANT, DNFTT] Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2011-09-09 12:14 +1000
          Re: Create an index from a webpage [RANT, DNFTT] Simon Cropper <simoncropper@fossworkflowguides.com> - 2011-09-09 12:43 +1000
          Re: Create an index from a webpage [RANT, DNFTT] Chris Angelico <rosuav@gmail.com> - 2011-09-09 12:59 +1000
          Re: Create an index from a webpage [RANT, DNFTT] Simon Cropper <simoncropper@fossworkflowguides.com> - 2011-09-09 13:20 +1000
          Re: Create an index from a webpage [RANT, DNFTT] Chris Angelico <rosuav@gmail.com> - 2011-09-09 13:46 +1000

csiph-web