Compare commits

...

11 Commits

Author SHA1 Message Date
Rome Reginelli
202e42b08d Merge pull request #67 from ripple/gh-pages
Preparing for 9/24 patch push
2014-09-24 15:32:38 -07:00
Rome Reginelli
f01f9f529e Merge pull request #66 from mDuo13/gh-pages
[FIX] rippled APIs - update transaction format link in sign command
2014-09-24 13:53:20 -07:00
mDuo13
c834cd8c16 [FIX] rippled APIs - update transaction format link in sign command 2014-09-24 13:50:43 -07:00
Rome Reginelli
2f040e0c28 Merge pull request #65 from mDuo13/gh-pages
[FIX] REST tool handle DEV-44 in all cases
2014-09-24 13:43:52 -07:00
mDuo13
937cb2e2bf [FIX] remove outdated comment 2014-09-24 13:36:14 -07:00
mDuo13
37a23d499b [FIX] actually fix DEV-44 in all cases 2014-09-24 13:34:52 -07:00
Rome Reginelli
0388898396 Merge pull request #8 from mDuo13/rest_apitool
[FIX] REST tool - correctly wipe req body on command select per DEV-44
2014-09-24 13:30:54 -07:00
mDuo13
060c5ad755 [FIX] REST tool - correctly wipe req body on command select as per DEV-44 2014-09-24 13:29:17 -07:00
Rome Reginelli
8be084b979 Merge pull request #64 from ripple/gh-pages
REST API tool - remove redundant :443 from URL
2014-09-23 15:32:33 -07:00
mDuo13
8ae50b6597 [MERGE] Merge branch 'gh-pages' of https://github.com/ripple/ripple-dev-portal into gh-pages 2014-09-23 15:30:54 -07:00
mDuo13
c7986b3e45 [FIX] Rest API Tool - remove redundant :443 2014-09-23 15:30:38 -07:00
4 changed files with 70 additions and 64 deletions

View File

@@ -227,6 +227,7 @@ function update_method() {
request_body.hide();
} else {
request_body.show();
cm_request.refresh();
}
}
@@ -249,6 +250,7 @@ function select_request(request) {
//rest_url.val(command.path);
rest_url.text(command.path);
rest_method.val(command.method);
rest_method.change();

View File

@@ -141,7 +141,7 @@ mixpanel.init("132d42885e094171f34467fc54da6fab");
<option value='POST'>POST</option>
</select>
<div id='rest_url_wrapper'>
<span id='rest_host'>https://api.ripple.com:443</span><span id='rest_url' contenteditable='true'></span>
<span id='rest_host'>https://api.ripple.com</span><span id='rest_url' contenteditable='true'></span>
</div>
<div id='request_body'></div>
</div>

File diff suppressed because one or more lines are too long

View File

@@ -5356,7 +5356,7 @@ The request includes the following parameters:
| Field | Type | Description |
|-------|------|-------------|
| tx_json | Object | [Transaction definition](https://ripple.com/wiki/Transaction_Format) in JSON format |
| tx_json | Object | [Transaction definition](transactions.html) in JSON format |
| secret | String | Secret key of the account supplying the transaction, used to sign it. Do not send your secret to untrusted servers or through unsecured network connections. |
| offline | Boolean | (Optional, defaults to false) If true, when constructing the transaction, do not attempt to automatically fill in or validate values. |