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

Log of /contributions/modules/bitcache/bitcache.install

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.11 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jul 1 04:09:48 2009 UTC (4 months, 3 weeks ago) by arto
Branch: MAIN
CVS Tags: HEAD
Changes since 1.10: +18 -0 lines
Diff to previous 1.10
Changelog:
- #433708: Implemented support for tokenized file system repository paths.
- Added an optional repository parameter to the Services API method 'bitcache.put'.

Revision 1.10 - (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.9: +75 -0 lines
Diff to previous 1.9
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.9 - (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
CVS Tags: DRUPAL-6--1-0-BETA2
Changes since 1.8: +248 -1 lines
Diff to previous 1.8
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.8 - (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.7: +0 -0 lines
Diff to previous 1.7
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.7 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Oct 15 13:44:19 2008 UTC (13 months, 1 week ago) by arto
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-ALPHA3
Changes since 1.6: +4 -8 lines
Diff to previous 1.6
Improved repository creation screen and help text.

Revision 1.6 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Oct 1 08:32:52 2008 UTC (13 months, 3 weeks ago) by arto
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-ALPHA2
Changes since 1.5: +2 -2 lines
Diff to previous 1.5
Replaced all instances of require_once() with module_load_include(); miscellaneous minor coding conventions cleanup.

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

Revision 1.4 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Jul 15 17:32:02 2008 UTC (16 months, 1 week ago) by arto
Branch: MAIN
Changes since 1.3: +8 -1 lines
Diff to previous 1.3
Implemented support for multiple repositories.

Revision 1.3 - (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.2: +4 -1 lines
Diff to previous 1.2
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.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