Merge pull request #704 from elemoine/no-namespace-export

Export fixes
This commit is contained in:
Éric Lemoine
2013-05-09 14:13:48 -07:00
4 changed files with 12 additions and 15 deletions

View File

@@ -278,7 +278,7 @@ def main(argv):
components = m.group('name').split('.')
if re.match(r'[A-Z]', components[-1]):
requires.add(name)
elif len(components) > 2:
elif len(components) > 1:
requires.add('.'.join(components[:-1]))
continue
raise RuntimeError(line)

View File

@@ -1,5 +1,4 @@
@exportSymbol ol.animation
@exportProperty ol.animation.bounce
@exportProperty ol.animation.pan
@exportProperty ol.animation.rotate
@exportProperty ol.animation.zoom
@exportSymbol ol.animation.bounce
@exportSymbol ol.animation.pan
@exportSymbol ol.animation.rotate
@exportSymbol ol.animation.zoom

View File

@@ -1,4 +1,3 @@
@exportSymbol ol.coordinate
@exportSymbol ol.coordinate.createStringXY
@exportSymbol ol.coordinate.toStringHDMS
@exportSymbol ol.coordinate.toStringXY

View File

@@ -1,8 +1,7 @@
@exportSymbol ol.easing
@exportProperty ol.easing.bounce
@exportProperty ol.easing.easeIn
@exportProperty ol.easing.easeOut
@exportProperty ol.easing.elastic
@exportProperty ol.easing.inAndOut
@exportProperty ol.easing.linear
@exportProperty ol.easing.upAndDown
@exportSymbol ol.easing.bounce
@exportSymbol ol.easing.easeIn
@exportSymbol ol.easing.easeOut
@exportSymbol ol.easing.elastic
@exportSymbol ol.easing.inAndOut
@exportSymbol ol.easing.linear
@exportSymbol ol.easing.upAndDown