Skip to content

Commit 3884753

Browse files
committed
Merge branch 'develop'
2 parents a4633a9 + 61ee021 commit 3884753

File tree

9 files changed

+16
-14
lines changed

9 files changed

+16
-14
lines changed

changelog.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
"date": "November 11, 2014",
55
"features": [
66
"Updated website with demo code showing how to integrate the message result API",
7-
"Updated failed notification icon."
7+
"Updated failed notification icon.",
8+
"Changed Message Results API query string from task=results to task=result",
9+
"Changed Message Results API JSON property from message_uuid to uuid"
810
],
911
"bugs": [
1012
"Fixed a bug with message result API.",

website-src/_root/configure.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title : Configure
33
layout : default
44
description : Configure SMSsync
5-
date : Jun 23, 2014
5+
date : Nov 11, 2014
66
header : <h1>How To Configure SMSsync<small> This page documents how to configure SMSsync on your Android device.</small></h1>
77
---
88
<script type="text/javascript">

website-src/_root/contributors.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title : Contributors
33
layout : default
44
description : SMSsync contributors
5-
date : Jun 23, 2014
5+
date : Nov 11, 2014
66
header : <h3>Map of Contributors<small> These are people who have freely contributed their time towards making SMSsync better</small></h3>
77
---
88
{{# stylesheets.load }}

website-src/_root/developers.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title : Developers
33
layout : default
44
description : SMSsync developer documentation
5-
date : Jun 23, 2014
5+
date : Nov 11, 2014
66
header : <h1>Developers Documentation <small>This shows how to integrate SMSsync into your project.</small></h1>
77
---
88
<div class="row">
@@ -205,10 +205,10 @@ <h2>Instructions</h2>
205205
"95df126b-ee80-4175-a6fb"
206206
]
207207
}</pre>
208-
<p>To send SMS status delivery report back to the server, SMSsync will make a <code>GET ?task=results</code> to the server and should receive a list
208+
<p>To send SMS status delivery report back to the server, SMSsync will make a <code>GET ?task=result</code> to the server and should receive a list
209209
of message UUIDs that are waiting to receive delivery reports. The server should send the JSON response below</p>
210210
<pre class="prettyprint linenums">
211-
POST /smssync?task=results HTTP/1.1
211+
POST /smssync?task=result HTTP/1.1
212212
Host: testserver.local
213213

214214
HTTP/1.1 200 OK
@@ -220,9 +220,9 @@ <h2>Instructions</h2>
220220
"95df126b-ee80-4175-a6fb"
221221
]
222222
}</pre>
223-
<p>Then SMSsync will send delivery reports for the message uuids above as a POST request<code>POST ?task=results</code> with the JSON response below</p>
223+
<p>Then SMSsync will send delivery reports for the message uuids above as a POST request<code>POST ?task=result</code> with the JSON response below</p>
224224
<pre class="prettyprint linenums">
225-
POST /smssync?task=results HTTP/1.1
225+
POST /smssync?task=result HTTP/1.1
226226
Host: testserver.local
227227
Content-Type: application/json; charset=utf-8
228228

@@ -527,7 +527,7 @@ <h2>A sample web service</h2>
527527

528528
if($_SERVER['REQUEST_METHOD'] === 'POST')
529529
{
530-
if($_SERVER['QUERY_STRING'] === 'task=results')
530+
if($_SERVER['QUERY_STRING'] === 'task=result')
531531
{
532532
get_sms_delivery_report();
533533
}

website-src/_root/download.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title : Download
33
layout : default
44
description : Download SMSsync
5-
date : Jun 23, 2014
5+
date : Nov 11, 2014
66
header : <h1>Downloads <small>Where to download the app.</small></h1>
77
---
88
<div class="row">

website-src/_root/features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title : Features
33
layout : default
44
description : SMSsync features
5-
date : Jun 23, 2014
5+
date : Nov 11, 2014
66
header : <h1>Features <small>Highlights the important features of SMSsync.</small></h1>
77
---
88

website-src/_root/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title : Home
33
layout : index
44
description : SMSsync home page
5-
date : Jun 23, 2014
5+
date : Nov 11, 2014
66
header : <h1>About</h1>
77
---
88
{{# javascripts.load }}

website-src/_root/releases.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title : Releases
33
layout : default
44
description : SMSsync releases
5-
date : Jun 23, 2014
5+
date : Nov 11, 2014
66
header : <h1>Releases History <small>This page is about release information for SMSsync. It provides changelogs and version numbers of old releases, and details of current stable and development branches.</small></h1>
77
---
88
{{# javascripts.load }}

website-src/_root/screenshot.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title : Screenshots
33
layout : default
44
description : SMSsync screenshots
5-
date : Jun 23, 2014
5+
date : Nov 11, 2014
66
header : <h1>Releases History <small>This page is about release information for SMSsync. It provides changelogs and version numbers of old releases, and details of current stable and development branches.</small></h1>
77
---
88
{{# javascripts.load }}

0 commit comments

Comments
 (0)