2011-01-10 23:58:39 +01:00
|
|
|
var config = {
|
2011-05-26 14:16:34 +02:00
|
|
|
// For internal server or proxying webserver.
|
|
|
|
url : {
|
|
|
|
configuration : 'up/configuration',
|
|
|
|
update : 'up/world/{world}/{timestamp}',
|
|
|
|
sendmessage : 'up/sendmessage'
|
|
|
|
},
|
|
|
|
|
|
|
|
// For proxying webserver through php.
|
|
|
|
// url: {
|
|
|
|
// configuration: 'up.php?path=configuration',
|
2011-06-13 23:37:35 +02:00
|
|
|
// update: 'up.php?path=world/{world}/{timestamp}',
|
2011-05-26 14:16:34 +02:00
|
|
|
// sendmessage: 'up.php?path=sendmessage'
|
|
|
|
// },
|
|
|
|
|
|
|
|
// For proxying webserver through aspx.
|
|
|
|
// url: {
|
|
|
|
// configuration: 'up.aspx?path=configuration',
|
2011-06-13 23:37:35 +02:00
|
|
|
// update: 'up.aspx?path=world/{world}/{timestamp}',
|
2011-05-26 14:16:34 +02:00
|
|
|
// sendmessage: 'up.aspx?path=sendmessage'
|
|
|
|
// },
|
|
|
|
|
|
|
|
// For standalone (jsonfile) webserver.
|
|
|
|
// url: {
|
|
|
|
// configuration: 'standalone/dynmap_config.json',
|
|
|
|
// update: 'standalone/dynmap_{world}.json',
|
|
|
|
// sendmessage: 'standalone/sendmessage.php'
|
|
|
|
// },
|
|
|
|
|
|
|
|
tileUrl : 'tiles/',
|
|
|
|
tileWidth : 128,
|
|
|
|
tileHeight : 128
|
2011-06-13 23:37:35 +02:00
|
|
|
};
|