Author: bob
Date: 2012-05-05 22:14:13 +0100 (Sat, 05 May 2012)
New Revision: 1389
Modified:
trunk/Changes
Log:
update Changes with change for #298
Modified: trunk/Changes
===================================================================
--- trunk/Changes 2012-05-05 20:00:39 UTC (rev 1388)
+++ trunk/Changes 2012-05-05 21:14:13 UTC (rev 1389)
@@ -36,6 +36,7 @@
Fixed bug with recent changes display when minor edit suppressed (for
which we require version 0.80 of Wiki::Toolkit).
Renumber tests so we have more room (#297).
+ Fix warnings in tests due to undef values being lower cased (#298).
0.66 12 April 2012
All templates now have access to the "username" TT variable.
Author: kake
Date: 2012-05-05 13:20:04 +0100 (Sat, 05 May 2012)
New Revision: 1387
Modified:
trunk/templates/map_index_leaflet.tt
Log:
Added message in place of map for people without JavaScript.
Modified: trunk/templates/map_index_leaflet.tt
===================================================================
--- trunk/templates/map_index_leaflet.tt 2012-05-05 12:14:17 UTC (rev 1386)
+++ trunk/templates/map_index_leaflet.tt 2012-05-05 12:20:04 UTC (rev 1387)
@@ -56,8 +56,15 @@
<p class="no_nodes_on_map">No pages with geodata - nothing to display
on map!</p>
[% ELSE %]
+ <span id="map_index_no_js">
+ <p>Sorry! JavaScript is required to view the map - you may prefer to
+ <a href="[% feed_base %]">view the results as a list</a> instead.</p>
+ </span>
+
<script type="text/javascript">
+ $('#map_index_no_js').hide();
+
map_div_id = 'map_index_canvas';
centre_lat = [% centre_lat %];
centre_long = [% centre_long %];