Changeset 5b2bf669f1f869829e390eabfc26aa967ec02fbd
- Timestamp:
- 05/20/07 10:34:20
(1 year ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1179650060 +0200
- git-parent:
[d5f94f95381f7ff81405fd7b3098541f9edcaf90]
- git-author:
- Christopher Jung <bktheg@web.de> 1179650060 +0200
- Message:
Pfade gefixt
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rb0b7d55 |
r5b2bf66 |
|
| 210 | 210 | nSystem = system; |
|---|
| 211 | 211 | |
|---|
| 212 | | String tmpurl = ServerConnector.getInstance().getServerURL() + "php/main.php?module=mapdata&sess="+ServerConnector.getInstance().getSession()+"&sys=" + system; |
|---|
| | 212 | String tmpurl = ServerConnector.getInstance().getServerURL() + "ds?module=mapdata&sess="+ServerConnector.getInstance().getSession()+"&sys=" + system; |
|---|
| 213 | 213 | if( user != 0 ) { |
|---|
| 214 | 214 | tmpurl += "&forceuser="+user; |
|---|
| rb0b7d55 |
r5b2bf66 |
|
| 54 | 54 | */ |
|---|
| 55 | 55 | public Document fetchStyledURL( String module, String action, String params ) throws XMLConnectorException { |
|---|
| 56 | | return fetchXMLUrl( "php/main.php?module="+module+"&action="+action+"&sess="+ServerConnector.getInstance().getSession()+"&_style=xml"+params ); |
|---|
| | 56 | return fetchXMLUrl( "ds?module="+module+"&action="+action+"&sess="+ServerConnector.getInstance().getSession()+"&_style=xml"+params ); |
|---|
| 57 | 57 | } |
|---|
| 58 | 58 | |
|---|
| … | … | |
| 68 | 68 | */ |
|---|
| 69 | 69 | public Document fetchURL( String module, String action, String params ) throws XMLConnectorException { |
|---|
| 70 | | return fetchXMLUrl( "php/main.php?module="+module+"&action="+action+"&sess="+ServerConnector.getInstance().getSession()+params ); |
|---|
| | 70 | return fetchXMLUrl( "ds?module="+module+"&action="+action+"&sess="+ServerConnector.getInstance().getSession()+params ); |
|---|
| 71 | 71 | } |
|---|
| 72 | 72 | |
|---|