Skip to content

Commit

Permalink
Use https for wammu.eu links
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Aug 23, 2016
1 parent cc27fe1 commit f5a015b
Show file tree
Hide file tree
Showing 32 changed files with 84 additions and 84 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# cmake <http://www.cmake.org> build file for Gammu
# Copyright (c) 2007 - 2015 Michal Cihar
# cmake <https://cmake.org/> build file for Gammu
# Copyright (c) 2007 - 2016 Michal Cihar
# vim: expandtab sw=4 ts=4 sts=4:

cmake_minimum_required (VERSION 2.8)
Expand Down Expand Up @@ -899,8 +899,8 @@ set (CPACK_COMPONENT_MEDIA_INSTALL_TYPES Full)
if (WIN32 AND NOT CYGWIN)
set (CPACK_PACKAGE_INSTALL_DIRECTORY "Gammu ${GAMMU_VERSION}")
set (CPACK_NSIS_DISPLAY_NAME "Gammu ${GAMMU_VERSION}")
set (CPACK_NSIS_HELP_LINK "http://wammu.eu/support/")
set (CPACK_NSIS_URL_INFO_ABOUT "http://wammu.eu/gammu/")
set (CPACK_NSIS_HELP_LINK "https://wammu.eu/support/")
set (CPACK_NSIS_URL_INFO_ABOUT "https://wammu.eu/gammu/")
set (CPACK_NSIS_CONTACT "michal@cihar.com")
set (CPACK_NSIS_MODIFY_PATH ON)
SET(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "
Expand Down
8 changes: 4 additions & 4 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ChangeLog for Gammu project <http://www.gammu.org/>
ChangeLog for Gammu project <https://wammu.eu/gammu/>
===================================================

Description
Expand Down Expand Up @@ -351,7 +351,7 @@ ChangeLog
[+] * SMSD can now be configured just for sending/receiving.
[-] * Fixed battery status for S40 phones (bug #1301).
[-] * Improved compatibility with Motorola phonebook (bug #1128).
[+] * Lot of documentation improvements, check <http://wammu.eu/docs/devel/docs/>.
[+] * Lot of documentation improvements, check <https://wammu.eu/docs/devel/docs/>.

20100827 - 1.28.90

Expand Down Expand Up @@ -1838,9 +1838,9 @@ use mailing list.
* fixed bug in msvc2005 for getting online files

NOTES: it was annouced on mailing list, but I will remind:
1. http://www.gammu.net/support/texts/road06.php contains a lot of info
1. https://wammu.eu/docs/manual/project/ contains a lot of info
about Nokia & Gammu history, Gammu possible future and many others
2. http://www.gammu.net/support/phones/phonedb.php will be "our"
2. https://wammu.eu/phones/ will be "our"
phone database. It's in beta state, but even now give a lot of info

20051202 - 1.03.20
Expand Down
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Gammu is library and command line utility for mobile phones. It is
released under GNU GPL version 2.

It has been initiated by Marcin Wiacek and other people. Originally the
code was based on Gnokii <http://www.gnokii.org/> and later MyGnokii
code was based on Gnokii <https://www.gnokii.org/> and later MyGnokii
<http://www.mwiacek.com/> projects. Gammu was former (up to version
0.58) called MyGnokii2.

Expand Down Expand Up @@ -42,21 +42,21 @@ help of many contributors.
More information
================

You can find more information on <http://wammu.eu/gammu/>.
You can find more information on <https://wammu.eu/gammu/>.

There is also Gammu manual available in docs/manual. You can build HTML
version of it using make manual-html which is viewable online at
<http://wammu.eu/docs/manual/>.
<https://wammu.eu/docs/manual/>.


Feedback and bug reports
========================

Any feedback is welcome, see <http://wammu.eu/support/> for information
Any feedback is welcome, see <https://wammu.eu/support/> for information
how to contact developers.


Support developers
==================

You can appreciate developers work at <http://wammu.eu/donate/>.
You can appreciate developers work at <https://wammu.eu/donate/>.
4 changes: 2 additions & 2 deletions cmake/templates/gammu.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Group: Hardware/Mobile
%else
Group: Applications/Communications
%endif
Url: http://wammu.eu/gammu/
Source0: http://dl.cihar.com/gammu/releases/%{name}-%{version}.tar.%{extension}
Url: https://wammu.eu/gammu/
Source0: https://dl.cihar.com/gammu/releases/%{name}-%{version}.tar.%{extension}

# Set to 0 to disable PostgreSQL support
%define pqsql 1
Expand Down
38 changes: 19 additions & 19 deletions contrib/php/class_gammu/class.gammu.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,28 @@
| (only if you wan't running daemon)
| I recommended you to use Gammu
| Please visit Official Gammu Website for more information about Gammu
| http://wammu.eu/gammu
| https://wammu.eu/gammu/
|
|
| Change log:
|
| v3.0
| **!!!! Warning... if you use class version 2.x or below
| **!!!! Warning... if you use class version 2.x or below
| **!!!! it is not compatible with this version (3.x)
| **!!!! Please check.. this class only work on PHP 5.2+
| - New method for new gammu technology,
| - Fully support for Windows or Linux OS
|
| v2.1
| - Add function enable_sudo([int])
| - Add function enable_sudo([int])
| set 1 if using sudo for gammu command exe
------------------------------------------*/

class gammu {
/* Initializing gammu bin/EXE */
var $gammu = "/usr/local/bin/gammu";
var $datetime_format = 'Y-m-d H:i:s';

function __construct($gammu_bin_location='',$gammu_config_file='',$gammu_config_section='')
{
$this->gammu = $gammu_bin_location ? $gammu_bin_location : '/usr/local/bin/gammu';
Expand All @@ -52,21 +52,21 @@ function __construct($gammu_bin_location='',$gammu_config_file='',$gammu_config_
$this->gammu = $gammu_config_section != '' ? $this->gammu." -s ". (int) $gammu_config_section ."" : $this->gammu;
}
}

function gammu_exec($options='--identify',$break=0) {
$exec=$this->gammu." ".$options;
exec($exec,$r);
if ($break == 1) { return $r; }
else { return $this->unbreak($r); }
}

function unbreak($r) {
for($i=0;$i<count($r);$i++) {
$response.=$r[$i]."\r\n";
}
return $response;
}

function Identify(&$response)
{
$r = $this->gammu_exec('--identify',1);
Expand All @@ -89,7 +89,7 @@ function Identify(&$response)
return 1;
}
}

function Get()
{
$r = $this->gammu_exec('--getallsms 1',1);
Expand Down Expand Up @@ -117,7 +117,7 @@ function Get()
}
else if (preg_match("#(.+): (.+)#si",$r[$i],$s)) {
if (trim($s[1]) == 'Sent') { $s[2]=date($this->datetime_format,strtotime(trim(trim($s[2]),'"'))); }
if (trim($s[1]) and trim($s[2])) {
if (trim($s[1]) and trim($s[2])) {
$data[$folder][$fid][strtolower(str_replace(" ","_",trim($s[1])))]=trim(trim($s[2]),'"');
}
}
Expand All @@ -129,15 +129,15 @@ function Get()
}
$data[$folder][$fid]['ID']=md5(serialize($data[$folder][$fid]));
}

return $data;
}

function Send($number,$text,&$respon) {
$respon = $this->gammu_exec("--sendsms TEXT {$number} -len ". strlen($text)." -text \"{$text}\"");
if (eregi("OK",$respon)) { return 1; } else { return 0; }
}

function phoneBook($mem = 'ME')
{
$r = $this->gammu_exec('--getallmemory '.$mem,1);
Expand All @@ -160,7 +160,7 @@ function phoneBook($mem = 'ME')
}
return $data;
}

function error($e,$exit=0) {
echo $e."\n";
if ($exit == 1) { exit; }
Expand All @@ -182,21 +182,21 @@ function error($e,$exit=0) {
/* Identify Device information * /
$sms->Identify($response);
echo '<pre>';
print_r($response);
echo '</pre>';
print_r($response);
echo '</pre>';
/* Get SMS from Device* /
$response = $sms->Get();
echo '<pre>';print_r($response); echo '</pre>';
echo '<pre>';print_r($response); echo '</pre>';
/* Sending SMS * /
$sms->Send('+6281380830000','Test!',$response);
echo '<pre>';
print_r($response); echo '</pre>';
print_r($response); echo '</pre>';
/* Get Phone -> ME = Phone Memory; SM = Sim Card; options list => DC|MC|RC|ON|VM|SM|ME|MT|FD|SL * /
$response = $sms->phoneBook('ME');
echo '<pre>';print_r($response); echo '</pre>';
echo '<pre>';print_r($response); echo '</pre>';
/**/

?>
?>
2 changes: 1 addition & 1 deletion contrib/s60/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -1170,7 +1170,7 @@ def portHandler(self):
self.startService()

def aboutHandler(self):
query(u'Gammu S60 Remote\nVersion %s\nhttp://wammu.eu/' % (VERSION) , 'query')
query(u'Gammu S60 Remote\nVersion %s\nhttps://wammu.eu/' % (VERSION) , 'query')

def toggleHandler(self):
e32.start_exe(u'BtToggleApp.exe','')
Expand Down
2 changes: 1 addition & 1 deletion docs/manual/config/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ You can use :ref:`gammu-config` or :ref:`gammu-detect` to generate
configuration file or start from :ref:`Fully documented example`.

For hints about configuring your phone, you can check Gammu Phone
Database <http://wammu.eu/phones/> to see what user users
Database <https://wammu.eu/phones/> to see what user users
experienced.

This file use ini file syntax, see :ref:`ini`.
Expand Down
2 changes: 1 addition & 1 deletion docs/manual/faq/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,4 @@ You can also find additional user experiences in `Gammu Phones Database`_.

.. seealso:: :ref:`faq-phones`, :ref:`gammurc`

.. _Gammu Phones Database: http://wammu.eu/phones/
.. _Gammu Phones Database: https://wammu.eu/phones/
2 changes: 1 addition & 1 deletion docs/manual/faq/phone.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ Are iPhone phones supported?

Unfortunately no at the moment. Any help in this area is welcome.

.. _Gammu Phones Database: http://wammu.eu/phones/
.. _Gammu Phones Database: https://wammu.eu/phones/
2 changes: 1 addition & 1 deletion docs/manual/faq/python.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ the :file:`examples` subdirectory.

.. seealso:: :ref:`python`, :ref:`python-gammu-examples`

.. _Gammu: http://wammu.eu/gammu/
.. _Gammu: https://wammu.eu/gammu/
2 changes: 1 addition & 1 deletion docs/manual/faq/smsd.rst
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ This can occasionally happen and can have several reasons.
.. _MySQL: http://www.mysql.com/
.. _PostgreSQL: http://www.postgresql.org/
.. _libdbi: http://libdbi.sourceforge.net/
.. _Gammu Phones Database: http://wammu.eu/phones/
.. _Gammu Phones Database: https://wammu.eu/phones/
10 changes: 5 additions & 5 deletions docs/manual/gammu/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Description
+++++++++++

This program is a tool for mobile phones. Many vendors and phones
are supported, for actual listing see `Gammu Phones Database <http://wammu.eu/phones/>`_.
are supported, for actual listing see `Gammu Phones Database <https://wammu.eu/phones/>`_.


Options
Expand Down Expand Up @@ -1723,11 +1723,11 @@ values increased by 100:
114
No response in specified timeout. Probably phone not connected.
115
Frame not requested right now. See <http://wammu.eu/support/bugs/> for information how to report it.
Frame not requested right now. See <https://wammu.eu/support/bugs/> for information how to report it.
116
Unknown response from phone. See <http://wammu.eu/support/bugs/> for information how to report it.
Unknown response from phone. See <https://wammu.eu/support/bugs/> for information how to report it.
117
Unknown frame. See <http://wammu.eu/support/bugs/> for information how to report it.
Unknown frame. See <https://wammu.eu/support/bugs/> for information how to report it.
118
Unknown connection type string. Check config file.
119
Expand Down Expand Up @@ -1985,6 +1985,6 @@ With this settings, Gammu generates /tmp/gammu.log on each connection to
phone and stores dump of communication there. You can also find some
hints for improving support for your phone in this log.
See <http://wammu.eu/support/bugs/> for more information on reporting bugs.
See <https://wammu.eu/support/bugs/> for more information on reporting bugs.
Please report bugs to `Gammu bug tracker <https://github.com/gammu/gammu/issues>`_.
4 changes: 2 additions & 2 deletions docs/manual/project/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ We welcome contribution in any area, if you don't have developer skills, you
can always contribute to :doc:`localization` or just `donate us money`_. In case you are
interested in fixing some code, please read :doc:`../internal/index` to
understand structure of Gammu code. We also maintain list of
`wanted skills <http://wammu.eu/contribute/wanted/>`_ where you can find in
`wanted skills <https://wammu.eu/contribute/wanted/>`_ where you can find in
which areas we currently mostly lack manpower.

Sending patches
Expand Down Expand Up @@ -49,4 +49,4 @@ To manually create patch you can use following steps:
5. Call ``diff -rup -X .git gammu work > patchfile``.
6. Send ``patchfile`` to us (you can use bug tracker or mailing list).

.. _donate us money: http://wammu.eu/donate/
.. _donate us money: https://wammu.eu/donate/
4 changes: 2 additions & 2 deletions docs/manual/project/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Prebuilt Binaries for Linux
Many distributions come with prebuilt Gammu binaries, if you can use
them, it is definitely the easiest thing. There are also binary packages
of latest release built for many distributions available on Gammu home
page <http://wammu.eu/gammu/>.
page <https://wammu.eu/gammu/>.

You can usually also find Gammu in your distribution, so unless you need a
newer version, just install package from your distribution.
Expand Down Expand Up @@ -38,7 +38,7 @@ Gammu packages are included in Gentoo. Additionally source tarball contains
Prebuilt Binaries for Windows
-----------------------------

You can download Windows binaries from <http://wammu.eu/gammu/>. For
You can download Windows binaries from <https://wammu.eu/gammu/>. For
Windows 95, 98 and NT 4.0 you will also need ShFolder DLL, which can be
downloaded from Microsoft:

Expand Down
6 changes: 3 additions & 3 deletions docs/manual/protocol/s60.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ not distributed with Gammu due to licensing reasons.
On some phones, the Python for S60 2.0 will not start, in this case you
need to install some additional support libraries coming with Python for S60 2.0 -
:file:`pips.sis`, :file:`ssl.sis` and :file:`stdioserver.sis`. You can get
all of them at http://wammu.eu/s60/ as well.
all of them at https://wammu.eu/s60/ as well.

Installing Python for S60 and Series60 remote applet can be done in several
ways:
Expand Down Expand Up @@ -112,10 +112,10 @@ Downloading from phone
++++++++++++++++++++++

Downloading files from the phone and installing them directly. You can
download all required files from http://wammu.eu/s60/.
download all required files from https://wammu.eu/s60/.

.. figure:: s60-download-qr.png
:target: http://wammu.eu/s60/
:target: https://wammu.eu/s60/
:alt: QR code for download of applet.

QR code for download of applet.
Expand Down
6 changes: 3 additions & 3 deletions docs/manual/python/exceptions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
.. exception:: gammu.ERR_FRAMENOTREQUESTED

Exception corresponding to gammu error ERR_FRAMENOTREQUESTED.
Verbose error description: Frame not requested right now. See <http://wammu.eu/support/bugs/> for information how to report it.
Verbose error description: Frame not requested right now. See <https://wammu.eu/support/bugs/> for information how to report it.

.. exception:: gammu.ERR_FULL

Expand Down Expand Up @@ -337,7 +337,7 @@
.. exception:: gammu.ERR_UNKNOWNFRAME

Exception corresponding to gammu error ERR_UNKNOWNFRAME.
Verbose error description: Unknown frame. See <http://wammu.eu/support/bugs/> for information how to report it.
Verbose error description: Unknown frame. See <https://wammu.eu/support/bugs/> for information how to report it.

.. exception:: gammu.ERR_UNKNOWNMODELSTRING

Expand All @@ -347,7 +347,7 @@
.. exception:: gammu.ERR_UNKNOWNRESPONSE

Exception corresponding to gammu error ERR_UNKNOWNRESPONSE.
Verbose error description: Unknown response from phone. See <http://wammu.eu/support/bugs/> for information how to report it.
Verbose error description: Unknown response from phone. See <https://wammu.eu/support/bugs/> for information how to report it.

.. exception:: gammu.ERR_USING_DEFAULTS

Expand Down
4 changes: 2 additions & 2 deletions docs/manual/quick/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Gammu family consists of several programs and libraries:
:ref:`gammu`
Command line utility to talk to the phone. It performs one time operations
only.
`Wammu <http://wammu.eu/wammu>`_
`Wammu <https://wammu.eu/wammu>`_
Graphical interface for Gammu, providing basic functions.
:ref:`gammu-smsd`
Daemon to receive and send messages using your phone.
Expand All @@ -30,7 +30,7 @@ Installing Gammu

On most platforms you can install Gammu from binaries - most Linux
distributions ship Gammu and for Windows you can download binaries from
`Gammu website <http://wammu.eu/download/>`_. You can find more detailed
`Gammu website <https://wammu.eu/download/>`_. You can find more detailed
instructions (including instructions for compiling from source) in
:ref:`installing`.

Expand Down
Loading

0 comments on commit f5a015b

Please sign in to comment.