summaryrefslogtreecommitdiff
path: root/rest.pl
diff options
context:
space:
mode:
authorjasonjayr <jasonjayr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-01-04 02:57:24 +0000
committerjasonjayr <jasonjayr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-01-04 02:57:24 +0000
commite07750919cbc0f2420387db5354f998fd9473646 (patch)
tree9a1d484124a824f94aee9a0f6a4c08dcc3648b84 /rest.pl
parenta56fe253c96abdff7d9909a3cca3c1d0a6a8e3d2 (diff)
Better message with instructions on how to enable the rest api.
correted URLs git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@751 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'rest.pl')
-rwxr-xr-xrest.pl23
1 files changed, 12 insertions, 11 deletions
diff --git a/rest.pl b/rest.pl
index 968743f0..27618202 100755
--- a/rest.pl
+++ b/rest.pl
@@ -2,10 +2,11 @@
use LedgerSMB::RESTXML::Handler;
-# To Enable the REST API, Delete these 3 lines.
-
+# To Enable the REST API, Delete these 5 lines.
print "Content-type: text/plain\n\n";
-print "REST API disabled by default until authentication is working correctly";
+print "REST API disabled by default until authentication is working correctly\n";
+print "If you understand the security implications of this, and wish to enable the REST api\n";
+print "Then open rest.pl, and remove these 5 lines";
exit;
LedgerSMB::RESTXML::Handler->cgi_handle();
@@ -16,16 +17,16 @@ rest.pl - RESTful interface to LedgerSMB
=head1 SUMMARY
- status
- [OK] GET rest.pl/Customer/12345
- [ ] GET rest.pl/Customer/CUSTOMERNUMBER
- [OK] GET rest.pl/Customer_Search?_keyword=FOO
+ URLS that are working:
+ [OK] GET rest.pl/Login/Customer/12345
+ [ ] GET rest.pl/Login/Customer/CUSTOMERNUMBER
+ [OK] GET rest.pl/Login/Customer_Search?_keyword=FOO
- [OK] GET rest.pl/Part/12345
- [ ] GET rest.pl/Part/PARTNUMBER
- [ ] GET rest.pl/Part_Search?_keyword=red
+ [OK] GET rest.pl/Login/Part/12345
+ [ ] GET rest.pl/Login/Part/PARTNUMBER
+ [ ] GET rest.pl/Login/Part_Search?_keyword=red
- [ ] GET rest.pl/SalesOrder/12345
+ [ ] GET rest.pl/Login/SalesOrder/12345
=cut