Rev 4313: (Eric Siegerman) Don't generate HTML files for .txt's that are in file:///home/pqm/archives/thelove/bzr/%2Btrunk/

Canonical.com Patch Queue Manager pqm at pqm.ubuntu.com
Wed Apr 29 23:24:44 BST 2009


At file:///home/pqm/archives/thelove/bzr/%2Btrunk/

------------------------------------------------------------
revno: 4313
revision-id: pqm at pqm.ubuntu.com-20090429222437-n7rzr4tmlyl4jpiu
parent: pqm at pqm.ubuntu.com-20090429093347-5f59e9ix93s30x3r
parent: pub08 at davor.org-20090325184815-jni2cfu4ototu8lu
committer: Canonical.com Patch Queue Manager <pqm at pqm.ubuntu.com>
branch nick: +trunk
timestamp: Wed 2009-04-29 23:24:37 +0100
message:
  (Eric Siegerman) Don't generate HTML files for .txt's that are
  	transcluded.
modified:
  Makefile                       Makefile-20050805140406-d96e3498bb61c5bb
    ------------------------------------------------------------
    revno: 4202.5.1
    revision-id: pub08 at davor.org-20090325184815-jni2cfu4ototu8lu
    parent: pqm at pqm.ubuntu.com-20090325042012-23a6pm0mraw7g2kg
    committer: Eric Siegerman <pub08 at davor.org>
    branch nick: fix-doc-build
    timestamp: Wed 2009-03-25 14:48:15 -0400
    message:
      Don't generate HTML files for .txt's that are transcluded.
    modified:
      Makefile                       Makefile-20050805140406-d96e3498bb61c5bb
=== modified file 'Makefile'
--- a/Makefile	2009-03-23 14:59:43 +0000
+++ b/Makefile	2009-03-25 18:48:15 +0000
@@ -105,7 +105,32 @@
        doc/es/referencia-rapida/referencia-rapida.pdf \
        $(wildcard doc/es/guia-usuario/images/*.png)
 htm_files := $(patsubst %.txt, %.html, $(txt_files)) 
-dev_txt_files := $(wildcard $(addsuffix /*.txt, doc/developers))
+
+# doc/developers/*.txt files that should *not* be individually
+# converted to HTML
+dev_txt_nohtml := \
+	doc/developers/add.txt \
+	doc/developers/annotate.txt \
+	doc/developers/bundle-creation.txt \
+	doc/developers/commit.txt \
+	doc/developers/diff.txt \
+	doc/developers/directory-fingerprints.txt \
+	doc/developers/gc.txt \
+	doc/developers/incremental-push-pull.txt \
+	doc/developers/initial-push-pull.txt \
+	doc/developers/merge-scaling.txt \
+	doc/developers/missing.txt \
+	doc/developers/performance-contributing.txt \
+	doc/developers/performance-roadmap-rationale.txt \
+	doc/developers/performance-use-case-analysis.txt \
+	doc/developers/planned-change-integration.txt \
+	doc/developers/planned-performance-changes.txt \
+	doc/developers/revert.txt \
+	doc/developers/status.txt \
+	doc/developers/uncommit.txt
+
+dev_txt_all := $(wildcard $(addsuffix /*.txt, doc/developers))
+dev_txt_files := $(filter-out $(dev_txt_nohtml), $(dev_txt_all))
 dev_htm_files := $(patsubst %.txt, %.html, $(dev_txt_files)) 
 
 doc/en/user-guide/index.html: $(wildcard $(addsuffix /*.txt, doc/en/user-guide)) 




More information about the bazaar-commits mailing list