/usr/share/drupal7/modules/jssip/jssip.module is in drupal7-mod-jssip 1.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | <?php
/**
* @file
* Libraries API functions for the JsSIP module.
*
* JsSIP is a JavaScript implementation of Session Initiation Protocol
* (SIP) from RFC 3261, a popular protocol for Internet-based
* voice, video, chat, desktop sharing and other real-time protocols.
*/
/**
* hook_libraries_info() implementation for the jssip library module.
*
* JsSIP is a JavaScript implementation of Session Initiation Protocol
* (SIP) from RFC 3261, a popular protocol for Internet-based
* voice, video, chat, desktop sharing and other real-time protocols.
*
* Please download the JsSIP JavaScript source file to the directory
*
* $(DRUPAL_HOME)/libraries/jssip/jssip.js
*
* and manually create a VERSION file corresponding to the version
* in use, for example:
*
* echo 1.0.0 > $(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 array
* 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;
}
|