pax_global_header00006660000000000000000000000064124267341430014520gustar00rootroot0000000000000052 comment=ac963e3a52e6bce6b78c11aa15cdcc16f78d1525 drupal-mod-jscommunicator-7.x-1.1/000077500000000000000000000000001242673414300170725ustar00rootroot00000000000000drupal-mod-jscommunicator-7.x-1.1/COPYING000066400000000000000000000004121242673414300201220ustar00rootroot00000000000000 This module wrapper for JSCommunicator to be used in Drupal is licensed under the terms of the GPLv2 or later. The JSCommunicator JavaScript code itself is licensed under the terms of the GPLv2 or later. Copyright (C) 2013 Daniel Pocock http://danielpocock.com drupal-mod-jscommunicator-7.x-1.1/README.txt000066400000000000000000000013771242673414300206000ustar00rootroot00000000000000 Unpack the libraries API into your Drupal 7 modules directory Unpack the ArbiterJS module into your Drupal 7 modules directory Unpack the jssip module into your Drupal 7 modules directory Unpack this jscommunicator module into your Drupal 7 modules directory Relative to the Drupal home, mkdir -p sites/all/libraries/jscommunicator Download JSComm.js from http://jscommunicator.org/download into sites/all/libraries/jscommunicator Create the VERSION file: echo "1.0.1" > sites/all/libraries/jscommunicator/VERSION Now log in to Drupal, go to the Modules administration page and enable the modules: * libraries * arbiterjs * jssip * jscommunicator Finally, install and enable any other modules that want to use JSCommunicator such as DruCall. drupal-mod-jscommunicator-7.x-1.1/dev-notes.txt000066400000000000000000000002601242673414300215350ustar00rootroot00000000000000 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 drupal-mod-jscommunicator-7.x-1.1/jscommunicator.info000066400000000000000000000003661242673414300230110ustar00rootroot00000000000000name = JSCommunicator description = SIP Phone for WebRTC package = JSCommunicator core = 7.x dependencies[] = libraries (>=2.x) dependencies[] = jssip dependencies[] = arbiterjs dependencies[] = jqueryi18nproperties dependencies[] = fontawesome drupal-mod-jscommunicator-7.x-1.1/jscommunicator.module000066400000000000000000000026361242673414300233450ustar00rootroot00000000000000 $(DRUPAL_HOME)/libraries/jscommunicator/VERSION * * The JSCommunicator module is currently known to be used by version 7.x-2.x * of the DruCall module - see http://drucall.org for source code * and a live demonstration. * * @return * An associative array whose keys are internal names of libraries * and whose values are describing each library. */ function jscommunicator_libraries_info() { $libraries['jscommunicator'] = array( 'name' => 'JSCommunicator', 'vendor url' => 'http://jscommunicator.org', 'download url' => 'http://jscommunicator.org/download/', 'version arguments' => array( 'file' => 'VERSION', 'pattern' => '@([0-9\.]+)@', 'lines' => 1, 'cols' => 8, ), 'files' => array( 'js' => array( 'JSComm.js', ), ), ); return $libraries; }