pax_global_header00006660000000000000000000000064122742404370014517gustar00rootroot0000000000000052 comment=6378108a905bdeb76f397e980d20433b168bbb96 drupal-mod-arbiterjs-1.0.0/000077500000000000000000000000001227424043700155445ustar00rootroot00000000000000drupal-mod-arbiterjs-1.0.0/COPYING000066400000000000000000000004141227424043700165760ustar00rootroot00000000000000 This module wrapper for ArbiterJS to be used in Drupal is licensed under the terms of the GPLv2 or later. Copyright (C) 2014 Daniel Pocock http://danielpocock.com The ArbiterJS JavaScript code itself is public domain The author is Matt Kruse, http://mattkruse.com drupal-mod-arbiterjs-1.0.0/README.txt000066400000000000000000000010511227424043700172370ustar00rootroot00000000000000 Unpack the libraries API into your Drupal 7 modules directory Unpack this arbiterjs module into your Drupal 7 modules directory Relative to the Drupal home, mkdir -p sites/all/libraries/arbiterjs Download Arbiter.js from http://arbiterjs.com/ into sites/all/libraries/arbiterjs Create the VERSION file: echo "1.0" > sites/all/libraries/arbiterjs/VERSION Now log in to Drupal, go to the Modules administration page and enable the modules: * libraries * arbiterjs Finally, install and enable any other modules that want to use ArbiterJS drupal-mod-arbiterjs-1.0.0/arbiterjs.info000066400000000000000000000002321227424043700204030ustar00rootroot00000000000000name = ArbiterJS description = Client-side publish/subscriber framework for JavaScript package = ArbiterJS core = 7.x dependencies[] = libraries (>=2.x) drupal-mod-arbiterjs-1.0.0/arbiterjs.module000066400000000000000000000020641227424043700207420ustar00rootroot00000000000000 $(DRUPAL_HOME)/libraries/arbiterjs/VERSION * * @return * An associative array whose keys are internal names of libraries * and whose values are describing each library. */ function arbiterjs_libraries_info() { $libraries['arbiterjs'] = array( 'name' => 'ArbiterJS', 'vendor url' => 'http://arbiterjs.com', 'download url' => 'http://arbiterjs.com/', 'version arguments' => array( 'file' => 'VERSION', 'pattern' => '@([0-9\.]+)@', 'lines' => 1, 'cols' => 8, ), 'files' => array( 'js' => array( 'Arbiter.js', ), ), ); return $libraries; } drupal-mod-arbiterjs-1.0.0/dev-notes.txt000066400000000000000000000002601227424043700202070ustar00rootroot00000000000000 http://drupalcode.org/project/libraries.git/blob/refs/heads/7.x-2.x:/libraries.api.php#l7 http://drupal.org/documentation/modules/libraries http://drupal.org/node/1342238