]> git.sur5r.net Git - bacula/docs/blob - docs/README.pct
Fix #250 about alldrives plugin
[bacula/docs] / docs / README.pct
1 Philippe Chauvat
2 18-octobre-2013 First edition
3 ---
4 21-octobre-2013 - Adding: tree example; what's changed; special needs;
5                           images management; coverpage process; images
6                           management*
7 ---
8 24-octobre-2013: Known bug: Currently, the perl 5.18.1 version has a bug which
9                            have a big impact on latex2html
10 ---
11 25-octobre-2013: HTML external references added.
12
13 What has changed?
14 =================
15 Some important thigs has changed with this new manual design:
16 - initial Makefile.in in ./docs to include thde two steps process: PDF and WEB
17 - Makefile.in into docs/manuals/en/{the-manual-name}
18 - new web.Makefile in each docs/manuals/en/{the-manual-name} directory
19 - tables management
20 - images management
21
22 What do you need to produce the documentation?
23 ==============================================
24 - a complete latex distribution
25 - a working inkscape
26 - a working latex2html
27 - the atxy.sty package (currently provided into the docs/bsysmanual/ directory)
28
29 On Debian stable version, the following are sufficient to produce the manuals:
30 aptitude install make
31 aptitude install inkscape
32 aptitude install texlive-full
33 aptitude install latex2html
34 aptitude install gawk
35
36 It could be necessary to define an "EXPORT TEXMFLOCAL=~/texmf".
37
38
39
40 General layout of the manual building process
41 =============================================
42 Directories and files
43 ---------------------
44 - The LaTeX sources are still in the same directories. In the TYPICAL
45   BACULA MANUALS TREE below not all files are displayed and some directories
46   are empty to save some space.
47
48 Additions
49 ---------
50 - two tools, located into the docs/tools directory: htmls.sh and
51   translatedoc.pl. See the docs/tools/README for more information.
52 - external references management. See the REFERENCES MANAGEMENT part
53   below.
54
55 Alerts
56 ------
57 - The DVI documentation is no longer generated.
58 - Because of the references, building only one specific manual is more
59   or less useless. Re-builiding everything would probably be faster
60   and more secure.
61
62 Process
63 -------
64 The overall process is the following
65 a) References building management
66 b) PDF files generation
67 c) HTML documentation generation
68
69 The process to build one PDF manual is the following:
70 a) Linking the coverpage to the class directory
71 b) Building PDF images from svg files using inkscape
72 c) Managing common files like Gnu GPL licence and other files shared
73    over manuals.
74 d) Compiling the tex files with pdflatex command
75
76 The process to build an HTML manual is the following:
77 a) Building the PNG images from svg files using inkscape
78 b) Convert the high-level LaTeX code into LaTeX that may be interpreted
79    by latex2html
80 c) Run the latex2html command on the code produce in step b)
81 d) Run the htmls.sh script to convert the latex2html code into something
82    useful for current HTML / CSS technology.
83
84 REFERENCES MANAGEMENT
85 =====================
86 Since the Bacula manual was split into several parts, external references
87 were broken. The should be OK now using the LaTeX xr and xr-hyper packages.
88 Because those references are using LaTeX compiling process to generate the
89 appropriate files and because references are used over several manuals,
90 this process must be ran over all the manuals, whatever the actual manual
91 on which the modification(s) is (are) made.
92
93 External references are now managed.
94
95 How it works?
96 -------------
97 The main Makefile (docs/Makefile) find all .tex files containing a "\label{}"
98 LaTeX command and create a line for each. The line follows this templace
99 \externaldocument[{the-manual-name}-]{../{the-manual-name}/a_file_name}
100 Where:
101 - the-manual-name is one of console, developers, main, etc.
102 - a_file_name is the file name on which the Makefile found the \label
103   command.
104 e.g:
105 \externaldocument[main-]{../main/quickstart}
106
107 With HTML, the process is defined by:
108 - finding into the original LaTeX code the \bsysxrling{$1}{$2}{$3}{$4} macro
109 - replacing them by __XRANCHOR_$1_$2_$3_$4__ 
110 - modifications made into the translatedoc.pl script (see. docs/tools/README)
111 - calling the handle-xr-references.pl script at the end of htmls.sh script
112   (see docs/tools/README)
113
114 COVERPAGE MANAGEMENT
115 ====================
116 The source coverpage file for a manual is located into the docs/covers/svg
117 (aka: COVERSDIR in the Makefiles) directory. Each manual has its own cover
118 named coverpage-{the-manual-name}.svg where {the-manual-name} is the name of the manual. The coverpage
119 sourcefile is name SVGCOVERSDIR. To build to PDF manuals, LaTeX will search
120 for a file into the PDF coverpage directory name PDFCOVERSDIR into the
121 Makefiles. Finally the coverpage filename (without any extension) is named
122 COVERNAME.
123 Because the LaTeX class is supposed to compile each and every manuals,
124 the coverpage filename inclusion is made against BSYSMANNAME. Therefore
125 the process will link the real coverpage to the BSYSMANNAME file
126 (bsysmanual-coverpagebackground).
127 docs/
128 |-- bsysmanual
129 |   |-- bsysmanual.cls
130 |   |-- bsysmanual-coverpagebackground.pdf -> /home/pchauvat/BaculaSystems/git/docs-bee/docs/manuals/en/utility/../../../covers/pdf/coverpage-utility.pdf
131 |   |-- console.lang.tex
132 |   `-- external-references.tex
133 |-- covers
134 |   |-- pdf
135 |   |   |-- coverpage-console.pdf
136 |   |   |-- coverpage-developers.pdf
137 |   |   |-- coverpage-main.pdf
138 |   |   |-- coverpage-misc.pdf
139 |   |   |-- coverpage-problems.pdf
140 |   |   |-- coverpage-utility.pdf
141 |   `-- svg
142 |       |-- coverpage-console.svg
143 |       |-- coverpage-developers.svg
144 |       |-- coverpage-main.svg
145 |       |-- coverpage-misc.svg
146 |       |-- coverpage-problems.svg
147 |       |-- coverpage-utility.svg
148 |       |-- Makefile
149 |       `-- Makefile.in
150
151
152 IMAGES MANAGEMENT
153 =================
154 There are a lot of images into the Bacula manuals, into several format:
155 svg, png, pdf, eps, jpg, ...
156 To be able to prioritize them, we need to use some LaTeX directives
157 like the following:
158 \graphicspath{{../../../images/pdf/}{../../../images/png/} \
159 {../../../images/}{../../../images/hires/}{../../../images/eps/}}
160 \DeclareGraphicsExtensions{.pdf,.png,.jpg,.jpeg,.eps}
161
162 The images may be included from the directories specified on the
163 \graphicspath{} directive.
164 Depending on the output format, we want to prioritize differently. E.g.
165 the definitions above are PDF output oriented for what we definitely
166 prefer PDF, then PNG, then JPG, etc.
167
168 Since the new version, I choose to preferably designed images with
169 inkscape / svg format. Why: two main reasons. Vertorized images are much
170 more nice than bitmap (IMHO) and inkscape is able to automatically
171 produce PNG or PDF on the fly (e.g. into Makefile process).
172
173
174 TABLES MANAGEMENT
175 =================
176 As tables are always a bit difficult to manage, since the new design,
177 tables are progressively moved into specific files. Why?
178 - it let us to use the longtable package and then be able to have a
179   better control on how tables are displayed.
180 - it let us not to have data tables, which don't change frenquently
181   and, IMHO, don't give a change to have an overall perspective on
182   the text being written.
183
184 HTML VERSION
185 ============
186 The source document is written in LaTeX. The HTML version uses latex2html
187 converter. Because of the LaTeX possibility to define some "macros", we 
188 use a three step process:
189 - convert 'high level' LaTeX to 'low level' LaTeX during the make process
190 - convert 'low level' LaTeX to 'raw' HTML using latex2html
191 - convert 'raw' HTML to 'recent' HTML using  dedicated script
192   (docs/tools/htmls.sh)
193
194 During the HTML compilation process, some temporary directories are created.
195 They are named www-{the-manual-name} where {the-manual-name} is the name of the manual. Therefore
196 you will find:
197 - www-console
198 - www-developers
199 - www-main
200 - www-misc
201 - www-problems
202 - www-utility
203 in the bacula manuals tree.
204
205 Please notice that the process described for IMAGES MANAGEMENT is used also
206 with different values.
207
208 TYPICAL BACULA MANUALS TREE
209 ===========================
210 ./docs
211 |...
212 |-- images
213 |   |-- access-is-denied.eps
214 |   |-- access-is-denied.jpg
215 |   |-- access-is-denied.pdf
216 |   |-- access-is-denied.png
217 |   |-- back.eps
218 |   |-- ...
219 |   |-- contents.png
220 |   |-- different_time.dia
221 |   |-- different_time.eps
222 |   |-- different_time.png
223 |   |-- duplicate-real.eps
224 |   |-- duplicate-real.svg
225 |   |-- eps
226 |   |   |-- BackupOverWan1.eps
227 |   |   |-- bacula-applications.eps
228 |   |   |-- bacula-objects.eps
229 |   |   |-- baculasystems-logo.eps
230 |   |   |-- Conf-Diagram.eps
231 |   |   |-- different_time.eps
232 |   |   |-- duplicate.eps
233 |   |   |-- duplicate-real.eps
234 |   |   |-- flow.eps
235 |   |   |-- git-edit-commit.eps
236 |   |   |-- k7-error.eps
237 |   |   |-- k7-idle.eps
238 |   |   |-- k7-ok.eps
239 |   |   |-- nsis.eps
240 |   |   `-- philosophical-gnu-sm.eps
241 |   |-- error.eps
242 |   |-- error.gif
243 |   |-- ...
244 |   |-- flow.png
245 |   |-- git-edit-commit.dia
246 |   |-- git-edit-commit.eps
247 |   |-- git-edit-commit.png
248 |   |-- hires
249 |   |   |-- access-is-denied.eps
250 |   |   |-- back.eps
251 |   |   |-- bacula-applications.eps
252 |   |   |-- bacula-logo.eps
253 |   |   |-- bacula-objects.eps
254 |   |   |-- Bacula-tray-monitor.eps
255 |   |   |-- bat11.eps
256 |   |   |-- bat12.eps
257 |   |   |-- bat13.eps
258 |   |   |-- bat-brestore.eps
259 |   |   |...
260 |   |   |-- win32-nsis.eps
261 |   |   |-- win32-pkg.eps
262 |   |   |-- win32-service.eps
263 |   |   |-- win32-service-ok.eps
264 |   |   |-- win32-start.eps
265 |   |   |-- win32-welcome.eps
266 |   |   |-- wx-console-restore1.eps
267 |   |   `-- wx-console-restore2.eps
268 |   |-- home.eps
269 |   |-- home.gif
270 |   |-- home.pdf
271 |   |...
272 |   |-- next.gif
273 |   |-- next_g.png
274 |   |-- next.pdf
275 |   |-- next.png
276 |   |-- pdf
277 |   |   |-- BackupOverWan1.pdf
278 |   |   |-- bacula-applications.pdf
279 |   |   |-- bacula-objects.pdf
280 |   |   |-- baculasystems-logo.pdf
281 |   |   |-- Conf-Diagram.pdf
282 |   |   |-- different_time.pdf
283 |   |   |-- duplicate.pdf
284 |   |   |-- duplicate-real.pdf
285 |   |   |-- flow.pdf
286 |   |   |-- git-edit-commit.pdf
287 |   |   |-- k7-error.pdf
288 |   |   |-- k7-idle.pdf
289 |   |   |-- k7-ok.pdf
290 |   |   |-- nsis.pdf
291 |   |   `-- philosophical-gnu-sm.pdf
292 |   |-- philosophical-gnu-sm.eps
293 |   |-- philosophical-gnu-sm.jpg
294 |   |-- philosophical-gnu-sm.pdf
295 |   |-- philosophical-gnu-sm.png
296 |   |-- png
297 |   |   |-- BackupOverWan1.png
298 |   |   |-- bacula-applications.png
299 |   |   |-- bacula-objects.png
300 |   |   |-- baculasystems-logo.png
301 |   |   |-- Conf-Diagram.png
302 |   |   |-- different_time.png
303 |   |   |-- duplicate.png
304 |   |   |-- duplicate-real.png
305 |   |   |-- flow.png
306 |   |   |-- git-edit-commit.png
307 |   |   |-- k7-error.png
308 |   |   |-- k7-idle.png
309 |   |   |-- k7-ok.png
310 |   |   |-- nsis.png
311 |   |   `-- philosophical-gnu-sm.png
312 |   |-- prev.eps
313 |   |-- prev.gif
314 |   |-- prev_g.png
315 |   |-- prev.pdf
316 |   |-- prev.png
317 |   |-- properties-security-advanced-owner.eps
318 |   |-- properties-security-advanced-owner.jpg
319 |   |-- properties-security-advanced-owner.pdf
320 |   |-- properties-security-advanced-owner.png
321 |   |-- properties-security.eps
322 |   |-- properties-security.jpg
323 |   |-- properties-security.pdf
324 |   |-- properties-security.png
325 |   |-- README
326 |   |-- running.eps
327 |   |-- running.gif
328 |   |-- running.pdf
329 |   |-- running.png
330 |   |-- smartall.eps
331 |   |-- smartall.gif
332 |   |-- smartall.pdf
333 |   |-- smartall.png
334 |   |-- svg
335 |   |   |-- BackupOverWan1.svg
336 |   |   |-- bacula-applications.svg
337 |   |   |-- bacula-objects.svg
338 |   |   |-- baculasystems-logo.svg
339 |   |   |-- Conf-Diagram.svg
340 |   |   |-- different_time.svg
341 |   |   |-- duplicate-real.svg
342 |   |   |-- duplicate.svg
343 |   |   |-- flow.svg
344 |   |   |-- git-edit-commit.svg
345 |   |   |-- inkscape.log
346 |   |   |-- k7-error.svg
347 |   |   |-- k7-idle.svg
348 |   |   |-- k7-ok.svg
349 |   |   |-- Makefile
350 |   |   |-- Makefile.in
351 |   |   |-- nsis.svg
352 |   |   `-- philosophical-gnu-sm.svg
353 |   |-- thanks.eps
354 |   |-- thanks.gif
355 |   |-- thanks.pdf
356 |   |...
357 |   |-- xp-windows-firewall-advanced-settings-service-details.pdf
358 |   |-- xp-windows-firewall-advanced-settings-service-details.png
359 |   |-- xp-windows-firewall.eps
360 |   |-- xp-windows-firewall.pdf
361 |   `-- xp-windows-firewall.png
362 |-- Makefile
363 |-- Makefile.in
364 |-- manuals
365 |   |-- bacula.sty
366 |   |-- bacula.sty.in
367 |   |-- bsys-latex-mode.tex
368 |   |-- bsys-pdflatex-mode.tex
369 |   |-- bsys-web-mode.tex
370 |   |-- de
371 |   |   |-- console
372 |   |   |-- developers
373 |   |   |-- main
374 |   |   |-- misc
375 |   |   |-- problems
376 |   |   `-- utility
377 |   |-- en
378 |   |   |-- console
379 |   |   |   |-- bacula.sty
380 |   |   |   |-- bconsole.tex
381 |   |   |   |-- bonsole.tex
382 |   |   |   |-- bsys-compiler-mode.tex -> ../../bsys-pdflatex-mode.tex
383 |   |   |   |-- console
384 |   |   |   |   |-- About_this_document.html
385 |   |   |   |   |-- Bacula_Enterprise_Console.html
386 |   |   |   |   |-- Console_Operators_Guide.html
387 |   |   |   |   |-- Contents.html
388 |   |   |   |   |-- GNU_Free_Documentation_Lice.html
389 |   |   |   |   |-- index.html
390 |   |   |   |   `-- Index.html
391 |   |   |   |-- console.pdf
392 |   |   |   |-- console.tex
393 |   |   |   |-- coverpage.tex -> ../../licences/coverpage.tex
394 |   |   |   |-- fdl.tex -> ../../licences/fdl.tex
395 |   |   |   |-- gpl.tex -> ../../licences/gpl.tex
396 |   |   |   |-- header-footer.tex -> ../../licences/header-footer.tex
397 |   |   |   |-- lesser.tex -> ../../licences/lesser.tex
398 |   |   |   |-- license.tex -> ../../licences/license.tex
399 |   |   |   |-- Makefile
400 |   |   |   |-- Makefile.in
401 |   |   |   |-- version.tex
402 |   |   |   `-- web.makefile
403 |   |   |-- css
404 |   |   |   |-- bsys.css
405 |   |   |   |-- console.css
406 |   |   |   |-- developers.css
407 |   |   |   |-- main.css
408 |   |   |   |-- misc.css
409 |   |   |   |-- problems.css
410 |   |   |   `-- utility.css
411 |   |   |-- developers
412 |   |   |   |-- bacula.sty
413 |   |   |   |-- bsys-compiler-mode.tex -> ../../bsys-pdflatex-mode.tex
414 |   |   |   |-- catalog.tex
415 |   |   |   |-- coverpage.tex -> ../../licences/coverpage.tex
416 |   |   |   |-- daemonprotocol.tex
417 |   |   |   |-- developers
418 |   |   |   |   |-- About_this_document.html
419 |   |   |   |   |-- Bacula_Developer_Notes.html
420 |   |   |   |   |-- Bacula_FD_Plugin_API.html
421 |   |   |   |   |-- Bacula_Git_Usage.html
422 |   |   |   |   |-- Bacula_MD5_Algorithm.html
423 |   |   |   |   |-- Bacula_Memory_Management.html
424 |   |   |   |   |-- Bacula_Porting_Notes.html
425 |   |   |   |   |-- Bacula_Regression_Testing.html
426 |   |   |   |   |-- Catalog_Services.html
427 |   |   |   |   |-- Contents.html
428 |   |   |   |   |-- Daemon_Protocol.html
429 |   |   |   |   |-- Developer_s_Guide.html
430 |   |   |   |   |-- Director_Services_Daemon.html
431 |   |   |   |   |-- File_Services_Daemon.html
432 |   |   |   |   |-- GNU_Free_Documentation_Lice.html
433 |   |   |   |   |-- Implementing_GUI_Interface.html
434 |   |   |   |   |-- index.html
435 |   |   |   |   |-- Index.html
436 |   |   |   |   |-- Platform_Support.html
437 |   |   |   |   |-- Smart_Memory_Allocation.html
438 |   |   |   |   |-- Storage_Daemon_Design.html
439 |   |   |   |   |-- Storage_Media_Output_Format.html
440 |   |   |   |   |-- TCP_IP_Network_Protocol.html
441 |   |   |   |   `-- TLS.html
442 |   |   |   |-- developers.pdf
443 |   |   |   |-- developers.tex
444 |   |   |   |-- director.tex
445 |   |   |   |-- fdl.tex -> ../../licences/fdl.tex
446 |   |   |   |-- file.tex
447 |   |   |   |-- generaldevel.tex
448 |   |   |   |-- git.tex
449 |   |   |   |-- gpl.tex -> ../../licences/gpl.tex
450 |   |   |   |-- gui-interface.tex
451 |   |   |   |-- header-footer.tex -> ../../licences/header-footer.tex
452 |   |   |   |-- index.perl
453 |   |   |   |-- latex2html-init.pl
454 |   |   |   |-- lesser.tex -> ../../licences/lesser.tex
455 |   |   |   |-- license.tex -> ../../licences/license.tex
456 |   |   |   |-- Makefile
457 |   |   |   |-- Makefile.in
458 |   |   |   |-- Makefile.web
459 |   |   |   |-- md5.tex
460 |   |   |   |-- mediaformat.tex
461 |   |   |   |-- mempool.tex
462 |   |   |   |-- netprotocol.tex
463 |   |   |   |-- platformsupport.tex
464 |   |   |   |-- pluginAPI.tex
465 |   |   |   |-- porting.tex
466 |   |   |   |-- regression.tex
467 |   |   |   |-- smartall.tex
468 |   |   |   |-- storage.tex
469 |   |   |   |-- table_databasetables.tex
470 |   |   |   |-- table_dbbasefiles.tex
471 |   |   |   |-- table_dbclient.tex
472 |   |   |   |-- table_dbcounter.tex
473 |   |   |   |-- table_dbfilename.tex
474 |   |   |   |-- table_dbfileset.tex
475 |   |   |   |-- table_dbfile.tex
476 |   |   |   |-- table_dbjobhistory.tex
477 |   |   |   |-- table_dbjobmedia.tex
478 |   |   |   |-- table_dbjobstatuses.tex
479 |   |   |   |-- table_dbjob.tex
480 |   |   |   |-- table_dbjobtypes.tex
481 |   |   |   |-- table_dblocationlog.tex
482 |   |   |   |-- table_dblocation.tex
483 |   |   |   |-- table_dblog.tex
484 |   |   |   |-- table_dbmedia.tex
485 |   |   |   |-- table_dbpath.tex
486 |   |   |   |-- table_dbpool.tex
487 |   |   |   |-- table_dbstorage.tex
488 |   |   |   |-- table_dbversion.tex
489 |   |   |   |-- table_errorcodes.tex
490 |   |   |   |-- table_fileattributes.tex
491 |   |   |   |-- table_filesystemsfunctions.tex
492 |   |   |   |-- table_systemsfunctions.tex
493 |   |   |   |-- tls-techdoc.tex
494 |   |   |   |-- version.tex
495 |   |   |   `-- web.makefile
496 |   |   |-- images
497 |   |   |   |-- access-is-denied.png
498 |   |   |   |-- back.png
499 |   |   |   |-- BackupOverWan1.png
500 |   |   |   |-- bacula-applications.png
501 |   |   |   |-- bacula-logo.png
502 |   |   |   |-- bacula-objects.png
503 |   |   |   |-- baculasystems-logo.png
504 |   |   |   |-- Bacula-tray-monitor.png
505 |   |   |   |-- bacula-usage.png
506 |   |   |   |-- bat11.png
507 |   |   |   |-- bat12.png
508 |   |   |   |-- bat13.png
509 |   |   |   |-- bat14.png
510 |   |   |   |-- bat15.png
511 |   |   |   |-- bat16.png
512 |   |   |   |-- bat-brestore.png
513 |   |   |   |-- bat_icon.png
514 |   |   |   |-- bat-mediaview.png
515 |   |   |   |-- bclogo.png
516 |   |   |   |-- bimagemgr1.png
517 |   |   |   |-- bimagemgr2.png
518 |   |   |   |-- bimagemgr3.png
519 |   |   |   |-- bsys-doctitle.png
520 |   |   |   |-- bsys-hindex.png
521 |   |   |   |-- bsys-logo.png
522 |   |   |   |-- bweb1.png
523 |   |   |   |-- bweb2.png
524 |   |   |   |-- bweb3.png
525 |   |   |   |-- bweb4.png
526 |   |   |   |-- bweb5.png
527 |   |   |   |-- bweb6.png
528 |   |   |   |-- bweb-index.png
529 |   |   |   |-- bweb-report.png
530 |   |   |   |-- Conf-Diagram.png
531 |   |   |   |-- confirm.png
532 |   |   |   |-- contents.png
533 |   |   |   |-- different_time.png
534 |   |   |   |-- down.png
535 |   |   |   |-- duplicate.png
536 |   |   |   |-- duplicate-real.png
537 |   |   |   |-- error.png
538 |   |   |   |-- Exchange1.png
539 |   |   |   |-- Exchange2.png
540 |   |   |   |-- Exchange.png
541 |   |   |   |-- file.png
542 |   |   |   |-- flow.png
543 |   |   |   |-- git-edit-commit.png
544 |   |   |   |-- home.png
545 |   |   |   |-- idle.png
546 |   |   |   |-- img25.png
547 |   |   |   |-- index.png
548 |   |   |   |-- k7-error.png
549 |   |   |   |-- k7-idle.png
550 |   |   |   |-- k7-ok.png
551 |   |   |   |-- md5.png
552 |   |   |   |-- menu.png
553 |   |   |   |-- next_g.png
554 |   |   |   |-- next.png
555 |   |   |   |-- nsis.png
556 |   |   |   |-- philosophical-gnu-sm.png
557 |   |   |   |-- prev_g.png
558 |   |   |   |-- prev.png
559 |   |   |   |-- properties-security-advanced-owner.png
560 |   |   |   |-- properties-security.png
561 |   |   |   |-- right.png
562 |   |   |   |-- running.png
563 |   |   |   |-- smartall.png
564 |   |   |   |-- svg
565 |   |   |   |   |-- down.svg
566 |   |   |   |   |-- left.svg
567 |   |   |   |   |-- right.svg
568 |   |   |   |   `-- up.svg
569 |   |   |   |-- thanks.png
570 |   |   |   |-- tray-icon.png
571 |   |   |   |-- tray-monitor1.png
572 |   |   |   |-- tray-monitor.png
573 |   |   |   |-- up_g.png
574 |   |   |   |-- up.png
575 |   |   |   |-- view-only.png
576 |   |   |   |-- win32-config.png
577 |   |   |   |-- win32-finish.png
578 |   |   |   |-- win32-installation-type.png
579 |   |   |   |-- win32-installing.png
580 |   |   |   |-- win32-location.png
581 |   |   |   |-- win32-menu.png
582 |   |   |   |-- win32-nsis.png
583 |   |   |   |-- win32-pkg.png
584 |   |   |   |-- win32-service-ok.png
585 |   |   |   |-- win32-service.png
586 |   |   |   |-- win32-start.png
587 |   |   |   |-- win32-welcome.png
588 |   |   |   |-- wx-console-restore1.png
589 |   |   |   |-- wx-console-restore2.png
590 |   |   |   |-- xp-control-panel.png
591 |   |   |   |-- xp-windows-firewall-advanced.png
592 |   |   |   |-- xp-windows-firewall-advanced-settings-after.png
593 |   |   |   |-- xp-windows-firewall-advanced-settings-before.png
594 |   |   |   |-- xp-windows-firewall-advanced-settings-service-details.png
595 |   |   |   `-- xp-windows-firewall.png
596 |   |   |-- js
597 |   |   |   `-- pct-bsys.js
598 |   |   |-- main
599 |   |   |   |-- ansi-labels.tex
600 |   |   |   |-- autochangerres.tex
601 |   |   |   |-- autochangers.tex
602 |   |   |   |-- bacula.sty
603 |   |   |   |-- basejob.tex
604 |   |   |   |-- bootstrap.tex
605 |   |   |   |-- bsplugins.tex
606 |   |   |   |-- bsys-compiler-mode.tex -> ../../bsys-pdflatex-mode.tex
607 |   |   |   |-- bugs.tex
608 |   |   |   |-- catmaintenance.tex
609 |   |   |   |-- check_tex.pl
610 |   |   |   |-- configure.tex
611 |   |   |   |-- consoleconf.tex
612 |   |   |   |-- coverpage.tex -> ../../licences/coverpage.tex
613 |   |   |   |-- critical.tex
614 |   |   |   |-- dataencryption.tex
615 |   |   |   |-- dirdconf.tex
616 |   |   |   |-- disk.tex
617 |   |   |   |-- fdl.tex -> ../../licences/fdl.tex
618 |   |   |   |-- filedconf.tex
619 |   |   |   |-- fileset.tex
620 |   |   |   |-- general.tex
621 |   |   |   |-- gpl.tex -> ../../licences/gpl.tex
622 |   |   |   |-- header-footer.tex -> ../../licences/header-footer.tex
623 |   |   |   |-- index.perl
624 |   |   |   |-- latex2html-init.pl
625 |   |   |   |-- lesser.tex -> ../../licences/lesser.tex
626 |   |   |   |-- license.tex -> ../../licences/license.tex
627 |   |   |   |-- main
628 |   |   |   |   |-- About_this_document.html
629 |   |   |   |   |-- ANSI_IBM_Tape_Labels.html
630 |   |   |   |   |-- Autochanger_Resource.html
631 |   |   |   |   |-- Autochanger_Support.html
632 |   |   |   |   |-- Automated_Disk_Backup.html
633 |   |   |   |   |-- Automatic_Volume_Recycling.html
634 |   |   |   |   |-- Backup_Strategies.html
635 |   |   |   |   |-- Bacula_Copyright_Trademark_.html
636 |   |   |   |   |-- Bacula_Security_Issues.html
637 |   |   |   |   |-- Bacula_TLS_Communications_E.html
638 |   |   |   |   |-- Basic_Volume_Management.html
639 |   |   |   |   |-- Bootstrap_File.html
640 |   |   |   |   |-- Brief_Tutorial.html
641 |   |   |   |   |-- Catalog_Maintenance.html
642 |   |   |   |   |-- Client_File_daemon_Configur.html
643 |   |   |   |   |-- Configuring_Director.html
644 |   |   |   |   |-- Console_Configuration.html
645 |   |   |   |   |-- Contents.html
646 |   |   |   |   |-- Critical_Items_Implement_Be.html
647 |   |   |   |   |-- Current_State_Bacula.html
648 |   |   |   |   |-- Customizing_Configuration_F.html
649 |   |   |   |   |-- Data_Encryption.html
650 |   |   |   |   |-- Data_Spooling.html
651 |   |   |   |   |-- Disaster_Recovery_Using_Bac.html
652 |   |   |   |   |-- File_Deduplication_using_Ba.html
653 |   |   |   |   |-- Getting_Started_with_Bacula.html
654 |   |   |   |   |-- GNU_Free_Documentation_Lice.html
655 |   |   |   |   |-- GNU_General_Public_License.html
656 |   |   |   |   |-- GNU_Lesser_General_Public_L.html
657 |   |   |   |   |-- index.html
658 |   |   |   |   |-- Index.html
659 |   |   |   |   |-- Installing_Bacula.html
660 |   |   |   |   |-- Installing_Configuring_MySQ.html
661 |   |   |   |   |-- Installing_Configuring_Post.html
662 |   |   |   |   |-- Installing_Configuring_SQLi.html
663 |   |   |   |   |-- Main_Reference.html
664 |   |   |   |   |-- Messages_Resource.html
665 |   |   |   |   |-- Migration_Copy.html
666 |   |   |   |   |-- Monitor_Configuration.html
667 |   |   |   |   |-- New_Features_in_5_2_x.html
668 |   |   |   |   |-- New_Features_in_Bacula_Ente.html
669 |   |   |   |   |-- New_Features_in_Enterprise_.html
670 |   |   |   |   |-- Released_Version_3_0_3_3_0_.html
671 |   |   |   |   |-- Restore_Command.html
672 |   |   |   |   |-- Storage_Daemon_Configuratio.html
673 |   |   |   |   |-- Supported_Autochangers.html
674 |   |   |   |   |-- Supported_Operating_Systems.html
675 |   |   |   |   |-- Supported_Tape_Drives.html
676 |   |   |   |   |-- System_Requirements.html
677 |   |   |   |   |-- Thanks.html
678 |   |   |   |   |-- Using_Bacula_catalog_grab_i.html
679 |   |   |   |   |-- Using_Bacula_Improve_Comput.html
680 |   |   |   |   |-- What_is_Bacula_Enterprise.html
681 |   |   |   |   |-- Windows_Version_Bacula.html
682 |   |   |   |   `-- Windows_Version_Bacula.html~
683 |   |   |   |-- main.pdf
684 |   |   |   |-- main.tex
685 |   |   |   |-- Makefile
686 |   |   |   |-- Makefile.in
687 |   |   |   |-- messagesres.tex
688 |   |   |   |-- migration.tex
689 |   |   |   |-- monitorconf.tex
690 |   |   |   |-- mtx-changer.txt
691 |   |   |   |-- mysql.tex
692 |   |   |   |-- newbs4.0features.tex
693 |   |   |   |-- newbsfeatures.tex
694 |   |   |   |-- newfeatures.tex
695 |   |   |   |-- pools.tex
696 |   |   |   |-- postgresql.tex
697 |   |   |   |-- quickstart.tex
698 |   |   |   |-- recycling.tex
699 |   |   |   |-- requirements.tex
700 |   |   |   |-- rescue.tex
701 |   |   |   |-- restore.tex
702 |   |   |   |-- security.tex
703 |   |   |   |-- spooling.tex
704 |   |   |   |-- sqlite.tex
705 |   |   |   |-- state.tex
706 |   |   |   |-- statistics.tex
707 |   |   |   |-- storedconf.tex
708 |   |   |   |-- strategies.tex
709 |   |   |   |-- STYLE
710 |   |   |   |-- supportedchangers.tex
711 |   |   |   |-- supporteddrives.tex
712 |   |   |   |-- supportedoses.tex
713 |   |   |   |-- table_dependencies.tex
714 |   |   |   |-- table_ltodltspec.tex
715 |   |   |   |-- table_regexp.tex
716 |   |   |   |-- table_resources.tex
717 |   |   |   |-- table_restoreportabilitystatus.tex
718 |   |   |   |-- table_runscriptshortcuts.tex
719 |   |   |   |-- table_runscript.tex
720 |   |   |   |-- table_supportedchangers.tex
721 |   |   |   |-- table_supportedoses.tex
722 |   |   |   |-- table_tapedrives.tex
723 |   |   |   |-- thanks.tex
724 |   |   |   |-- tls.tex
725 |   |   |   |-- tutorial.tex
726 |   |   |   |-- verify.tex
727 |   |   |   |-- version.tex
728 |   |   |   |-- web.makefile
729 |   |   |   `-- win32.tex
730 |   |   |-- Makefile.in
731 |   |   |-- makefile.template
732 |   |   |-- makemakefiles.sh
733 |   |   |-- manual.makefile
734 |   |   |-- manual.makefile.in
735 |   |   |-- misc
736 |   |   |   |-- bacula.sty
737 |   |   |   |-- bsys-compiler-mode.tex -> ../../bsys-pdflatex-mode.tex
738 |   |   |   |-- coverpage.tex -> ../../licences/coverpage.tex
739 |   |   |   |-- dvd.tex
740 |   |   |   |-- fdl.tex -> ../../licences/fdl.tex
741 |   |   |   |-- gpl.tex -> ../../licences/gpl.tex
742 |   |   |   |-- header-footer.tex -> ../../licences/header-footer.tex
743 |   |   |   |-- install.tex
744 |   |   |   |-- internaldb.tex
745 |   |   |   |-- lesser.tex -> ../../licences/lesser.tex
746 |   |   |   |-- license.tex -> ../../licences/license.tex
747 |   |   |   |-- Makefile
748 |   |   |   |-- Makefile.in
749 |   |   |   |-- misc
750 |   |   |   |   |-- About_this_document.html
751 |   |   |   |   |-- Bacula_Copyright_Trademark_.html
752 |   |   |   |   |-- Bacula_Projects.html
753 |   |   |   |   |-- Contents.html
754 |   |   |   |   |-- DVD_Volumes.html
755 |   |   |   |   |-- GNU_Free_Documentation_Lice.html
756 |   |   |   |   |-- GNU_General_Public_License.html
757 |   |   |   |   |-- GNU_Lesser_General_Public_L.html
758 |   |   |   |   |-- index.html
759 |   |   |   |   |-- Index.html
760 |   |   |   |   |-- internal_database_is_not_su.html
761 |   |   |   |   |-- Miscellaneous_Guide.html
762 |   |   |   |   |-- Python_Scripting.html
763 |   |   |   |   |-- Using_Stunnel_Encrypt_Commu.html
764 |   |   |   |   `-- Variable_Expansion.html
765 |   |   |   |-- misc.pdf
766 |   |   |   |-- misc.tex
767 |   |   |   |-- projects.tex
768 |   |   |   |-- python.tex
769 |   |   |   |-- stunnel.tex
770 |   |   |   |-- table_sqlitevsmysql.tex
771 |   |   |   |-- vars.tex
772 |   |   |   |-- version.tex
773 |   |   |   `-- web.makefile
774 |   |   |-- problems
775 |   |   |   |-- bacula.sty
776 |   |   |   |-- bsys-compiler-mode.tex -> ../../bsys-pdflatex-mode.tex
777 |   |   |   |-- coverpage.tex -> ../../licences/coverpage.tex
778 |   |   |   |-- faq.tex
779 |   |   |   |-- fdl.tex -> ../../licences/fdl.tex
780 |   |   |   |-- firewalls.tex
781 |   |   |   |-- gpl.tex -> ../../licences/gpl.tex
782 |   |   |   |-- header-footer.tex -> ../../licences/header-footer.tex
783 |   |   |   |-- index.perl
784 |   |   |   |-- kaboom.tex
785 |   |   |   |-- lesser.tex -> ../../licences/lesser.tex
786 |   |   |   |-- license.tex -> ../../licences/license.tex
787 |   |   |   |-- Makefile
788 |   |   |   |-- Makefile.in
789 |   |   |   |-- problems
790 |   |   |   |   |-- About_this_document.html
791 |   |   |   |   |-- Bacula_Frequently_Asked_Que.html
792 |   |   |   |   |-- Contents.html
793 |   |   |   |   |-- Dealing_with_Firewalls.html
794 |   |   |   |   |-- GNU_Free_Documentation_Lice.html
795 |   |   |   |   |-- index.html
796 |   |   |   |   |-- Index.html
797 |   |   |   |   |-- Problem_Resolution_Guide.html
798 |   |   |   |   |-- Testing_Your_Tape_Drive_Wit.html
799 |   |   |   |   |-- Tips_Suggestions.html
800 |   |   |   |   `-- What_Do_When_Bacula_Crashes.html
801 |   |   |   |-- problems.lof
802 |   |   |   |-- problems.pdf
803 |   |   |   |-- problems.tex
804 |   |   |   |-- rpm-faq.tex
805 |   |   |   |-- tapetesting.tex
806 |   |   |   |-- tips.tex
807 |   |   |   |-- version.tex
808 |   |   |   `-- web.makefile
809 |   |   |-- utility
810 |   |   |   |-- bacula.sty
811 |   |   |   |-- bimagemgr-chapter.tex
812 |   |   |   |-- bsys-compiler-mode.tex -> ../../bsys-pdflatex-mode.tex
813 |   |   |   |-- coverpage.tex -> ../../licences/coverpage.tex
814 |   |   |   |-- fdl.tex -> ../../licences/fdl.tex
815 |   |   |   |-- gpl.tex -> ../../licences/gpl.tex
816 |   |   |   |-- header-footer.tex -> ../../licences/header-footer.tex
817 |   |   |   |-- index.perl
818 |   |   |   |-- lesser.tex -> ../../licences/lesser.tex
819 |   |   |   |-- license.tex -> ../../licences/license.tex
820 |   |   |   |-- Makefile
821 |   |   |   |-- Makefile.in
822 |   |   |   |-- progs.tex
823 |   |   |   |-- rpm-faq.tex
824 |   |   |   |-- utility
825 |   |   |   |   |-- About_this_document.html
826 |   |   |   |   |-- Bacula_RPM_Packaging_FAQ.html
827 |   |   |   |   |-- Contents.html
828 |   |   |   |   |-- GNU_Free_Documentation_Lice.html
829 |   |   |   |   |-- index.html
830 |   |   |   |   |-- Index.html
831 |   |   |   |   |-- Utility_Programs.html
832 |   |   |   |   `-- Volume_Utility_Tools.html
833 |   |   |   |-- utility.lof
834 |   |   |   |-- utility.pdf
835 |   |   |   |-- utility.tex
836 |   |   |   |-- version.tex
837 |   |   |   `-- web.makefile
838 |   |   |-- www-console
839 |   |   |-- www-developers
840 |   |   |-- www-main
841 |   |   |-- www-misc
842 |   |   |-- www-problems
843 |   |   `-- www-utility
844 |   |       |-- access-is-denied.eps -> ../../../images/access-is-denied.eps
845 |   |       |-- access-is-denied.png -> ../../../images/access-is-denied.png
846 |   |       |-- back.eps -> ../../../images/back.eps
847 |   |       |-- back.png -> ../../../images/back.png
848 |   |       |-- bimagemgr3.eps -> ../../../images/bimagemgr3.eps
849 |   |       |-- bimagemgr3.png -> ../../../images/bimagemgr3.png
850 |   |       |-- bimagemgr-chapter.tex
851 |   |       |...
852 |   |       |-- bsys-compiler-mode.tex
853 |   |       |-- bweb1.png -> ../../../images/bweb1.png
854 |   |       |-- bweb2.png -> ../../../images/bweb2.png
855 |   |       |...
856 |   |       |-- confirm.eps -> ../../../images/confirm.eps
857 |   |       |-- confirm.png -> ../../../images/confirm.png
858 |   |       |-- contents.png -> ../../../images/contents.png
859 |   |       |-- coverpage.tex
860 |   |       |-- different_time.eps -> ../../../images/eps/different_time.eps
861 |   |       |-- different_time.png -> ../../../images/png/different_time.png
862 |   |       |...
863 |   |       |-- Exchange2.png -> ../../../images/Exchange2.png
864 |   |       |-- Exchange.png -> ../../../images/Exchange.png
865 |   |       |-- fdl.tex
866 |   |       |-- file.eps -> ../../../images/file.eps
867 |   |       |-- file.png -> ../../../images/file.png
868 |   |       |...
869 |   |       |-- git-edit-commit.png -> ../../../images/png/git-edit-commit.png
870 |   |       |-- gpl.tex
871 |   |       |-- header-footer.tex
872 |   |       |-- home.eps -> ../../../images/home.eps
873 |   |       |-- home.png -> ../../../images/home.png
874 |   |       |...
875 |   |       |-- k7-ok.png -> ../../../images/png/k7-ok.png
876 |   |       |-- lesser.tex
877 |   |       |-- license.tex
878 |   |       |...
879 |   |       |-- Makefile -> ../utility/web.makefile
880 |   |       |-- md5.eps -> ../../../images/md5.eps
881 |   |       |-- smartall.png -> ../../../images/smartall.png
882 |   |       |-- tex.out
883 |   |       |...
884 |   |       |-- up_g.png -> ../../../images/up_g.png
885 |   |       |-- utility.tex
886 |   |       |-- version.tex
887 |   |       |-- view-only.eps -> ../../../images/view-only.eps
888 |   |       |-- view-only.png -> ../../../images/view-only.png
889 |   |       |...
890 |   |       |-- xp-windows-firewall-advanced-settings-after.eps -> ../../../images/xp-windows-firewall-advanced-settings-after.eps
891 |   |       |-- xp-windows-firewall-advanced-settings-after.png -> ../../../images/xp-windows-firewall-advanced-settings-after.png
892 |   |       |-- xp-windows-firewall-advanced-settings-before.eps -> ../../../images/xp-windows-firewall-advanced-settings-before.eps
893 |   |       |-- xp-windows-firewall-advanced-settings-before.png -> ../../../images/xp-windows-firewall-advanced-settings-before.png
894 |   |       |-- xp-windows-firewall-advanced-settings-service-details.eps -> ../../../images/xp-windows-firewall-advanced-settings-service-details.eps
895 |   |       |-- xp-windows-firewall-advanced-settings-service-details.png -> ../../../images/xp-windows-firewall-advanced-settings-service-details.png
896 |   |       |-- xp-windows-firewall.eps -> ../../../images/xp-windows-firewall.eps
897 |   |       `-- xp-windows-firewall.png -> ../../../images/xp-windows-firewall.png
898 |   |-- es
899 |   |   |-- console
900 |   |   |-- developers
901 |   |   |-- main
902 |   |   |-- misc
903 |   |   |-- problems
904 |   |   `-- utility
905 |   |-- fr
906 |   |   |-- console
907 |   |   |-- developers
908 |   |   |-- main
909 |   |   |-- misc
910 |   |   |-- problems
911 |   |   `-- utility
912 |   |-- licences
913 |   |   |-- coverpage.tex
914 |   |   |-- fdl.tex
915 |   |   |-- gpl.tex
916 |   |   |-- header-footer.tex
917 |   |   |-- lesser.tex
918 |   |   `-- license.tex
919 |   |-- notes
920 |   |-- update_version
921 |   |-- update_version.in
922 |   |-- version.tex
923 |   `-- version.tex.in
924 |-- tools
925 |   |-- htmls.sh
926 |   |-- index.pl
927 |   |-- README
928 |   |-- sf2bacula_downloads.pl
929 |   |-- translatedoc.pl
930 |   `-- wholemenu_console.html
931 `-- upload