kamelopard 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/kamelopard/classes.rb +1 -1
- data/lib/kamelopard/functions.rb +1 -0
- metadata +2 -2
data/lib/kamelopard/classes.rb
CHANGED
|
@@ -185,7 +185,7 @@ module Kamelopard
|
|
|
185
185
|
# If this is a master-only object, this function gets called internally
|
|
186
186
|
# in place of the object's original to_kml method
|
|
187
187
|
def _alternate_to_kml(*a)
|
|
188
|
-
if @master_only and DocumentHolder.instance.current_document.master_mode
|
|
188
|
+
if @master_only and ! DocumentHolder.instance.current_document.master_mode
|
|
189
189
|
Kamelopard.log(:info, 'master/slave', "Because this object is master_only, and we're in slave mode, we're not including object #{self.inspect}")
|
|
190
190
|
return ''
|
|
191
191
|
end
|
data/lib/kamelopard/functions.rb
CHANGED
|
@@ -573,6 +573,7 @@
|
|
|
573
573
|
# Adds a VSRAction object (a viewsyncrelay action) to the document, for
|
|
574
574
|
# viewsyncrelay configuration
|
|
575
575
|
def do_action(cmd, options = {})
|
|
576
|
+
# XXX Finish this
|
|
576
577
|
end
|
|
577
578
|
|
|
578
579
|
# Returns the Document's VSRActions as a YAML string, suitable for writing to
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kamelopard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.10
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2013-02-
|
|
13
|
+
date: 2013-02-14 00:00:00.000000000 Z
|
|
14
14
|
dependencies: []
|
|
15
15
|
description: Various classes and functions used to ease development of KML files,
|
|
16
16
|
in particular for development of Google Earth tours
|