]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/paper-outputter.cc
* input/regression/beam-quanting-horizontal.ly: update texidoc
[lilypond.git] / lily / paper-outputter.cc
index 796f94079c2db0f6193f6c069ba5facd98fdd8ab..5f681a6bfff7231d67d7c0d8a4ca2f9985d35726 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
@@ -23,6 +23,8 @@
 #include "lily-version.hh"
 #include "paper-def.hh"
 #include "input-file-results.hh"
+#include "ly-modules.hh"
+
 
 
 /*
@@ -37,7 +39,10 @@ Paper_outputter::Paper_outputter (String name)
   
   file_ = scm_open_file (scm_makfrom0str (name.to_str0 ()),
                            scm_makfrom0str ("w"));
-  
+
+  /*
+    ugh.
+   */
   SCM exp = scm_list_n (ly_symbol2scm ("find-dumper"),
                        scm_makfrom0str (output_format_global.to_str0 ()),
                        SCM_UNDEFINED);
@@ -47,26 +52,29 @@ Paper_outputter::Paper_outputter (String name)
 
 Paper_outputter::~Paper_outputter ()
 {
-  
+  scm_close_port (file_);
+  file_ = SCM_EOL;
 }
 
 
 void
 Paper_outputter::output_header ()
 {
-  String       generate = _ (", at ");
   time_t t (time (0));
-  generate += ctime (&t);
-  generate = generate.left_string (generate.length () - 1);
+  String generate = ctime (&t);
+  generate = generate.left_string (generate.length () - 1) + " " + *tzname;
   
-  /*
-    Make fixed length time stamps
-   */
-  generate = generate + to_string (' ' * (120 - generate.length ())>? 0)  ;
-  String creator = "lelie";
+  /* Fixed length time stamp */
+  generate = generate + to_string (' ', (50 - generate.length ()) >? 0);
+  
+  /* Fixed length creator string */
+  String creator = gnu_lilypond_version_string ();
+  creator += " (http://lilypond.org)";
+  creator = creator + to_string (' ', (50 - creator.length ()) >? 0);
   
   SCM args_scm = scm_list_n (scm_makfrom0str (creator.to_str0 ()),
-                            scm_makfrom0str (generate.to_str0 ()), SCM_UNDEFINED);
+                            scm_makfrom0str (generate.to_str0 ()),
+                            SCM_UNDEFINED);
 
 
   SCM scm = gh_cons (ly_symbol2scm ("header"), args_scm);
@@ -94,6 +102,9 @@ Paper_outputter::output_scheme (SCM scm)
 void
 Paper_outputter::output_scope (SCM mod, String prefix)
 {
+  if (!SCM_MODULEP (mod))
+    return ;
+  
   SCM al = ly_module_to_alist (mod);
   for (SCM s = al ; gh_pair_p (s); s = ly_cdr (s))
     {
@@ -172,8 +183,8 @@ Paper_outputter::write_header_field_to_file (String filename, SCM key, SCM value
 void
 Paper_outputter::write_header_fields_to_file (SCM mod)
 {
-  
-  if (dump_header_fieldnames_global.size ())
+  if (ly_module_p (mod)&&
+      dump_header_fieldnames_global.size ())
     {
       SCM fields = ly_module_to_alist (mod);
       for (int i = 0; i < dump_header_fieldnames_global.size (); i++)