]> pere.pagekite.me Git - text-madewithcc.git/blobdiff - fixup-docbook.rb
Copyedited for Tribe of Noise
[text-madewithcc.git] / fixup-docbook.rb
index 7924145d25f36f75dfa308b807192a57137aae9b..fb72e87a26f49bfacdf5849a3672798c345cb452 100755 (executable)
@@ -38,8 +38,8 @@ xml.css('articleinfo').each do |node|
 XML
   node.last_element_child.after(<<'XML')
 <publisher>
-    <publishername>Gunnar Wolf</publishername>
-    <address><city>Mexico City</city></address>
+    <publishername>Instituto de Investigaciones Económicas</publishername>
+    <address><city>Universidad Nacional Autónoma de México</city></address>
 </publisher>
 XML
 end
@@ -85,7 +85,9 @@ log 0, 'remove empty notes/web links sections'
 end
 
 log 0, 'remove title from dedication'
-xml.css('dedication title')[0].content = ""
+if ! xml.css('dedication title').empty?
+  xml.css('dedication title')[0].content = ""
+end
 
 log 0, 'move legal notice to bookinfo'
 xml.css('book bookinfo')[0].last_element_child.after('<legalnotice>')