]> git.sur5r.net Git - bacula/bacula/commitdiff
- Add README plus tar release to gui project.
authorKern Sibbald <kern@sibbald.com>
Sat, 8 Oct 2005 12:18:53 +0000 (12:18 +0000)
committerKern Sibbald <kern@sibbald.com>
Sat, 8 Oct 2005 12:18:53 +0000 (12:18 +0000)
- Manual documentation
- Tweak bacula.man doc
- Add PRAGMA synchronous = NORMAL; to SQLite3 tables. This
  speeds up SQLite3 so it is only about 10% slower than version
  2.xx.  Thanks to Russell Howe for this tip.
- Add msvcr71.dll to pebuilder .inf file as it is needed by
  Bacula FD.  Thanks to Brandon for passing this fix to Scott.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@2427 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/examples/python/DirStartUp.py
bacula/kernstodo
bacula/kes-1.37
bacula/scripts/bacula.man
bacula/src/cats/make_sqlite3_tables.in
bacula/src/version.h
bacula/src/win32/pebuilder/bacula/bacula.inf

index b9d695fdd996b8c407f33d1bf05e2cea0f87f341..5433ad8b872c32981b43abcd5258e7e0feebf015 100644 (file)
@@ -80,6 +80,7 @@ class JobEvents:
      self.job.write(text)
 
   # Open file to be backed up. file is the filename
+  #  NOT YET IMPLEMENTED
   def open(self, file):
      print "Open %s called" % file
      self.fd = open('m.py', 'rb')
@@ -88,6 +89,7 @@ class JobEvents:
 
   # Read file data into Bacula memory buffer (mem)
   #  return length read. 0 => EOF, -1 => error
+  #  NOT YET IMPLEMENTED
   def read(self, mem):
      print "Read called\n"
      len = self.fd.readinto(mem)
@@ -95,5 +97,6 @@ class JobEvents:
      return len
 
   # Close file
+  #  NOT YET IMPLEMENTED
   def close(self):
      self.fd.close()
index 8ecfaa3ac113a75a6688407e60310852c8782141..8da1f16093ec109897c6eab7fd6cdb78d050d7ce 100644 (file)
@@ -41,7 +41,6 @@ Final items for 1.37 before release:
 
 -  --without-openssl breaks at least on Solaris.
 -  Figure out how to package gui, and rescue programs.
--  Test TLS.
 -  Arno had to do -- to get update slots=x to work
    UPDATE Media SET InChanger=0,Slot=0 WHERE InChanger>0 AND Slot>0; (MySQL)
 
@@ -53,18 +52,17 @@ Final items for 1.37 before release:
 
 Document:
 - Does ClientRunAfterJob fail the job on a bad return code?
-- datadir for po files.
-- AM_GNU_GETTEXT finds the library if you specify 
-  --with-libintl-prefix
 - Document cleaning up the spool files:
   db, pid, state, bsr, mail, conmsg, spool
 - Document the multiple-drive-changer.txt script.
 - Pruning with Admin job.
-- Restore of all files for a Job or set of jobs even if the file
-  records have been removed from the catalog.
 - Does WildFile match against full name?  Doc.
 
 For 1.39:
+- implement a mode that says when a hard read error is
+  encountered, read many times (as it currently does), and if the
+  block cannot be read, skip to the next block, and try again.  If
+  that fails, skip to the next file and try again, ...
 - Add ACL to restore only to original location.
 - Add a recursive mark command (rmark) to restore.
 - "Minimum Job Interval = nnn" sets minimum interval between Jobs
index c8873bd5adbc4e3fc52f7b3cdc03ffb75a8b7427..ff59da48c210e6e440be130e9bd07f00f9f79052 100644 (file)
@@ -4,6 +4,15 @@
 General:
 
 Changes to 1.37.41:
+08Oct05
+- Add README plus tar release to gui project.
+- Manual documentation
+- Tweak bacula.man doc
+- Add PRAGMA synchronous = NORMAL; to SQLite3 tables. This
+  speeds up SQLite3 so it is only about 10% slower than version
+  2.xx.  Thanks to Russell Howe for this tip.
+- Add msvcr71.dll to pebuilder .inf file as it is needed by
+  Bacula FD.  Thanks to Brandon for passing this fix to Scott.
 05Oct05
 - Add VolumePurged method to Python JobEvents class.  Fixes
   bug #428 (I think).
index 518470d2504020cbea06fe08b5494ab148e3f645..f33aeca4d365b6d8e572604ab5bbc6e78cf9d495 100644 (file)
@@ -46,8 +46,8 @@ administrator or user to communicate with the Bacula Director
 versions.  The first and simplest is to run the Console program
 in a shell window (i.e.  TTY interface).  Most system
 administrators will find this completely adequate.  The second
-version is a GNOME GUI interface that for the moment (23 November
-2003) is far from complete, but quite functional as it has most
+version is a GNOME GUI interface that for the moment (07 October
+2005) is far from complete, but quite functional as it has most
 the capabilities of the shell Console.  The third version is a
 wxWidgets GUI with an interactive file restore.  It also has most
 of the capabilities of the shell console, allows command
@@ -68,8 +68,8 @@ in some of the documentation, the File daemon is referred to as
 the Client (for example in Bacula's configuration file).  In
 addition to Unix/Linux File daemons, there is a Windows File
 daemon (normally distributed in binary format).  The Windows File
-daemon runs on all currently known Windows versions (95, 98, Me,
-NT, 2000, XP).
+daemon runs on all currently known Windows versions (98, Me,
+NT, 2K, 2003,  XP).
 
 .LP
 Bacula Storage services consist of the software programs that
index 25afc6b7f2a2c911b374903460889354cf76efa4..6f54ff397ebe377504ddb5ee861750f757012112 100644 (file)
@@ -313,6 +313,7 @@ INSERT INTO Version (VersionId) VALUES (9);
 
 PRAGMA default_synchronous = OFF;
 PRAGMA default_cache_size = 10000;
+PRAGMA synchronous = NORMAL;
 
 END-OF-DATA
 
index 509f0c684ec92a8343275e7f8c5cd76d4e6701fd..5b54e5a374765cf1d1db8ede1a3e7628e36785e3 100644 (file)
@@ -4,8 +4,8 @@
 
 #undef  VERSION
 #define VERSION "1.37.41"
-#define BDATE   "05 October 2005"
-#define LSMDATE "05Oct05"
+#define BDATE   "08 October 2005"
+#define LSMDATE "08Oct05"
 
 /* Debug flags */
 #undef  DEBUG
index 0bf8ab249a1f35bd0c6040fbcd81547ea4b5da96..46706ec632b64f8faa64e8de47768a075807d0e2 100644 (file)
@@ -31,6 +31,7 @@ files\pthreadVCE.dll=a,,1
 files\msvcr71.dll=a,,1
 files\wx-console.exe=a,,1
 files\wx-console.conf=a,,1
+files\msvcr71.dll=a,,1
 
 [Append]
 nu2menu.xml, bacula_nu2menu.xml