[Commits] r748 - in sandbox/docsrc: . _theme/geoext _theme/geoext/static

commits at geoext.org commits at geoext.org
Fri May 15 07:46:02 CEST 2009


Author: tschaub
Date: 2009-05-15 07:46:02 +0200 (Fri, 15 May 2009)
New Revision: 748

Modified:
   sandbox/docsrc/_theme/geoext/layout.html
   sandbox/docsrc/_theme/geoext/static/geoext.css
   sandbox/docsrc/index.rst
Log:
front page tweaks

Modified: sandbox/docsrc/_theme/geoext/layout.html
===================================================================
--- sandbox/docsrc/_theme/geoext/layout.html	2009-05-15 04:58:16 UTC (rev 747)
+++ sandbox/docsrc/_theme/geoext/layout.html	2009-05-15 05:46:02 UTC (rev 748)
@@ -28,6 +28,7 @@
             <p>Current release: <a href="{{ pathto('downloads') }}">{{ version }}</a></p>
             <h1>GeoExt News</h1>
             <script src="http://landmark-project.com/feed2js/feed2js.php?src=http%3A%2F%2Fgeoext.blogspot.com%2Ffeeds%2Fposts%2Fdefault%3Falt%3Drss&num=3&desc=75"></script>
+            <span><a href="http://geoext.blogspot.com" title="GeoExt Blog">more ...</a></span>
         </div>
     </div>
 {%- endmacro %}

Modified: sandbox/docsrc/_theme/geoext/static/geoext.css
===================================================================
--- sandbox/docsrc/_theme/geoext/static/geoext.css	2009-05-15 04:58:16 UTC (rev 747)
+++ sandbox/docsrc/_theme/geoext/static/geoext.css	2009-05-15 05:46:02 UTC (rev 748)
@@ -17,6 +17,9 @@
     margin: 0 80px;
     width: auto;
 }
+a.reference em {
+    font-style: normal;
+}
 div.sphinxsidebar {
     padding-right: 95px;
 }

Modified: sandbox/docsrc/index.rst
===================================================================
--- sandbox/docsrc/index.rst	2009-05-15 04:58:16 UTC (rev 747)
+++ sandbox/docsrc/index.rst	2009-05-15 05:46:02 UTC (rev 748)
@@ -17,21 +17,21 @@
 
 .. code-block:: javascript
 
-    var win = new Ext.Window({
+    new Ext.Window({
         title: "GeoExt",
-        items: [
-            new GeoExt.MapPanel({
-                border: false,
-                map: {
-                    maxExtent: new OpenLayers.Bounds(-90, -45, 90, 45)
-                }
-            })
-        ]
-    });
-    win.show();
+        height: 400, width: 600,
+        items: [{
+            xtype: "gx_mappanel",
+            layers: [new OpenLayers.Layer.WMS(
+                "bluemarble", "http://sigma.openplans.org/geoserver/wms",
+                {layers: 'bluemarble'}
+            )],
+            extent: [-5, 35, 15, 55]
+        }]
+    }).show();
 
 Learn more about using GeoExt in your application by reading the
-:doc:`docs`.
+:doc:`documentation <docs>`.
 
 
 GeoExt is Open Source



More information about the Commits mailing list