+ applied = crt_series.get_applied()
+
+ if options.range:
+ boundaries = options.range.split(':')
+ if len(boundaries) == 1:
+ start = boundaries[0]
+ stop = boundaries[0]
+ if len(boundaries) == 2:
+ if boundaries[0] == '':
+ start = applied[0]
+ else:
+ start = boundaries[0]
+ if boundaries[1] == '':
+ stop = applied[-1]
+ else:
+ stop = boundaries[1]
+ else:
+ raise MainException, 'incorrect parameters to "--range"'
+
+ if start in applied:
+ start_idx = applied.index(start)
+ else:
+ raise MainException, 'Patch "%s" not applied' % start
+ if stop in applied:
+ stop_idx = applied.index(stop) + 1
+ else:
+ raise MainException, 'Patch "%s" not applied' % stop
+
+ if start_idx >= stop_idx:
+ raise MainException, 'Incorrect patch range order'
+ else:
+ start_idx = 0
+ stop_idx = -1
+
+ patches = applied[start_idx:stop_idx]
+