pax_global_header00006660000000000000000000000064122645543160014522gustar00rootroot0000000000000052 comment=b515392cd6d8cf934a7de675c3180a2a2bf2f5bc drupal-mod-jssip-1.0.0/000077500000000000000000000000001226455431600147125ustar00rootroot00000000000000drupal-mod-jssip-1.0.0/COPYING000066400000000000000000000027001226455431600157440ustar00rootroot00000000000000 This module wrapper for JsSIP to be used in Drupal is licensed under the terms of the GPLv2 or later. Copyright (C) 2013 Daniel Pocock http://danielpocock.com The JsSIP JavaScript code itself is licensed under MIT terms Copyright (C) 2012-2013 José Luis Millán – Versatica The MIT License --------------- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. NOTE: The original MIT License text can be found at http://opensource.org/licenses/mit-license.php drupal-mod-jssip-1.0.0/README.txt000066400000000000000000000010311226455431600164030ustar00rootroot00000000000000 Unpack the libraries API into your Drupal 7 modules directory Unpack this jssip module into your Drupal 7 modules directory Relative to the Drupal home, mkdir -p sites/all/libraries/jssip Download JsSIP.min.js from http://jssip.net/download into sites/all/libraries/jssip Create the VERSION file: echo "0.3.7" > sites/all/libraries/jssip/VERSION Now log in to Drupal, go to the Modules administration page and enable the modules: * libraries * jssip Finally, install and enable any other modules that want to use JsSIP drupal-mod-jssip-1.0.0/dev-notes.txt000066400000000000000000000002601226455431600173550ustar00rootroot00000000000000 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-jssip-1.0.0/jssip.info000066400000000000000000000002001226455431600167070ustar00rootroot00000000000000name = JsSIP description = SIP over WebSocket library for WebRTC package = JsSIP core = 7.x dependencies[] = libraries (>=2.x) drupal-mod-jssip-1.0.0/jssip.module000066400000000000000000000024261226455431600172550ustar00rootroot00000000000000 $(DRUPAL_HOME)/libraries/jssip/VERSION * * The JsSIP 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 jssip_libraries_info() { $libraries['jssip'] = array( 'name' => 'JsSIP', 'vendor url' => 'http://jssip.net', 'download url' => 'http://jssip.net/download/', 'version arguments' => array( 'file' => 'VERSION', 'pattern' => '@([0-9\.]+)@', 'lines' => 1, 'cols' => 8, ), 'files' => array( 'js' => array( 'JsSIP.js', ), ), ); return $libraries; }