Log of /contributions/modules/bitcache/bitcache.inc
Parent Directory
|
Revision Log
|
Revision Graph
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.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.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.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.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().
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.