~ubuntu-branches/debian/squeeze/redland-bindings/squeeze

« back to all changes in this revision

Viewing changes to docs/fix-python-xhtml

  • Committer: Bazaar Package Importer
  • Author(s): Dave Beckett
  • Date: 2009-04-07 00:24:21 UTC
  • mfrom: (0.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090407002421-dce2r4otm5vqtheg
Tags: 1.0.8.1-2
* Use new sections ruby, php for librdf-ruby and php5-librdf respectively.
* Merge features from ubuntu packaging.  Thanks to Matthias Klose
  (not taking linker -Wl,--as-needed since that makes dyloading fail
  to pull in raptor symbols):
  debian/rules:
  - get python lib dir from distutils
  - make dh_pycentral use symlinks
  debian/python-librdf.examples:
  - add data/dc.rdf to examples dir and adjust example.py
    to point to it (Closes: #402612)
* Patch python/Makefile.in so it can allow the include dir to be
  overridden by the particular python version build in debian/rules
  using PYTHON_INCLUDES

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/perl
2
2
#
3
 
# $Id: fix-python-xhtml 10591 2006-03-05 08:22:09Z cmdjb $
4
 
#
5
3
# Format XHTML generated by pod2html (via tidy) for websites
6
4
#
7
5
# Usage: tidy ... pydoc.html | fix-python-xhtml OUTPUT-FILE
8
6
#
9
 
# (C) Copyright 2002 Dave Beckett - http://purl.org/net/dajobe/
 
7
# (C) Copyright 2002 Dave Beckett - http://www.dajobe.org/
10
8
# University of Bristol
11
9
#
12
10
 
79
77
  print OUT <<"EOT" if m%^</body>%;
80
78
<hr />
81
79
 
82
 
<p>(C) Copyright 2000-$year <a href="http://purl.org/net/dajobe/">Dave Beckett</a>, Copyright 2000-2005 <a href="http://www.bristol.ac.uk/">University of Bristol</a></p>
 
80
<p>(C) Copyright 2000-$year <a href="http://www.dajobe.org/">Dave Beckett</a>, Copyright 2000-2005 <a href="http://www.bristol.ac.uk/">University of Bristol</a></p>
83
81
 
84
82
EOT
85
83