Subversion Repositories SmartDukaan

Rev

Rev 5873 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5873 Rev 7997
Line 1... Line 1...
1
values = []
1
values = []
2
expFeatures = expSlide.getExpandedFeatures()
2
expFeatures = expSlide.getExpandedFeatures()
3
if expFeatures is not None:
3
if expFeatures is not None:
4
    for expFeature in expFeatures:
4
    for expFeature in expFeatures:
5
        print expFeature.getFeatureDefinition()
5
        print expFeature.getFeatureDefinition()
6
        if expFeature.getFeatureDefinition().getID() == 120026:
6
        if expFeature.getFeatureDefinition().getID() == 120485:
7
            expBullets = expFeature.getExpandedBullets()
7
            expBullets = expFeature.getExpandedBullets()
8
            if expBullets is not None:
8
            if expBullets is not None:
9
                for expBullet in expBullets:
9
                for expBullet in expBullets:
10
                    resolution = float(expBullet.getValue())
10
                    resolution = float(expBullet.getValue())
11
 
11