~ubuntu-branches/ubuntu/gutsy/bugzilla/gutsy-security

« back to all changes in this revision

Viewing changes to docs/makedocs.pl

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine, Alexis Sukrieh, Francesco P. Lovergine
  • Date: 2004-12-07 22:54:45 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041207225445-ezb3nym06pow9mng
Tags: 2.16.7-0.2
* NMU 0-days due to serious/important bug solving which prevents
  bugzilla entering testing.

[ Alexis Sukrieh ]

* Post-inst won't fail anymore when no MySQL server is
  available. Added an automatic way of setting up the MySQL server if
  /etc/mysql/debian.cnf exists, will read values from it then.
  (closes: #250638)
* Using a MySQL user with '-' inside its name won't fail anymore.
  (closes unreported bug)
* Better handling on DBI connection errors. When DBI complains about
  something, user is not confused anymore by ugly error messages.
  (closes: #154249)
* Running checksetup.pl by hand won't break the Bugzilla's installation
  anymore. User can use it as he want without running dpkg-reconfigure.
  (closes: #200707)

[ Francesco P. Lovergine ]

* Now rules removes .cvsignore file which trashes /usr/share/bugzilla/template.
* Added virtual package httpd to the list of web server.
  (closes: #213784)

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
###############################################################################
69
69
 
70
70
chdir dirname($0);
 
71
 
 
72
if (!-d 'html') {
 
73
    unlink 'html';
 
74
    mkdir 'html', 0755;
 
75
}
 
76
if (!-d 'txt') {
 
77
    unlink 'txt';
 
78
    mkdir 'txt', 0755;
 
79
}
 
80
if (!-d 'pdf') {
 
81
    unlink 'pdf';
 
82
    mkdir 'pdf', 0755;
 
83
}
 
84
 
71
85
chdir 'html';
72
86
 
73
87
MakeDocs('separate HTML', "jade -t sgml -i html -d $LDP_HOME/ldp.dsl\#html " .
86
100
         '../xml/Bugzilla-Guide.xml');
87
101
chdir '../pdf';
88
102
MakeDocs(undef, 'mv ../xml/Bugzilla-Guide.tex .');
89
 
MakeDocs(undef, 'jadetex Bugzilla-Guide.tex');
90
 
MakeDocs(undef, 'jadetex Bugzilla-Guide.tex');
91
 
MakeDocs(undef, 'jadetex Bugzilla-Guide.tex');
92
 
MakeDocs(undef, 'dvips -o Bugzilla-Guide.ps Bugzilla-Guide.dvi');
93
 
MakeDocs(undef, 'ps2pdf Bugzilla-Guide.ps Bugzilla-Guide.pdf');
94
 
MakeDocs(undef, 'rm Bugzilla-Guide.tex Bugzilla-Guide.log Bugzilla-Guide.dvi ' .
95
 
                'Bugzilla-Guide.aux Bugzilla-Guide.ps');
 
103
MakeDocs(undef, 'pdfjadetex Bugzilla-Guide.tex');
 
104
MakeDocs(undef, 'pdfjadetex Bugzilla-Guide.tex');
 
105
MakeDocs(undef, 'pdfjadetex Bugzilla-Guide.tex');
 
106
MakeDocs(undef, 'rm Bugzilla-Guide.tex Bugzilla-Guide.log Bugzilla-Guide.aux Bugzilla-Guide.out');
96
107