Changesets: bareos
|
master c4f6b260 2016-05-07 22:12 Ported: N/A Details Diff |
plugins: Enhance plugin interface. Added new callback method for retrieving the number of instances of a certain plugin. This mehod was added to all plugins. This method can be used by the plugin to see if it is the first plugin being loaded and as such initialize some subsystem that only should be initialized once per program. This method can also be used to see if a plugin is the last one being used and as such needs to call some generic global cleanup hook for some subsystem. |
||
| mod - src/dird/dir_plugins.c | Diff File | ||
| mod - src/dird/dir_plugins.h | Diff File | ||
| mod - src/filed/fd_plugins.c | Diff File | ||
| mod - src/filed/fd_plugins.h | Diff File | ||
| mod - src/stored/sd_plugins.c | Diff File | ||
| mod - src/stored/sd_plugins.h | Diff File | ||
|
master ea343444 2016-05-07 22:12 Ported: N/A Details Diff |
plugins: Enhance plugin interface. Added an callback method for unregistering a set of events. This callback is analog to the existing function that registers certain events and is added to all plugins. This way a plugin can disable certain events if it doesn't want to be called for them. |
||
| mod - src/dird/dir_plugins.c | Diff File | ||
| mod - src/dird/dir_plugins.h | Diff File | ||
| mod - src/filed/fd_plugins.c | Diff File | ||
| mod - src/filed/fd_plugins.h | Diff File | ||
| mod - src/stored/sd_plugins.c | Diff File | ||
| mod - src/stored/sd_plugins.h | Diff File | ||
|
master eca0d3f8 2016-05-07 22:12 Ported: N/A Details Diff |
plugins: Enhance fd-plugin interface. Added two new methods in the Bareos FD callback methods: - SetSeenBitmap to Set a bit in the seen bitmap for a specific file or for all files in a backup. - ClearSeenBitmap to Clear a bit in the seen bitmap for a specific file or for all files in a backup. |
||
| mod - src/filed/accurate.c | Diff File | ||
| mod - src/filed/accurate.h | Diff File | ||
| mod - src/filed/fd_plugins.c | Diff File | ||
| mod - src/filed/fd_plugins.h | Diff File | ||
| mod - src/filed/protos.h | Diff File | ||
|
master 58ed3ddb 2016-05-07 22:12 Ported: N/A Details Diff |
plugins: Implement missing plugin code. The original plugin design promised a lot more than it really delivered. This tries adding some of the missing features e.g. respond in a proper way to certain return values as promised in the header file but never implemented in the core. |
||
| mod - src/dird/dir_plugins.c | Diff File | ||
| mod - src/dird/dir_plugins.h | Diff File | ||
| mod - src/filed/fd_plugins.c | Diff File | ||
| mod - src/filed/fd_plugins.h | Diff File | ||
| mod - src/lib/plugins.c | Diff File | ||
| mod - src/lib/plugins.h | Diff File | ||
| mod - src/stored/sd_plugins.c | Diff File | ||
| mod - src/stored/sd_plugins.h | Diff File | ||
|
master 819c91ea 2016-05-07 12:03 Ported: N/A Details Diff |
lmdb: Sync to upstream. | ||
| mod - src/lmdb/mdb.c | Diff File | ||
|
master 13c8e62b 2016-05-07 11:47 Ported: N/A Details Diff |
Coverity: Fix newly raised defects. | ||
| mod - src/lib/bsys.c | Diff File | ||
|
master 0736fd0b 2016-05-07 01:43 Ported: N/A Details Diff |
stored: Remove unused struct member ser_buf. | ||
| mod - src/stored/record.c | Diff File | ||
| mod - src/stored/record.h | Diff File | ||
|
master ed936eab 2016-05-06 15:38 Frank Bergkemper Ported: N/A Details Diff |
Merge branch 'bareos-15.2' | ||
| mod - config/autoload/global.php | Diff File | ||
| mod - module/Application/src/Application/Controller/Plugin/SessionTimeoutPlugin.php | Diff File | ||
| mod - module/Restore/src/Restore/Controller/RestoreController.php | Diff File | ||
|
master 1bfee925 2016-05-06 15:18 Frank Bergkemper Ported: N/A Details Diff |
navbar cleanup | ||
| mod - module/Application/view/layout/layout.phtml | Diff File | ||
|
master fe4cb8da 2016-05-06 14:56 Frank Bergkemper Ported: N/A Details Diff |
Removes no longer needed view helpers | ||
| mod - module/Application/Module.php | Diff File | ||
| mod - module/Application/autoload_classmap.php | Diff File | ||
| mod - module/Application/config/module.config.php | Diff File | ||
| rm - module/Application/src/Application/View/Helper/Bytes.php | Diff File | ||
| rm - module/Application/src/Application/View/Helper/Date.php | Diff File | ||
| rm - module/Application/src/Application/View/Helper/Expiration.php | Diff File | ||
| rm - module/Application/src/Application/View/Helper/HumanReadableTimeperiod.php | Diff File | ||
| rm - module/Application/src/Application/View/Helper/JobStatus.php | Diff File | ||
| rm - module/Application/src/Application/View/Helper/JobType.php | Diff File | ||
| rm - module/Application/src/Application/View/Helper/Retention.php | Diff File | ||
| rm - module/Application/src/Application/View/Helper/StatusGlyphicons.php | Diff File | ||
|
master fcf0a463 2016-05-05 21:32 Ported: N/A Details Diff |
plugins: Remove unused function parse_boolean() Removed parse_boolean() function in plugins that don't use it. Also free the basedir in some plugins where this was not done before. |
||
| mod - src/plugins/filed/bpipe-fd.c | Diff File | ||
| mod - src/plugins/filed/cephfs-fd.c | Diff File | ||
| mod - src/plugins/filed/gfapi-fd.c | Diff File | ||
| mod - src/plugins/filed/rados-fd.c | Diff File | ||
|
master c4bab8b5 2016-05-04 19:56 Frank Bergkemper Ported: N/A Details Diff |
Fix: Wrong cookie lifetime Sets the cookie lifetime to zero to reset session lifetime to it's maximum with every click, this was set to a wrong value. Also session maximum life- and idle-time is now set to one hour by default. These settings should be configurable via an ini file in future. In addition, the session idle-timeout controller plugin is probably no longer needed, which would require some code cleanup. Fixes 0000648: Timeout way too short and other options that need to be configurable |
||
| mod - config/autoload/global.php | Diff File | ||
| mod - module/Application/src/Application/Controller/Plugin/SessionTimeoutPlugin.php | Diff File | ||
|
master bddf6e24 2016-05-04 15:50 Frank Bergkemper Ported: N/A Details Diff |
Remove control characters which lead to broken json and a non browseable filetree | ||
| mod - module/Restore/src/Restore/Controller/RestoreController.php | Diff File | ||
|
master ea4df972 2016-05-03 17:50 Committer: mvwieringen Ported: N/A Details Diff |
Fix memleak in parse_conf.c:125 | ||
| mod - src/lib/parse_conf.c | Diff File | ||
|
master cbffcf72 2016-05-03 15:43 Frank Bergkemper Ported: N/A Details Diff |
Fix: Used empty() on a function instead of a variable | ||
| mod - module/Auth/src/Auth/Controller/AuthController.php | Diff File | ||
|
master 3b86e541 2016-05-03 12:43 Ported: N/A Details Diff |
fix memleak in stored/authenticate.c:68 | ||
| mod - src/stored/authenticate.c | Diff File | ||
|
master 8a4cf64a 2016-05-02 15:46 Joerg Steffens Ported: N/A Details Diff |
cleanup index | ||
| mod - manuals/en/main/autochangers.tex | Diff File | ||
| mod - manuals/en/main/consoleconf.tex | Diff File | ||
| mod - manuals/en/main/filedconf.tex | Diff File | ||
| mod - manuals/en/main/general.tex | Diff File | ||
| mod - manuals/en/main/storedconf.tex | Diff File | ||
|
master 1fb45753 2016-05-02 14:40 Joerg Steffens Ported: N/A Details Diff |
typo | ||
| mod - manuals/en/main/configure.tex | Diff File | ||
|
master 94c866ea 2016-05-02 14:39 Ported: N/A Details Diff |
Update SPONSORS.md | ||
| mod - SPONSORS.md | Diff File | ||
|
master 3501c84f 2016-05-02 12:04 Philipp Storz Ported: N/A Details Diff |
adapt for php7 on Ubuntu 16.04 | ||
| mod - debian/control | Diff File | ||
| mod - debian/postinst | Diff File | ||
|
master 8acdb062 2016-05-02 12:04 Philipp Storz Committer: Frank Bergkemper Ported: N/A Details Diff |
adapt for php7 on Ubuntu 16.04 | ||
| mod - debian/control | Diff File | ||
| mod - debian/postinst | Diff File | ||
|
master b6e9a899 2016-04-29 19:53 xtruthx Ported: N/A Details Diff |
Merge pull request 0000021 from xtruthx/master added the overrride option SpoolData to the description |
||
| mod - manuals/en/main/director-resource-schedule-definitions.tex | Diff File | ||
|
master f0b23baa 2016-04-29 19:37 xtruthx Ported: N/A Details Diff |
added the overrride option SpoolData to the description | ||
| mod - manuals/en/main/director-resource-schedule-definitions.tex | Diff File | ||
|
master fc8df406 2016-04-29 18:38 Jörg Steffens Ported: N/A Details Diff |
Merge pull request 0000020 from samirfor/patch-1 typo inerpretation -> interpretation |
||
| mod - manuals/en/main/plugins.tex | Diff File | ||
|
master 5e80395d 2016-04-29 17:43 samirfor Ported: N/A Details Diff |
typo inerpretation -> interpretation | ||
| mod - manuals/en/main/plugins.tex | Diff File | ||