Changeset 311 for trunk/src/ajax
- Timestamp:
- 08/26/10 21:37:14 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/ajax/javascripts/constants.js ¶
r279 r311 12 12 13 13 // --- Some constants fot the http connections via the XMLHttpRequest-Object 14 var HOST_PREF = /*"http://localhost:8000/";*/ "192.168.178.23:8000/"; // of the form "http://(.+)/"14 var HOST_PREF = "http://localhost:8000/"; /*"192.168.178.23:8000/"; // of the form "http://(.+)/"*/ 15 15 var GET_PREFIX = HOST_PREF + "json/get/"; 16 16 var GET_STUB_PREFIX = HOST_PREF + "json/topicstubs/"; … … 22 22 var INSTANCE_PSIS_URL = HOST_PREF + "json/tmcl/instances/"; 23 23 var OWN_URL = HOST_PREF + "isidorus"; 24 var SUMMARY_URL = HOST_PREF + "json/summary" 24 var SUMMARY_URL = HOST_PREF + "json/summary"; 25 25 var MARK_AS_DELETED_URL = HOST_PREF + "mark-as-deleted"; 26 var TM_OVERVIEW = "/json/tmcl/overview/";26 var TM_OVERVIEW = HOST_PREF + "json/tmcl/overview/"; 27 27 var TIMEOUT = 10000; // const TIMEOUT = 10000 --> "const" doesn't work under IE 28 28
Note: See TracChangeset
for help on using the changeset viewer.