Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace HTTP links with HTTPS links #82

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Daniel Pocock <http://danielpocock.com>
Daniel Pocock <https://danielpocock.com>
Juliana Louback <http://julianalouback.com>
Christian Henz <https://github.com/chenz>
Jeroen Massar <http://jeroen.massar.ch>
Jeroen Massar <https://jeroen.massar.ch>
elprincipe <https://github.com/elprincipe>
Yehuda Korotkin <https://github.com/yedako>
Carla Araos <http://carlaaraos.com>
Expand Down
6 changes: 3 additions & 3 deletions INTEGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Integrating JSCommunicator
Setting up a SIP over WebSocket server
--------------------------------------

See the [Real-Time Communication Quick Start Guide](http://rtcquickstart.org)
See the [Real-Time Communication Quick Start Guide](https://rtcquickstart.org)
for details about setting up a SIP and TURN server to support WebRTC
calls.

Expand All @@ -29,7 +29,7 @@ Regardless of which framework and scripting language is in use, the
approach to integrating JSCommunicator is almost always the same:

1. Check if an existing plugin exists. For example, the
[DruCall plugin for the Drupal CMS](http://drucall.org) or
[DruCall plugin for the Drupal CMS](https://drucall.org) or
[WPCall plugin for WebRTC with Wordpress](http://wpcall.org) are both
based on JSCommunicator. Using an existing plugin is often easier than
creating one yourself.
Expand Down Expand Up @@ -148,7 +148,7 @@ approach to integrating JSCommunicator is almost always the same:
they are permitted to call.

The purpose and syntax of each token is explained in the
[reSIProcate wiki page](http://www.resiprocate.org/SIP_Over_WebSocket_Cookies)
[reSIProcate wiki page](https://www.resiprocate.org/SIP_Over_WebSocket_Cookies)

The DruCall plugin for Drupal can set either URL parameters
(by modifying the WebSocket URL string in config.js) or cookies
Expand Down
2 changes: 1 addition & 1 deletion INTERNATIONALIZATION_README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jquery.i18n.properties-1.0.9.js (see https://code.google.com/p/jquery-i18n-prope
Observed bugs
------------------------------------------------

It is recommended to consult the HTML language code (reference http://www.w3schools.com/tags/ref_language_codes.asp). Theoretically, you can invent your own code, and (provided the code in available_languages.xml corresponds to the name of the .properties file) the select language menu will work. However, the page will not load automatically with the browser language preference (as this uses the HTML language code.
It is recommended to consult the HTML language code (reference https://www.w3schools.com/tags/ref_language_codes.asp). Theoretically, you can invent your own code, and (provided the code in available_languages.xml corresponds to the name of the .properties file) the select language menu will work. However, the page will not load automatically with the browser language preference (as this uses the HTML language code.

In addition, different browsers may use different variations of code. For example: ‘en’ and ‘en_US’. To work around this, feel free to make multiple versions of your translation (example: Messages_en.properties and Messages_en_US.properties). Of course, you only need to add one to the available_languages.xml.

Expand Down
4 changes: 2 additions & 2 deletions JSCommManager.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/****************************************************************************
JSCommunicator
http://jscommunicator.org
https://jscommunicator.org

Copyright (C) 2013-2015 Daniel Pocock http://danielpocock.com
Copyright (C) 2013-2015 Daniel Pocock https://danielpocock.com
Copyright (C) 2014 Juliana Louback http://julianalouback.com

The JavaScript code in this page is free software: you can
Expand Down
6 changes: 3 additions & 3 deletions JSCommUI.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/****************************************************************************
JSCommunicator
http://jscommunicator.org
https://jscommunicator.org

Copyright (C) 2013-2015 Daniel Pocock http://danielpocock.com
Copyright (C) 2013-2015 Daniel Pocock https://danielpocock.com
Copyright (C) 2014 Juliana Louback http://julianalouback.com

The JavaScript code in this page is free software: you can
Expand All @@ -18,7 +18,7 @@
provided you include this license notice and a URL
through which recipients can access the Corresponding Source.

Portions of this file adapted from JsSIP, http://jssip.net
Portions of this file adapted from JsSIP, https://jssip.net

Copyright © 2012-2013 José Luis Millán – Versatica <http://www.versatica.com>

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ JSCommunicator is a WebRTC communication tool developed in HTML, CSS
and JavaScript. It supports voice, video and chat messaging using the
SIP protocol over WebSockets.

Please see http://jscommunicator.org for more details about features,
Please see https://jscommunicator.org for more details about features,
examples, mailing lists and the latest source code.

Server requirements
Expand All @@ -18,12 +18,12 @@ SIP over WebSockets transport.
Only recent versions of the SIP proxies support WebSockets.

repro from reSIProcate
http://www.resiprocate.org
https://www.resiprocate.org

Kamailio
http://www.kamailio.org
https://www.kamailio.org

See the [Real-Time Communication Quick Start Guide](http://rtcquickstart.org)
See the [Real-Time Communication Quick Start Guide](https://rtcquickstart.org)
for details about setting up a SIP and TURN server to support WebRTC
calls.

Expand Down Expand Up @@ -74,7 +74,7 @@ Use cases
managed by a CMS. Configure the CMS to send the JavaScript to
the user or include <script> tags within the content body with
the phone fragment. The DruCall module for Drupal provides
an excellent example of how to do this, see http://drucall.org
an excellent example of how to do this, see https://drucall.org

Interaction with other JavaScript applications in a web page
------------------------------------------------------------
Expand Down Expand Up @@ -106,9 +106,9 @@ License
-------

JSCommunicator
http://jscommunicator.org
https://jscommunicator.org

Copyright (C) 2013-2015 Daniel Pocock http://danielpocock.com
Copyright (C) 2013-2015 Daniel Pocock https://danielpocock.com

The JavaScript code in this page is free software: you can
redistribute it and/or modify it under the terms of the GNU
Expand Down
6 changes: 3 additions & 3 deletions code_grabber
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#!/bin/sh

wget http://code.jquery.com/jquery-1.7.2.min.js -O jquery.js
wget https://code.jquery.com/jquery-1.7.2.min.js -O jquery.js
wget https://freephonebox.net/jssip.js -O jssip.js
wget http://arbiterjs.com/Arbiter.js -O Arbiter.js
wget https://arbiterjs.com/Arbiter.js -O Arbiter.js
wget https://jquery-i18n-properties.googlecode.com/files/jquery.i18n.properties-min-1.0.9.js -O jquery.i18n.properties.js

mkdir -p font-awesome/css
mkdir -p font-awesome/fonts

mkdir -p temp
wget -P temp http://jqueryui.com/resources/download/jquery-ui-1.10.4.zip
wget -P temp https://jqueryui.com/resources/download/jquery-ui-1.10.4.zip
unzip -d temp temp/jquery-ui-1.10.4.zip
cp temp/jquery-ui-1.10.4/js/jquery-ui-1.10.4.min.js jquery-ui.js
cp temp/jquery-ui-1.10.4/css/ui-lightness/jquery-ui-1.10.4.css jquery-ui.css
Expand Down
4 changes: 2 additions & 2 deletions config-sample.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ JSCommSettings = {

/****************************************************************************
JSCommunicator
http://jscommunicator.org
https://jscommunicator.org

Copyright (C) 2013-2015 Daniel Pocock http://danielpocock.com
Copyright (C) 2013-2015 Daniel Pocock https://danielpocock.com
Copyright (C) 2014 Juliana Louback http://julianalouback.com

The JavaScript code in this page is free software: you can
Expand Down
4 changes: 2 additions & 2 deletions event-demo.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/****************************************************************************
JSCommunicator
http://jscommunicator.org
https://jscommunicator.org

Copyright (C) 2014-2015 Daniel Pocock http://danielpocock.com
Copyright (C) 2014-2015 Daniel Pocock https://danielpocock.com
Copyright (C) 2014 Juliana Louback http://julianalouback.com

The JavaScript code in this page is free software: you can
Expand Down
2 changes: 1 addition & 1 deletion i18n.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
JSCommunicator
http://jscommunicator.org
https://jscommunicator.org

Copyright (C) 2014 Kengne Mabou Hervé Frantz https://github.com/elprincipe
Copyright (C) 2014 Juliana Louback http://julianalouback.com
Expand Down
4 changes: 2 additions & 2 deletions init.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/****************************************************************************
JSCommunicator
http://jscommunicator.org
https://jscommunicator.org

Copyright (C) 2013-2015 Daniel Pocock http://danielpocock.com
Copyright (C) 2013-2015 Daniel Pocock https://danielpocock.com

The JavaScript code in this page is free software: you can
redistribute it and/or modify it under the terms of the GNU
Expand Down
2 changes: 1 addition & 1 deletion jscommunicator.inc
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@

<div id="error">
<span id="js">ERROR: This service requires JavaScript. Please enable JavaScript in your web browser settings.</span>
<span id="webrtc">ERROR: This service requires WebRTC. Please try <a href="http://www.mozilla.org">Mozilla Firefox</a> or <a href="http://www.google.com/chrome">Google Chrome</a>, using the latest version is strongly recommended.</span>
<span id="webrtc">ERROR: This service requires WebRTC. Please try <a href="https://www.mozilla.org">Mozilla Firefox</a> or <a href="https://www.google.com/chrome">Google Chrome</a>, using the latest version is strongly recommended.</span>
<span id="no-config">ERROR: JsCommunicator configuration not found</span>
<span id="ua-init-failure">ERROR: Failed to initialize user agent</span>
<span id="reg-fail">ERROR: SIP Registration failure</span>
Expand Down
4 changes: 2 additions & 2 deletions jssip-helper.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/****************************************************************************
JSCommunicator
http://jscommunicator.org
https://jscommunicator.org

Copyright (C) 2013-2015 Daniel Pocock http://danielpocock.com
Copyright (C) 2013-2015 Daniel Pocock https://danielpocock.com

The JavaScript code in this page is free software: you can
redistribute it and/or modify it under the terms of the GNU
Expand Down
4 changes: 2 additions & 2 deletions style-event-demo.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/****************************************************************************
JSCommunicator
http://jscommunicator.org
https://jscommunicator.org

Copyright (C) 2014-2015 Daniel Pocock http://danielpocock.com
Copyright (C) 2014-2015 Daniel Pocock https://danielpocock.com

The JavaScript code in this page is free software: you can
redistribute it and/or modify it under the terms of the GNU
Expand Down
4 changes: 2 additions & 2 deletions style-horizontal.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/****************************************************************************
JSCommunicator
http://jscommunicator.org
https://jscommunicator.org

Copyright (C) 2013-2015 Daniel Pocock http://danielpocock.com
Copyright (C) 2013-2015 Daniel Pocock https://danielpocock.com

The JavaScript code in this page is free software: you can
redistribute it and/or modify it under the terms of the GNU
Expand Down
4 changes: 2 additions & 2 deletions webrtc-check.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/****************************************************************************
JSCommunicator
http://jscommunicator.org
https://jscommunicator.org

Copyright (C) 2013-2015 Daniel Pocock http://danielpocock.com
Copyright (C) 2013-2015 Daniel Pocock https://danielpocock.com

The JavaScript code in this page is free software: you can
redistribute it and/or modify it under the terms of the GNU
Expand Down