id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc,release 1393,[PATCH] Use 'select' attribute in drop-down list to show current project by default without breaking alphabetical order,Bryan,Ryan J Ollos,"I've changed the loop over the project environments in web_ui.py to this, so that the current project will be shown by default as selected in the drop-down list, but the projects will still be in alphabetical order. {{{ for project in os.listdir(search_path): if project != this_project: proj_env = _open_environment(os.path.join(search_path, project)) proj_elm = tag.OPTION(proj_env.project_name, value=posixpath.join(base_url, project)) projects.append((proj_elm, proj_env.project_name)) else: proj_elm = tag.OPTION(self.env.project_name, selected='selected', value='') projects.append((proj_elm, self.env.project_name)) }}} Minor detail I know, but I think the UI is nicer if the list ordering is kept constant across projects. ",defect,closed,normal,ProjectMenuPlugin,trivial,fixed,,,0.10