/[drupal]/contributions/modules/bitcache/bitcache.inc
ViewVC logotype

Log of /contributions/modules/bitcache/bitcache.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Tag:

Revision 1.21 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Oct 1 03:48:28 2009 UTC (8 weeks, 2 days ago) by arto
Branch: MAIN
CVS Tags: HEAD
Changes since 1.20: +1 -0 lines
Diff to previous 1.20
#432986: Ensure proc_close() is always explicitly called after proc_open().

Revision 1.20 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Oct 1 03:47:14 2009 UTC (8 weeks, 2 days ago) by arto
Branch: MAIN
Changes since 1.19: +10 -8 lines
Diff to previous 1.19
#432986: Prevent a proc_open() warning on Windows due to missing 'file' binary.

Revision 1.19 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jul 1 08:55:37 2009 UTC (4 months, 4 weeks ago) by arto
Branch: MAIN
Changes since 1.18: +15 -9 lines
Diff to previous 1.18
Implemented initial Rules module integration.

Revision 1.18 - (view) (download) (as text) (annotate) - [select for diffs]
Tue May 19 15:27:22 2009 UTC (6 months, 1 week ago) by arto
Branch: MAIN
Changes since 1.17: +30 -4 lines
Diff to previous 1.17
Changelog:
- Implemented hook_form_alter() to display a warning on the Global Redirect settings page in case the 'Deslash' option is enabled.
- Added a new database table, {bitcache_index}, for keeping track of which repositories have which bitstreams.
- Added schema update #6005 for creating the {bitcache_index} table.
- Added schema update #6006 for populating the {bitcache_index} table.
- Implemented index updates on bitstream creation and deletion.
- Ensured the absence of a superfluous language prefix for the URLs returned by bitcache_resolve_id() and bitcache_l().

Revision 1.17 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Apr 10 10:00:13 2009 UTC (7 months, 2 weeks ago) by arto
Branch: MAIN
Changes since 1.16: +2 -2 lines
Diff to previous 1.16
Changelog:
- Added a new API function bitcache_id_file() to replace the direct usage of sha1_file().
- Replaced usage of sha1() and sha1_file() with bitcache_id() and bitcache_id_file().
- Imported a dummy backend for use as a template for implementing storage adapters.
- Implemented an Amazon S3 storage adapter using the Tarzan library <http://tarzan-aws.com/>.

Revision 1.16 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Mar 18 06:24:00 2009 UTC (8 months, 1 week ago) by arto
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-BETA2
Changes since 1.15: +23 -15 lines
Diff to previous 1.15
Fixed bitstream downloads with storage adapters that don't provide a stream resource for use with fpassthru().

Revision 1.15 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Mar 13 10:06:11 2009 UTC (8 months, 2 weeks ago) by arto
Branch: MAIN
Changes since 1.14: +29 -3 lines
Diff to previous 1.14
Implemented a GDBM database storage adapter in adapters/dba.inc.

Revision 1.14 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Mar 13 05:54:37 2009 UTC (8 months, 2 weeks ago) by arto
Branch: MAIN
Changes since 1.13: +11 -1 lines
Diff to previous 1.13
Implemented a PHP Data Objects (PDO) database storage adapter in adapters/pdo.inc.

Revision 1.13 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Mar 12 11:13:05 2009 UTC (8 months, 2 weeks ago) by arto
Branch: MAIN
Changes since 1.12: +65 -213 lines
Diff to previous 1.12
Changelog:
- Implemented support for multiple storage adapters that provide backends for Bitcache repositories.
- Factored out the file system storage adapter into adapters/file.inc.
- Implemented a Drupal-specific SQL database storage adapter in adapters/sql.inc.
- Added a storage adapter selection box to the repository creation screen.
- Added a storage adapter listing to the module's settings screen.
- Improved the usability of the repository creation screen.
- Implemented repository-limited bitstream listing and management screens.
- Prevented modification of the default repository or repositories explicitly owned by modules.
- Refactored the storage of repository definitions and related API functions.
- Defined a new database table, {bitcache_data}, to serve as the default Bitcache repository.
- Added schema update #6002 for creating the new {bitcache_data} table.
- Defined a new database table, {bitcache_repositories}, for holding repository definitions and configuration.
- Added schema update #6003 for creating the new {bitcache_repositories} table.
- Added schema update #6004 for migrating repository definitions from the {variable} table to {bitcache_repositories}.
- Provided a new hook, hook_bitcache_algorithms(), for declaring fingerprinting, compression and encryption algorithms.
- Provided a new hook, hook_bitcache_adapters(), for declaring storage adapters for Bitcache.
- Added a new API function bitcache_get_adapters() for retrieving information on available storage adapters.
- Added new API functions bitcache_get_path(), bitcache_get_size(), and bitcache_get_type().
- Added new API functions bitcache_get_schema(), bitcache_get_repository_tables() and bitcache_get_adapter_class().
- Renamed bitcache_get_total_count() to bitcache_get_repository_count().
- Renamed bitcache_get_total_size() to bitcache_get_repository_size().
- Removed bitcache_get_repository_path() and bitcache_get_repository_settings().
- Replaced bitcache_get_repository_proxy() with bitcache_get_repository(NULL).
- Changed Bitcache_Repository from an interface to an abstract base class.

Revision 1.12 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Mar 8 03:24:00 2009 UTC (8 months, 3 weeks ago) by arto
Branch: MAIN
Changes since 1.11: +18 -8 lines
Diff to previous 1.11
#384000 by miglius: Implemented triggers for bitstream creation and deletion.

Revision 1.11 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Mar 8 02:09:02 2009 UTC (8 months, 3 weeks ago) by arto
Branch: MAIN
Changes since 1.10: +9 -0 lines
Diff to previous 1.10
Added the new API method Bitcache_Stream->data() and the new API function bitcache_id().

Revision 1.10 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Feb 2 07:06:16 2009 UTC (9 months, 3 weeks ago) by arto
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-BETA1
Changes since 1.9: +0 -0 lines
Diff to previous 1.9
Merged latest changes from http://github.com/bendiken/drupal-bitcache (37c8223).

Changelog:
- #365077: Prevent timeouts when manually importing a bitstream from a URL.
- Fixed the recommended installation path in README.txt.
- Added a note about the Bitcache command-line tools to INSTALL.txt.
- Implemented a new setting for configuring the path to the Bitcache command-line tools.
- Renamed the previous 'synchronization' setting to 'cron script'.
- Implemented the new API functions bitcache_sync(), bitcache_exec(), bitcache_yaml(), and bitcache_tmpname().

Revision 1.9 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Dec 1 11:02:32 2008 UTC (11 months, 3 weeks ago) by arto
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-ALPHA3
Changes since 1.8: +43 -13 lines
Diff to previous 1.8
Merged latest changes from http://github.com/bendiken/drupal-bitcache (762dda8).

Changelog:
- Implemented a new API function bitcache_uri_to_id().
- Improved Bitcache_Stream::mime_type() for better MIME type detection robustness.
- #279239 by memfis: Implemented support for HTTP requests using non-clean URLs in the HTTP endpoint.
- Always use bitcache_resolve_id() to construct bitstream URLs in order to consistently support non-clean URLs.
- Implemented a new API function bitcache_get_modules().
- Expanded the bitcache_get_modules() API function to support 'info' and 'titles' operations in addition to returning module names.
- Implemented a table on the configuration screen displaying the currently installed modules supporting the Bitcache API.
- Implemented target repository selection on the upload/fetch administration screens.
- #336715: Implemented a new API function bitcache_link(), enabling better opportunities for encapsulating the storage location for e.g. Amazon S3 backends.
- Fixed an error in bitcache_get_modules() when no modules implementing the Bitcache API are installed.
- #338506: Implemented more useful Cache-Control headers to override the Drupal default headers and allow bitstreams to be cached by private caches.
- #282164 by sonnen: Implemented support for multi-tier directory storage structures.
- Fixed disk utilization totals calculation in Bitcache_FilesystemRepository::size().

Revision 1.8 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Oct 1 08:31:27 2008 UTC (13 months, 4 weeks ago) by arto
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-ALPHA2
Changes since 1.7: +241 -39 lines
Diff to previous 1.7
Refactored API internals for consistency of single-repository vs multi-repository operations; documented the PHP API functions.

Revision 1.7 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Oct 1 08:27:58 2008 UTC (13 months, 4 weeks ago) by arto
Branch: MAIN
Changes since 1.6: +0 -0 lines
Diff to previous 1.6
Refactored API internals for consistency of single-repository vs multi-repository operations; documented the PHP API functions.

Revision 1.6 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Oct 1 08:25:51 2008 UTC (13 months, 4 weeks ago) by arto
Branch: MAIN
Changes since 1.5: +2 -9 lines
Diff to previous 1.5
Removed spurious, non-Drupalesque PHPDoc file headers.

Revision 1.5 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Sep 2 06:19:43 2008 UTC (14 months, 3 weeks ago) by arto
Branch: MAIN
Changes since 1.4: +2 -2 lines
Diff to previous 1.4
Refactored API for multi-repository operations.

Revision 1.4 - (view) (download) (as text) (annotate) - [select for diffs]
Fri May 9 11:15:59 2008 UTC (18 months, 2 weeks ago) by arto
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-ALPHA1
Changes since 1.3: +1 -1 lines
Diff to previous 1.3
Imported latest 6.x version from SVN development repository.

Changelog:
- Right-align the bitstream size column in the administration interface.
- Implemented the Services API hook_service().
- Implemented hook_hook_info().
- Implemented hook_action_info().
- Create the default repository directory on installation (#254691 by Surprise).
- Bug fix for hook_bitcache() invocations returning FALSE (#237453 by miglius).
- Implemented a new admin feature to fetch a bitstream from a URL.
- Updated menu item definitions for Drupal 6.2 compatibility.
- Fleshed out API.txt with material from handbook.
- Added sponsors to README.txt.
- Wrote installation instructions in INSTALL.txt.

Revision 1.3 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Feb 26 22:06:18 2008 UTC (21 months ago) by arto
Branch: MAIN
Changes since 1.2: +26 -18 lines
Diff to previous 1.2
Imported latest 6.x version from SVN development repository.

Changelog:
- Added API functions bitcache_get_stream() and bitcache_get_contents().
- Implemented hook_bitcache() triggers; enabled REST API by default.

Revision 1.2 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Feb 6 10:13:55 2008 UTC (21 months, 3 weeks ago) by arto
Branch: MAIN
Changes since 1.1: +0 -0 lines
Diff to previous 1.1
Imported latest 6.x version from SVN development repository.

Changelog:
- Added watchdog logging of bitstream creation and deletion.
- Return a 404 if attempting to view admin page for non-existent bitstream.
- Added a new setting for determining the default bitstream download method.
- Implemented a new API function bitcache_resolve_uri().

Revision 1.1 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Jan 24 22:33:53 2008 UTC (22 months ago) by arto
Branch: MAIN
Initial import of Bitcache, a content-addressable repository for data storage.

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

  ViewVC Help
Powered by ViewVC 1.1.2