Changeset 4011 for branch/InterfaceEditor
- Timestamp:
- 02/14/09 16:25:36 (4 years ago)
- Location:
- branch/InterfaceEditor
- Files:
-
- 9 modified
-
. (modified) (1 prop)
-
higwidgets/__init__.py (modified) (1 diff)
-
install_scripts/unix/setup.py (modified) (1 diff)
-
share/locale/pt_PT/pt_PT.po (modified) (1 diff)
-
umitCore/BugRegister.py (modified) (2 diffs)
-
umitCore/Version.py (modified) (1 diff)
-
umitCore/__init__.py (modified) (1 diff)
-
umitGUI/BugReport.py (modified) (2 diffs)
-
umitGUI/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branch/InterfaceEditor
- Property svnmerge-integrated changed from /trunk:1-3996 to /trunk:1-4010
-
branch/InterfaceEditor/higwidgets/__init__.py
r3971 r4011 32 32 """ 33 33 34 __version__ = "1.0 A-svn"34 __version__ = "1.0beta1" 35 35 36 36 # added to RadialNet compatibility -
branch/InterfaceEditor/install_scripts/unix/setup.py
r3971 r4011 346 346 scripts = ['umit', 'umit-scheduler'], 347 347 packages = ['', 'umitCore', 'umitDB', 'umitGUI', 'umitInventory', 348 ' higwidgets'],348 'umitPlugin', 'higwidgets'], 349 349 data_files = data_files, 350 350 cmdclass = {"install":umit_install, -
branch/InterfaceEditor/share/locale/pt_PT/pt_PT.po
r3971 r4011 1882 1882 #: umitGUI/Wizard.py:373 1883 1883 msgid "Please, enter the profile name, and optionally, enter a hint, description and annotation for this new profile" 1884 msgstr "Por favor indique o nome do perfil, op tcionalmente uma dica, descrição e anotação para o novo perfil "1884 msgstr "Por favor indique o nome do perfil, opcionalmente uma dica, descrição e anotação para o novo perfil " 1885 1885 1886 1886 #: umitGUI/Wizard.py:417 -
branch/InterfaceEditor/umitCore/BugRegister.py
r3971 r4011 45 45 self.reporter = "user" 46 46 self.keywords = "user crash" 47 self.milestore = "Umit 0.9.5"47 self.milestore = "Umit 1.0beta1" 48 48 self.version = "current svn" 49 49 self.assigned_to = "boltrix" … … 75 75 return None 76 76 77 data = urllib.urlencode({" summary":self.summary,77 data = urllib.urlencode({"field_summary":self.summary, 78 78 "__FORM_TOKEN":trac_form, 79 " type":self.type,80 " description":self.details,81 " milestone":self.milestore,82 " component":self.component,83 " version":self.version,84 " keywords":self.keywords,85 "owner":self.assigned_to,79 "field_type":self.type, 80 "field_description":self.details, 81 "field_milestone":self.milestore, 82 "field_component":self.component, 83 "field_version":self.version, 84 "field_keywords":self.keywords, 85 #"owner":self.assigned_to, 86 86 "cc":self.cc, 87 " reporter":self.reporter,88 "attachment":self.input_file,89 " status":"new",87 "author":self.reporter, 88 #"attachment":self.input_file, 89 "field_status":"new", 90 90 "action":"create", 91 91 "submit":self.submit}) -
branch/InterfaceEditor/umitCore/Version.py
r3971 r4011 1 VERSION = "1.0 A"1 VERSION = "1.0beta1" -
branch/InterfaceEditor/umitCore/__init__.py
r3971 r4011 22 22 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 23 23 24 __version__ = "1.0 A-svn"24 __version__ = "1.0beta1" -
branch/InterfaceEditor/umitGUI/BugReport.py
r3971 r4011 60 60 # Obtained at bug tracker page source code 61 61 62 self.category_list.append(["Umit 0.9.5",63 "Umit 0.9.5"])62 self.category_list.append(["Umit 1.0beta1", 63 "Umit 1.0beta1"]) 64 64 self.category_list.append(["umitCore","umitCore"]) 65 65 self.category_list.append(["umitGUI","umitGUI"]) … … 69 69 self.category_list.append(["InterfaceEditor", "InterfaceEditor"]) 70 70 self.category_list.append(["website","website"]) 71 self.category_list.append(["Umit GNU/Linux 0.1 ALPHA 1",72 "Umit GNU/Linux 0.1 ALPHA 1"])73 71 74 72 def _create_widgets(self): -
branch/InterfaceEditor/umitGUI/__init__.py
r3971 r4011 21 21 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 22 22 23 __version__ = "1.0 A-svn"23 __version__ = "1.0beta1"
