mirror of
https://github.com/cwinfo/envayasms.git
synced 2025-01-10 04:05:38 +00:00
add titles and reorganize to avoid showing .html extension
This commit is contained in:
parent
4747726e40
commit
da58df6ad1
@ -1,4 +1,6 @@
|
||||
<h2>Comparison to Alternative Methods</h2>
|
||||
id: comparison
|
||||
title: Comparison to Alternative Methods
|
||||
---
|
||||
<p>
|
||||
SMS gateways can be created using several alternative methods, including hosted services (e.g. Twilio, Tropo, Clickatell),
|
||||
connecting GSM phones/modems to a computer (e.g. FrontlineSMS, RapidSMS, Kannel),
|
@ -1,7 +1,6 @@
|
||||
layout: default.twig
|
||||
id: faq
|
||||
title: Frequently Asked Questions
|
||||
---
|
||||
<h2>Frequently Asked Questions</h2>
|
||||
|
||||
<h4>
|
||||
What phones are compatible with EnvayaSMS?
|
||||
</h4>
|
||||
@ -56,11 +55,11 @@ EnvayaSMS is a complete rewrite that shares little code with KalSMS.
|
||||
<p>
|
||||
EnvayaSMS builds upon the idea of KalSMS by adding many new features that would be necessary for anyone deploying an SMS gateway in the field,
|
||||
such as sending more than 100 messages per hour, authenticating the phone to the server, and retrying forwarding messages after transient errors.
|
||||
For a complete list of changes, see the <a href='history.html'>History</a> page.
|
||||
For a complete list of changes, see the <a href='/history/'>History</a> page.
|
||||
</p>
|
||||
<p>
|
||||
EnvayaSMS's server API is incompatible with that of KalSMS. Anyone switching from KalSMS to EnvayaSMS must
|
||||
update their server to use the new API described on the <a href='serverapi.html'>API Reference</a> page.
|
||||
update their server to use the new API described on the <a href='/serverapi/'>API Reference</a> page.
|
||||
</p>
|
||||
<p>
|
||||
As of 2011, KalSMS is no longer actively developed, and new development will occur on the EnvayaSMS project.
|
@ -1,5 +1,6 @@
|
||||
<h2>History</h2>
|
||||
|
||||
id: history
|
||||
title: History
|
||||
---
|
||||
Version 2.0-beta (2011/09/22)
|
||||
|
||||
<ul>
|
@ -1,5 +1,7 @@
|
||||
<h2>How it Works</h2>
|
||||
|
||||
id: how
|
||||
layout: default.twig
|
||||
title: How it Works
|
||||
---
|
||||
<p>
|
||||
In the simplest configuration, EnvayaSMS only needs to be installed on one phone.
|
||||
Suppose that you have installed EnvayaSMS on an Android phone in Dar es Salaam,
|
@ -1,11 +1,11 @@
|
||||
id: home
|
||||
layout: default.twig
|
||||
---
|
||||
|
||||
<p>
|
||||
<div style='float:right;padding-left:10px;padding-bottom:10px'>
|
||||
<img src='media/screenshot-main.png' width='212' height='350' />
|
||||
<img src='/media/screenshot-main.png' width='212' height='350' />
|
||||
<br />
|
||||
<img src='media/screenshot-settings.png' width='212' height='350' />
|
||||
<img src='/media/screenshot-settings.png' width='212' height='350' />
|
||||
|
||||
</div>
|
||||
|
||||
@ -54,6 +54,6 @@ It works wherever the phone can receive SMS messages and access the Internet
|
||||
EnvayaSMS is compatible with many old or inexpensive Android phones, e.g. the LG GT540, currently $120 on Amazon.com.
|
||||
</p>
|
||||
|
||||
<a href='install.html' class='button'>
|
||||
<a href='/install/' class='button'>
|
||||
Install EnvayaSMS Now
|
||||
</a>
|
@ -1,7 +1,6 @@
|
||||
layout: default.twig
|
||||
id: install
|
||||
title: Installing EnvayaSMS
|
||||
---
|
||||
<h2>Installing EnvayaSMS</h2>
|
||||
|
||||
Before installing EnvayaSMS, ensure that you have the following prerequisites:
|
||||
|
||||
<ul>
|
||||
@ -21,12 +20,12 @@ Using an Android phone, open <a href='https://market.android.com/details?id=org.
|
||||
<a href="https://market.android.com/details?id=org.envaya.sms">Open Android Market</a>
|
||||
</div>
|
||||
<a href="https://market.android.com/details?id=org.envaya.sms">
|
||||
<img src='media/qr.png' width='175' height='175' />
|
||||
<img src='/media/qr.png' width='175' height='175' />
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div style='float:left;padding-top:10px'>
|
||||
<img src='media/screenshot-market.png' style='border:1px solid black' width='484' height='240' />
|
||||
<img src='/media/screenshot-market.png' style='border:1px solid black' width='484' height='240' />
|
||||
</div>
|
||||
|
||||
<div style='clear:both;padding-top:10px'>
|
||||
@ -43,14 +42,14 @@ It is assumed that your organization already has an HTTP server, or has the tech
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Follow the instructions in the <a href='serverapi.html'>API Reference</a> page to learn how to construct a
|
||||
Follow the instructions in the <a href='/serverapi/'>API Reference</a> page to learn how to construct a
|
||||
resource on your HTTP server that can communicate with EnvayaSMS.
|
||||
</p>
|
||||
|
||||
<h3>Phone Configuration</h3>
|
||||
|
||||
<div style='float:right;padding-left:10px;padding-bottom:10px'>
|
||||
<img src='media/screenshot-settings.png' width='211' height='347' />
|
||||
<img src='/media/screenshot-settings.png' width='211' height='347' />
|
||||
</div>
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
layout: default.twig
|
||||
id: serverapi
|
||||
title: Server API Reference
|
||||
---
|
||||
<h2>Server API Reference</h2>
|
||||
|
||||
<p>
|
||||
EnvayaSMS communicates with the server via HTTP POST requests that expect an XML response.
|
||||
</p>
|
@ -2,17 +2,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title>EnvayaSMS</title>
|
||||
<link rel='stylesheet' type='text/css' href='styles/site.css' />
|
||||
<title>EnvayaSMS{% if entry.title %}: {{ entry.title }}{% endif %}</title>
|
||||
<link rel='stylesheet' type='text/css' href='/styles/site.css' />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<a href="http://github.com/youngj/EnvayaSMS"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
|
||||
|
||||
<div id="container">
|
||||
|
||||
<a style='float:left' href="index.html"><img src='media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="index.html">EnvayaSMS</a>
|
||||
|
||||
<a style='float:left' href="/"><img src='/media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="/">EnvayaSMS</a>
|
||||
|
||||
<span class="small">
|
||||
SMS gateway for Android
|
||||
@ -21,20 +21,22 @@
|
||||
</h1>
|
||||
|
||||
<div class='menu' style='clear:both;padding-top:5px'>
|
||||
<a href='index.html'>Home</a>
|
||||
<a {% if entry.id == 'home' %}class='active'{% endif %} href='/'>Home</a>
|
||||
·
|
||||
<a href='install.html'>Install</a>
|
||||
<a {% if entry.id == 'install' %}class='active'{% endif %} href='/install/'>Install</a>
|
||||
·
|
||||
<a href='how.html'>How it Works</a>
|
||||
<a {% if entry.id == 'how' %}class='active'{% endif %} href='/how/'>How it Works</a>
|
||||
·
|
||||
<a href='serverapi.html'>API Reference</a>
|
||||
<a {% if entry.id == 'serverapi' %}class='active'{% endif %} href='/serverapi/'>API Reference</a>
|
||||
·
|
||||
<a href='comparison.html'>Comparison</a>
|
||||
<a {% if entry.id == 'comparison' %}class='active'{% endif %} href='/comparison/'>Comparison</a>
|
||||
·
|
||||
<a href='faq.html'>FAQ</a>
|
||||
<a {% if entry.id == 'faq' %}class='active'{% endif %} href='/faq/'>FAQ</a>
|
||||
·
|
||||
<a href='history.html'>History</a>
|
||||
<a {% if entry.id == 'history' %}class='active'{% endif %} href='/history/'>History</a>
|
||||
</div>
|
||||
|
||||
<h2>{{ entry.title }}</h2>
|
||||
|
||||
{{ content }}
|
||||
|
||||
|
@ -5,6 +5,11 @@ body {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
a.active
|
||||
{
|
||||
color: #333;
|
||||
}
|
||||
|
||||
dt
|
||||
{
|
||||
font-family:monospace;
|
||||
@ -25,6 +30,11 @@ dd
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.menu a:hover
|
||||
{
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.comparison_table
|
||||
{
|
||||
font-size:12px;
|
||||
|
@ -2,17 +2,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title>EnvayaSMS</title>
|
||||
<link rel='stylesheet' type='text/css' href='styles/site.css' />
|
||||
<title>EnvayaSMS: Comparison to Alternative Methods</title>
|
||||
<link rel='stylesheet' type='text/css' href='/styles/site.css' />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<a href="http://github.com/youngj/EnvayaSMS"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
|
||||
|
||||
<div id="container">
|
||||
|
||||
<a style='float:left' href="index.html"><img src='media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="index.html">EnvayaSMS</a>
|
||||
|
||||
<a style='float:left' href="/"><img src='/media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="/">EnvayaSMS</a>
|
||||
|
||||
<span class="small">
|
||||
SMS gateway for Android
|
||||
@ -21,23 +21,24 @@
|
||||
</h1>
|
||||
|
||||
<div class='menu' style='clear:both;padding-top:5px'>
|
||||
<a href='index.html'>Home</a>
|
||||
<a href='/'>Home</a>
|
||||
·
|
||||
<a href='install.html'>Install</a>
|
||||
<a href='/install/'>Install</a>
|
||||
·
|
||||
<a href='how.html'>How it Works</a>
|
||||
<a href='/how/'>How it Works</a>
|
||||
·
|
||||
<a href='serverapi.html'>API Reference</a>
|
||||
<a href='/serverapi/'>API Reference</a>
|
||||
·
|
||||
<a href='comparison.html'>Comparison</a>
|
||||
<a class='active' href='/comparison/'>Comparison</a>
|
||||
·
|
||||
<a href='faq.html'>FAQ</a>
|
||||
<a href='/faq/'>FAQ</a>
|
||||
·
|
||||
<a href='history.html'>History</a>
|
||||
<a href='/history/'>History</a>
|
||||
</div>
|
||||
|
||||
|
||||
<h2>Comparison to Alternative Methods</h2>
|
||||
<p>
|
||||
|
||||
<p>
|
||||
SMS gateways can be created using several alternative methods, including hosted services (e.g. Twilio, Tropo, Clickatell),
|
||||
connecting GSM phones/modems to a computer (e.g. FrontlineSMS, RapidSMS, Kannel),
|
||||
and partnering directly with mobile operators.
|
||||
@ -100,6 +101,7 @@
|
||||
EnvayaSMS likely has lower throughput than hosted services or partnering with mobile operators, but should
|
||||
be able to forward up to a few thousand messages per phone per day.
|
||||
</p>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
get the source code on GitHub : <a href="http://github.com/youngj/EnvayaSMS">youngj/EnvayaSMS</a>
|
@ -1,42 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title>KalSMS</title>
|
||||
<link rel='stylesheet' type='text/css' href='styles/site.css' />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<a href="http://github.com/youngj/KalSMS"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
|
||||
|
||||
<div id="container">
|
||||
|
||||
<h1><a href="http://github.com/youngj/KalSMS">KalSMS</a>
|
||||
|
||||
<span class="small">
|
||||
SMS/MMS gateway for Android
|
||||
</span>
|
||||
</h1>
|
||||
|
||||
<div class='menu'>
|
||||
<a href='index.html'>Home</a>
|
||||
·
|
||||
<a href='download.html'>Download</a>
|
||||
</div>
|
||||
|
||||
<h2>Download</h2>
|
||||
|
||||
<ul>
|
||||
<li><a href="http://envaya.org/_media/KalSMS-release.apk">Current release (apk)</a></li>
|
||||
<li><a href="http://github.com/youngj/KalSMS/zipball/master">Latest development source (zip)</a></li>
|
||||
<li><a href="http://github.com/youngj/KalSMS/tarball/master">Latest development source (tar)</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="footer">
|
||||
get the source code on GitHub : <a href="http://github.com/youngj/KalSMS">youngj/KalSMS</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -2,17 +2,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title>EnvayaSMS</title>
|
||||
<link rel='stylesheet' type='text/css' href='styles/site.css' />
|
||||
<title>EnvayaSMS: Frequently Asked Questions</title>
|
||||
<link rel='stylesheet' type='text/css' href='/styles/site.css' />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<a href="http://github.com/youngj/EnvayaSMS"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
|
||||
|
||||
<div id="container">
|
||||
|
||||
<a style='float:left' href="index.html"><img src='media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="index.html">EnvayaSMS</a>
|
||||
|
||||
<a style='float:left' href="/"><img src='/media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="/">EnvayaSMS</a>
|
||||
|
||||
<span class="small">
|
||||
SMS gateway for Android
|
||||
@ -21,24 +21,24 @@
|
||||
</h1>
|
||||
|
||||
<div class='menu' style='clear:both;padding-top:5px'>
|
||||
<a href='index.html'>Home</a>
|
||||
<a href='/'>Home</a>
|
||||
·
|
||||
<a href='install.html'>Install</a>
|
||||
<a href='/install/'>Install</a>
|
||||
·
|
||||
<a href='how.html'>How it Works</a>
|
||||
<a href='/how/'>How it Works</a>
|
||||
·
|
||||
<a href='serverapi.html'>API Reference</a>
|
||||
<a href='/serverapi/'>API Reference</a>
|
||||
·
|
||||
<a href='comparison.html'>Comparison</a>
|
||||
<a href='/comparison/'>Comparison</a>
|
||||
·
|
||||
<a href='faq.html'>FAQ</a>
|
||||
<a class='active' href='/faq/'>FAQ</a>
|
||||
·
|
||||
<a href='history.html'>History</a>
|
||||
<a href='/history/'>History</a>
|
||||
</div>
|
||||
|
||||
|
||||
<h2>Frequently Asked Questions</h2>
|
||||
|
||||
<h4>
|
||||
|
||||
<h4>
|
||||
What phones are compatible with EnvayaSMS?
|
||||
</h4>
|
||||
|
||||
@ -92,11 +92,11 @@ EnvayaSMS is a complete rewrite that shares little code with KalSMS.
|
||||
<p>
|
||||
EnvayaSMS builds upon the idea of KalSMS by adding many new features that would be necessary for anyone deploying an SMS gateway in the field,
|
||||
such as sending more than 100 messages per hour, authenticating the phone to the server, and retrying forwarding messages after transient errors.
|
||||
For a complete list of changes, see the <a href='history.html'>History</a> page.
|
||||
For a complete list of changes, see the <a href='/history/'>History</a> page.
|
||||
</p>
|
||||
<p>
|
||||
EnvayaSMS's server API is incompatible with that of KalSMS. Anyone switching from KalSMS to EnvayaSMS must
|
||||
update their server to use the new API described on the <a href='serverapi.html'>API Reference</a> page.
|
||||
update their server to use the new API described on the <a href='/serverapi/'>API Reference</a> page.
|
||||
</p>
|
||||
<p>
|
||||
As of 2011, KalSMS is no longer actively developed, and new development will occur on the EnvayaSMS project.
|
@ -2,17 +2,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title>EnvayaSMS</title>
|
||||
<link rel='stylesheet' type='text/css' href='styles/site.css' />
|
||||
<title>EnvayaSMS: History</title>
|
||||
<link rel='stylesheet' type='text/css' href='/styles/site.css' />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<a href="http://github.com/youngj/EnvayaSMS"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
|
||||
|
||||
<div id="container">
|
||||
|
||||
<a style='float:left' href="index.html"><img src='media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="index.html">EnvayaSMS</a>
|
||||
|
||||
<a style='float:left' href="/"><img src='/media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="/">EnvayaSMS</a>
|
||||
|
||||
<span class="small">
|
||||
SMS gateway for Android
|
||||
@ -21,24 +21,24 @@
|
||||
</h1>
|
||||
|
||||
<div class='menu' style='clear:both;padding-top:5px'>
|
||||
<a href='index.html'>Home</a>
|
||||
<a href='/'>Home</a>
|
||||
·
|
||||
<a href='install.html'>Install</a>
|
||||
<a href='/install/'>Install</a>
|
||||
·
|
||||
<a href='how.html'>How it Works</a>
|
||||
<a href='/how/'>How it Works</a>
|
||||
·
|
||||
<a href='serverapi.html'>API Reference</a>
|
||||
<a href='/serverapi/'>API Reference</a>
|
||||
·
|
||||
<a href='comparison.html'>Comparison</a>
|
||||
<a href='/comparison/'>Comparison</a>
|
||||
·
|
||||
<a href='faq.html'>FAQ</a>
|
||||
<a href='/faq/'>FAQ</a>
|
||||
·
|
||||
<a href='history.html'>History</a>
|
||||
<a class='active' href='/history/'>History</a>
|
||||
</div>
|
||||
|
||||
|
||||
<h2>History</h2>
|
||||
|
||||
Version 2.0-beta (2011/09/22)
|
||||
|
||||
Version 2.0-beta (2011/09/22)
|
||||
|
||||
<ul>
|
||||
<li>
|
@ -2,17 +2,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title>EnvayaSMS</title>
|
||||
<link rel='stylesheet' type='text/css' href='styles/site.css' />
|
||||
<title>EnvayaSMS: How it Works</title>
|
||||
<link rel='stylesheet' type='text/css' href='/styles/site.css' />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<a href="http://github.com/youngj/EnvayaSMS"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
|
||||
|
||||
<div id="container">
|
||||
|
||||
<a style='float:left' href="index.html"><img src='media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="index.html">EnvayaSMS</a>
|
||||
|
||||
<a style='float:left' href="/"><img src='/media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="/">EnvayaSMS</a>
|
||||
|
||||
<span class="small">
|
||||
SMS gateway for Android
|
||||
@ -21,24 +21,24 @@
|
||||
</h1>
|
||||
|
||||
<div class='menu' style='clear:both;padding-top:5px'>
|
||||
<a href='index.html'>Home</a>
|
||||
<a href='/'>Home</a>
|
||||
·
|
||||
<a href='install.html'>Install</a>
|
||||
<a href='/install/'>Install</a>
|
||||
·
|
||||
<a href='how.html'>How it Works</a>
|
||||
<a class='active' href='/how/'>How it Works</a>
|
||||
·
|
||||
<a href='serverapi.html'>API Reference</a>
|
||||
<a href='/serverapi/'>API Reference</a>
|
||||
·
|
||||
<a href='comparison.html'>Comparison</a>
|
||||
<a href='/comparison/'>Comparison</a>
|
||||
·
|
||||
<a href='faq.html'>FAQ</a>
|
||||
<a href='/faq/'>FAQ</a>
|
||||
·
|
||||
<a href='history.html'>History</a>
|
||||
<a href='/history/'>History</a>
|
||||
</div>
|
||||
|
||||
|
||||
<h2>How it Works</h2>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
In the simplest configuration, EnvayaSMS only needs to be installed on one phone.
|
||||
Suppose that you have installed EnvayaSMS on an Android phone in Dar es Salaam,
|
||||
Tanzania, with phone number <code>+255987654321</code> (local number <code>0987654321</code>),
|
33
index.html
33
index.html
@ -3,16 +3,16 @@
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title>EnvayaSMS</title>
|
||||
<link rel='stylesheet' type='text/css' href='styles/site.css' />
|
||||
<link rel='stylesheet' type='text/css' href='/styles/site.css' />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<a href="http://github.com/youngj/EnvayaSMS"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
|
||||
|
||||
<div id="container">
|
||||
|
||||
<a style='float:left' href="index.html"><img src='media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="index.html">EnvayaSMS</a>
|
||||
|
||||
<a style='float:left' href="/"><img src='/media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="/">EnvayaSMS</a>
|
||||
|
||||
<span class="small">
|
||||
SMS gateway for Android
|
||||
@ -21,27 +21,28 @@
|
||||
</h1>
|
||||
|
||||
<div class='menu' style='clear:both;padding-top:5px'>
|
||||
<a href='index.html'>Home</a>
|
||||
<a class='active' href='/'>Home</a>
|
||||
·
|
||||
<a href='install.html'>Install</a>
|
||||
<a href='/install/'>Install</a>
|
||||
·
|
||||
<a href='how.html'>How it Works</a>
|
||||
<a href='/how/'>How it Works</a>
|
||||
·
|
||||
<a href='serverapi.html'>API Reference</a>
|
||||
<a href='/serverapi/'>API Reference</a>
|
||||
·
|
||||
<a href='comparison.html'>Comparison</a>
|
||||
<a href='/comparison/'>Comparison</a>
|
||||
·
|
||||
<a href='faq.html'>FAQ</a>
|
||||
<a href='/faq/'>FAQ</a>
|
||||
·
|
||||
<a href='history.html'>History</a>
|
||||
<a href='/history/'>History</a>
|
||||
</div>
|
||||
|
||||
|
||||
<p>
|
||||
<h2></h2>
|
||||
|
||||
<p>
|
||||
<div style='float:right;padding-left:10px;padding-bottom:10px'>
|
||||
<img src='media/screenshot-main.png' width='212' height='350' />
|
||||
<img src='/media/screenshot-main.png' width='212' height='350' />
|
||||
<br />
|
||||
<img src='media/screenshot-settings.png' width='212' height='350' />
|
||||
<img src='/media/screenshot-settings.png' width='212' height='350' />
|
||||
|
||||
</div>
|
||||
|
||||
@ -90,7 +91,7 @@ It works wherever the phone can receive SMS messages and access the Internet
|
||||
EnvayaSMS is compatible with many old or inexpensive Android phones, e.g. the LG GT540, currently $120 on Amazon.com.
|
||||
</p>
|
||||
|
||||
<a href='install.html' class='button'>
|
||||
<a href='/install/' class='button'>
|
||||
Install EnvayaSMS Now
|
||||
</a>
|
||||
|
||||
|
@ -2,17 +2,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title>EnvayaSMS</title>
|
||||
<link rel='stylesheet' type='text/css' href='styles/site.css' />
|
||||
<title>EnvayaSMS: Installing EnvayaSMS</title>
|
||||
<link rel='stylesheet' type='text/css' href='/styles/site.css' />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<a href="http://github.com/youngj/EnvayaSMS"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
|
||||
|
||||
<div id="container">
|
||||
|
||||
<a style='float:left' href="index.html"><img src='media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="index.html">EnvayaSMS</a>
|
||||
|
||||
<a style='float:left' href="/"><img src='/media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="/">EnvayaSMS</a>
|
||||
|
||||
<span class="small">
|
||||
SMS gateway for Android
|
||||
@ -21,24 +21,24 @@
|
||||
</h1>
|
||||
|
||||
<div class='menu' style='clear:both;padding-top:5px'>
|
||||
<a href='index.html'>Home</a>
|
||||
<a href='/'>Home</a>
|
||||
·
|
||||
<a href='install.html'>Install</a>
|
||||
<a class='active' href='/install/'>Install</a>
|
||||
·
|
||||
<a href='how.html'>How it Works</a>
|
||||
<a href='/how/'>How it Works</a>
|
||||
·
|
||||
<a href='serverapi.html'>API Reference</a>
|
||||
<a href='/serverapi/'>API Reference</a>
|
||||
·
|
||||
<a href='comparison.html'>Comparison</a>
|
||||
<a href='/comparison/'>Comparison</a>
|
||||
·
|
||||
<a href='faq.html'>FAQ</a>
|
||||
<a href='/faq/'>FAQ</a>
|
||||
·
|
||||
<a href='history.html'>History</a>
|
||||
<a href='/history/'>History</a>
|
||||
</div>
|
||||
|
||||
|
||||
<h2>Installing EnvayaSMS</h2>
|
||||
|
||||
Before installing EnvayaSMS, ensure that you have the following prerequisites:
|
||||
|
||||
Before installing EnvayaSMS, ensure that you have the following prerequisites:
|
||||
|
||||
<ul>
|
||||
<li>One or more Android phones (1.6 Donut or higher) that are
|
||||
@ -57,12 +57,12 @@ Using an Android phone, open <a href='https://market.android.com/details?id=org.
|
||||
<a href="https://market.android.com/details?id=org.envaya.sms">Open Android Market</a>
|
||||
</div>
|
||||
<a href="https://market.android.com/details?id=org.envaya.sms">
|
||||
<img src='media/qr.png' width='175' height='175' />
|
||||
<img src='/media/qr.png' width='175' height='175' />
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div style='float:left;padding-top:10px'>
|
||||
<img src='media/screenshot-market.png' style='border:1px solid black' width='484' height='240' />
|
||||
<img src='/media/screenshot-market.png' style='border:1px solid black' width='484' height='240' />
|
||||
</div>
|
||||
|
||||
<div style='clear:both;padding-top:10px'>
|
||||
@ -79,14 +79,14 @@ It is assumed that your organization already has an HTTP server, or has the tech
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Follow the instructions in the <a href='serverapi.html'>API Reference</a> page to learn how to construct a
|
||||
Follow the instructions in the <a href='/serverapi/'>API Reference</a> page to learn how to construct a
|
||||
resource on your HTTP server that can communicate with EnvayaSMS.
|
||||
</p>
|
||||
|
||||
<h3>Phone Configuration</h3>
|
||||
|
||||
<div style='float:right;padding-left:10px;padding-bottom:10px'>
|
||||
<img src='media/screenshot-settings.png' width='211' height='347' />
|
||||
<img src='/media/screenshot-settings.png' width='211' height='347' />
|
||||
</div>
|
||||
|
||||
|
@ -2,17 +2,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title>EnvayaSMS</title>
|
||||
<link rel='stylesheet' type='text/css' href='styles/site.css' />
|
||||
<title>EnvayaSMS: Server API Reference</title>
|
||||
<link rel='stylesheet' type='text/css' href='/styles/site.css' />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<a href="http://github.com/youngj/EnvayaSMS"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
|
||||
|
||||
<div id="container">
|
||||
|
||||
<a style='float:left' href="index.html"><img src='media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="index.html">EnvayaSMS</a>
|
||||
|
||||
<a style='float:left' href="/"><img src='/media/icon.png' height='72' width='72' style='margin-right:10px' /></a>
|
||||
<h1 style='padding-top:13px'><a href="/">EnvayaSMS</a>
|
||||
|
||||
<span class="small">
|
||||
SMS gateway for Android
|
||||
@ -21,24 +21,24 @@
|
||||
</h1>
|
||||
|
||||
<div class='menu' style='clear:both;padding-top:5px'>
|
||||
<a href='index.html'>Home</a>
|
||||
<a href='/'>Home</a>
|
||||
·
|
||||
<a href='install.html'>Install</a>
|
||||
<a href='/install/'>Install</a>
|
||||
·
|
||||
<a href='how.html'>How it Works</a>
|
||||
<a href='/how/'>How it Works</a>
|
||||
·
|
||||
<a href='serverapi.html'>API Reference</a>
|
||||
<a class='active' href='/serverapi/'>API Reference</a>
|
||||
·
|
||||
<a href='comparison.html'>Comparison</a>
|
||||
<a href='/comparison/'>Comparison</a>
|
||||
·
|
||||
<a href='faq.html'>FAQ</a>
|
||||
<a href='/faq/'>FAQ</a>
|
||||
·
|
||||
<a href='history.html'>History</a>
|
||||
<a href='/history/'>History</a>
|
||||
</div>
|
||||
|
||||
|
||||
<h2>Server API Reference</h2>
|
||||
|
||||
<p>
|
||||
|
||||
<p>
|
||||
EnvayaSMS communicates with the server via HTTP POST requests that expect an XML response.
|
||||
</p>
|
||||
|
@ -5,6 +5,11 @@ body {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
a.active
|
||||
{
|
||||
color: #333;
|
||||
}
|
||||
|
||||
dt
|
||||
{
|
||||
font-family:monospace;
|
||||
@ -25,6 +30,11 @@ dd
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.menu a:hover
|
||||
{
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.comparison_table
|
||||
{
|
||||
font-size:12px;
|
||||
|
Loading…
Reference in New Issue
Block a user