[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb: [751] trunk/rest.pl



Revision: 751
          http://svn.sourceforge.net/ledger-smb/?rev=751&view=rev
Author:   jasonjayr
Date:     2007-01-03 18:57:24 -0800 (Wed, 03 Jan 2007)

Log Message:
-----------
Better message with instructions on how to enable the rest api.

correted URLs

Modified Paths:
--------------
    trunk/rest.pl

Modified: trunk/rest.pl
===================================================================
--- trunk/rest.pl	2007-01-04 02:43:30 UTC (rev 750)
+++ trunk/rest.pl	2007-01-04 02:57:24 UTC (rev 751)
@@ -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 @@
 
 =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


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.