Revision 7156 trunk/extensions/extPublish/src/org/gvsig/remoteservices/conf/mapserver/MapServer.java

View differences:

MapServer.java
44 44
 *
45 45
 * $Id$
46 46
 * $Log$
47
 * Revision 1.18  2006-09-08 17:58:01  jorpiell
47
 * Revision 1.19  2006-09-08 18:03:18  jorpiell
48 48
 * El EPSG se escribe en min?sculas y los times se escriben en orden
49 49
 *
50
 * Revision 1.18  2006/09/08 17:58:01  jorpiell
51
 * El EPSG se escribe en min?sculas y los times se escriben en orden
52
 *
50 53
 * Revision 1.17  2006/09/08 12:50:20  jorpiell
51 54
 * Se tiene en cuanta el par?metro TIME
52 55
 *
......
194 197
		
195 198
		public String toString() {
196 199
			String str = "";
197
			if (init)
200
			if (init){
198 201
				str += "init=";
199
			return str+crs; //LWS .toLowerCase();
202
				return str+crs.toLowerCase();
203
			}
204
			return crs; //LWS .toLowerCase();
200 205
		}
201 206
		
202 207
		public void toMap() {
203 208
			toMapln("PROJECTION");
204 209
			tabIn();
205
			toMapln("\""+this.toString().toLowerCase()+"\"");
210
			toMapln("\""+this+"\"");
206 211
			tabOut();
207 212
			toMapln("END");
208 213
		}
......
243 248
		if (init == true)
244 249
			prj.toString();
245 250
		tabIn();
246
		toMapln("\""+prj.toString().toLowerCase()+"\"");
251
		toMapln("\""+prj+"\"");
247 252
		tabOut();
248 253
		toMapln("END");
249 254
	}

Also available in: Unified diff