Changeset 1198
- Timestamp:
- 07/01/09 20:22:24 (4 years ago)
- Files:
-
- apps/opengeo/geoexplorer/trunk/src/html/about.html (modified) (1 diff)
- apps/opengeo/geoexplorer/trunk/src/html/embed.html (modified) (1 diff)
- apps/opengeo/geoexplorer/trunk/src/html/index.html (modified) (1 diff)
- apps/opengeo/geoexplorer/trunk/src/script/app/GeoExplorer.js (modified) (5 diffs)
- apps/opengeo/geoexplorer/trunk/src/script/app/GeoExplorer/CapabilitiesGrid.js (modified) (1 diff)
- apps/opengeo/geoexplorer/trunk/src/script/app/GeoExplorer/Full.js (modified) (1 diff)
- apps/opengeo/geoexplorer/trunk/src/script/app/GeoExplorer/LayerMenuItem.js (modified) (1 diff)
- apps/opengeo/geoexplorer/trunk/src/script/app/GeoExplorer/Wizard.js (modified) (1 diff)
- apps/opengeo/geoexplorer/trunk/src/script/app/GeoExplorer/util.js (modified) (1 diff)
- apps/opengeo/geoexplorer/trunk/src/theme/app/geoexplorer.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
apps/opengeo/geoexplorer/trunk/src/html/about.html
r1165 r1198 7 7 <div class="logo"></div> 8 8 <h2> GeoExplorer </h2> 9 <div class="versioninfo">Version 0. 1</div>9 <div class="versioninfo">Version 0.2</div> 10 10 <h3> Engineering & Design by OpenGeo </h3> 11 11 <a href="http://opengeo.org/">http://opengeo.org/</a> apps/opengeo/geoexplorer/trunk/src/html/embed.html
r1181 r1198 32 32 proxy: "/proxy/?url=", 33 33 about: { 34 title: "Example Map", 35 "abstract": "A description of the map's contents", 36 keywords: "example, test, development", 37 contact: "Georj the Robot, Outreach Tribe Leader, OpenGeo, http://opengeo.org/" 34 title: "GeoExplorer Demo Map", 35 "abstract": "This is a demonstration of GeoExplorer, " + 36 "an application for assmebling and publishing web " + 37 "based maps.", 38 contact: "For more information, contact <a href='http://opengeo.org'>OpenGeo</a>." 38 39 }, 39 40 ows: { apps/opengeo/geoexplorer/trunk/src/html/index.html
r1181 r1198 33 33 proxy: "/proxy/?url=", 34 34 about: { 35 title: "Example Map", 36 "abstract": "A description of the map's contents", 37 keywords: "example, test, development", 38 contact: "Georj the Robot, Representative, OpenGeo, http://opengeo.org/" 35 title: "GeoExplorer Demo Map", 36 "abstract": "This is a demonstration of GeoExplorer, " + 37 "an application for assmebling and publishing web " + 38 "based maps. After adding layer to the map, find " + 39 "the 'Publish Map' button above to embed this map " + 40 "in any web page.", 41 contact: "For more information, contact <a href='http://opengeo.org'>OpenGeo</a>." 39 42 }, 40 43 ows: { apps/opengeo/geoexplorer/trunk/src/script/app/GeoExplorer.js
r1191 r1198 1 1 /** 2 * Copyright (c) 2009 The Open Planning Project2 * Copyright (c) 2009 OpenGeo 3 3 */ 4 4 … … 1492 1492 var appInfo = new Ext.Panel({ 1493 1493 title: "GeoExplorer", 1494 html: "<iframe style= \"border: none; height: 100%; width: 100%\" src=\"about.html\"><a target=\"_blank\" href=\"about.html\">About GeoExplorer</a> </iframe>"1494 html: "<iframe style='border: none; height: 100%; width: 100%' src='about.html'><a target='_blank' href='about.html'>About GeoExplorer</a> </iframe>" 1495 1495 }); 1496 1496 … … 1498 1498 title: '', 1499 1499 "abstract": '', 1500 keywords: '',1501 1500 contact: '' 1502 1501 }); … … 1505 1504 title: "Map Info", 1506 1505 html: '<div class="gx-info-panel">' + 1507 '<h2> Title </h2> <p>' + about.title + 1508 '</p> <h2> Abstract </h2> <p>' + about['abstract'] + 1509 '</p> <h2> Keywords </h2> <p>' + about.keywords + 1510 '</p> <h2> Contact </h2> <p>' + about.contact +' </p> </div>', 1506 '<h2>Title</h2><p>' + about.title + 1507 '</p><h2>Description</h2><p>' + about['abstract'] + 1508 '</p> <h2>Contact</h2><p>' + about.contact +'</p></div>', 1511 1509 height: 'auto', 1512 1510 width: 'auto' … … 1516 1514 activeTab: 0, 1517 1515 width: 300, 1518 height: 3 50,1519 items: [mapInfo, appInfo]1516 height: 300, 1517 items: [mapInfo, appInfo] 1520 1518 }); 1521 1519 apps/opengeo/geoexplorer/trunk/src/script/app/GeoExplorer/CapabilitiesGrid.js
r1169 r1198 1 1 /** 2 * Copyright (c) 2008 The Open Planning Project2 * Copyright (c) 2008 OpenGeo 3 3 * 4 4 */ apps/opengeo/geoexplorer/trunk/src/script/app/GeoExplorer/Full.js
r1195 r1198 1 1 /** 2 * Copyright (c) 2009 The Open Planning Project2 * Copyright (c) 2009 OpenGeo 3 3 */ 4 4 apps/opengeo/geoexplorer/trunk/src/script/app/GeoExplorer/LayerMenuItem.js
r1196 r1198 1 1 /** 2 * Copyright (c) 2009 The Open Planning Project2 * Copyright (c) 2009 OpenGeo 3 3 */ 4 4 apps/opengeo/geoexplorer/trunk/src/script/app/GeoExplorer/Wizard.js
r933 r1198 1 1 /** 2 * Copyright (c) 2009 The Open Planning Project2 * Copyright (c) 2009 OpenGeo 3 3 */ 4 4 apps/opengeo/geoexplorer/trunk/src/script/app/GeoExplorer/util.js
r987 r1198 1 1 /** 2 * Copyright (c) 2008 The Open Planning Project2 * Copyright (c) 2008 OpenGeo 3 3 */ 4 4 apps/opengeo/geoexplorer/trunk/src/theme/app/geoexplorer.css
r1197 r1198 213 213 } 214 214 215 .gx-info-panel p { 216 margin-bottom: 4px; 215 .gx-info-panel { 216 margin: 1em; 217 } 218 219 .gx-info-panel h2 { 220 margin-top: 1em; 217 221 } 218 222