details: http://www.bx.psu.edu/hg/galaxy/rev/b818e6dff427 changeset: 2412:b818e6dff427 user: Dan Blankenberg <dan@bx.psu.edu> date: Thu May 21 09:40:21 2009 -0400 description: Fix for DrillDownParameter type and compatibility with SelectToolParameter's old dynamic options and late validation 1 file(s) affected in this change: lib/galaxy/tools/parameters/basic.py diffs (11 lines): diff -r 49d90967d0b8 -r b818e6dff427 lib/galaxy/tools/parameters/basic.py --- a/lib/galaxy/tools/parameters/basic.py Fri May 15 16:19:23 2009 -0400 +++ b/lib/galaxy/tools/parameters/basic.py Thu May 21 09:40:21 2009 -0400 @@ -882,6 +882,7 @@ from_file = os.path.join( tool.app.config.tool_data_path, from_file ) elem = XML( "<root>%s</root>" % open( from_file ).read() ) self.is_dynamic = False + self.dynamic_options = None #backwards compatibility with SelectToolParameter's old dynamic options and late validation self.options = [] self.filtered = {} if elem.find( 'filter' ):