From: Robert Nelson Date: Wed, 26 Jul 2006 01:36:23 +0000 (+0000) Subject: Strip pathname portion off all message routines that print filename:line. X-Git-Tag: Release-2.0.0~724 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1ab9075e17bf948138e91125433600b6db9a3c80;p=bacula%2Fdocs Strip pathname portion off all message routines that print filename:line. Print additional messages show the elapsed time and transfer rate for the spool portion of a spooled backup job and also for the tape write portion. Add DriveType directive to the Director's Include Option FileSet resource. Allowed values are: fixed, removable, cdrom, and remote. There is only an implementation for Windows because it is the only platform that has the concept of drives. Adds EnhancedWild directive to the Director's Include Option FileSet resource. Allowed values are: yes and no. When EnhancedWild is enabled then the processing of the Wild, WildDir and WildFile is changed in the following ways. Patterns conform to Posix \ is not a special character in character classification [] To match a - it must be the first or last character To match a ] it must be the first character fnmatch option FNM_FILE_NAME is specified * doesn't match a / so it won't match multiple directory levels in a path Relative WildFile patterns (ones without a leading /) match against the filename portion This in combination with the FNM_FILE_NAME fnmatch() flag makes directives such as WildFile = abc*.def work as expected. Adds support for the shell's feature of brace expansion. ---