? 710514-activated-layers-02.patch
? 710514-activated-layers-03.patch
? dependency-detection.patch
? display_projection_fix.patch
? modify_feature.diff
? multilingual.diff
? openlayers-maxextent.patch
? stash.diff
? titles_and_translation.diff
? includes/behaviors/.openlayers_behavior_attribution.inc.swp
? includes/behaviors/.openlayers_behavior_zoomtolayer.inc.swp
? includes/layer_types/.kml.js.swp
? includes/layer_types/multimap.inc
? includes/layer_types/multimap.js
? includes/layer_types/wms_client.inc
? js/.openlayers.js.swp
? js/openlayers
? modules/openlayers_cck/includes/behaviors/js/CustomEditingToolbar.js
? modules/openlayers_ui/.openlayers_ui.css.swp
? modules/openlayers_ui/includes/.openlayers_ui.presets.inc.swp
? modules/openlayers_ui/includes/.openlayers_ui.styles.inc.swp
? modules/openlayers_ui/js/.openlayers_ui.presets.js.swp
Index: includes/behaviors/openlayers_behavior_attribution.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/openlayers/includes/behaviors/openlayers_behavior_attribution.inc,v
retrieving revision 1.1.2.3
diff -r1.1.2.3 openlayers_behavior_attribution.inc
21a22,31
>   function options_form($defaults) {
>     return array(
>       'spec' => array(
>         '#type' => 'markup',
>         '#value' => '<div class="openlayers_dependency_flag" 
>           jsvalue="OpenLayers.Control.Attribution">[available]</div>'
>       )
>     );
>   }
> 
Index: modules/openlayers_ui/openlayers_ui.css
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/openlayers/modules/openlayers_ui/Attic/openlayers_ui.css,v
retrieving revision 1.1.2.3
diff -r1.1.2.3 openlayers_ui.css
40a41,52
> div.openlayers_dependency_flag {
>   color: #666;
>   }
> 
> div.openlayers_dependency_broken {
>   color: red;
>   }
> 
> div.openlayers_dependency_filled {
>   color: green;
>   }
> 
Index: modules/openlayers_ui/js/openlayers_ui.presets.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/openlayers/modules/openlayers_ui/js/Attic/openlayers_ui.presets.js,v
retrieving revision 1.1.2.1
diff -r1.1.2.1 openlayers_ui.presets.js
56a57,68
>   // mark openlayers dependencies as valid or invalid
>   $('.openlayers_dependency_flag').each(function() {
>     var dependency = $(this).attr('jsvalue') + '.prototype';
>     try {
>       eval(dependency);
>       $(this).addClass('openlayers_dependency_filled');
>     }
>     catch(e) {
>       $(this).addClass('openlayers_dependency_broken');
>     }
>   });
> 
