Show
Ignore:
Timestamp:
02/14/09 16:25:36 (4 years ago)
Author:
luis
Message:

Merged revisions 4000,4006-4007,4010 via svnmerge from
http://svn.umitproject.org/svnroot/umit/trunk

........

r4000 | luis | 2009-02-14 12:04:03 +0000 (Sáb, 14 Fev 2009) | 1 line


Little fix in pt_PT translation

........

r4006 | luis | 2009-02-14 16:01:11 +0000 (Sáb, 14 Fev 2009) | 1 line


rename version to 1.0beta1 and fixed crash report and bug report - rename some fields changed after trac migration (from 0.10.4 to 0.11 )

........

r4007 | gpolo | 2009-02-14 16:03:46 +0000 (Sáb, 14 Fev 2009) | 1 line


Added umitPlugin in the packages list

........

r4010 | luis | 2009-02-14 16:22:57 +0000 (Sáb, 14 Fev 2009) | 1 line


Removing not necessary files

........

Location:
branch/InterfaceEditor
Files:
9 modified

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  
    3232""" 
    3333 
    34 __version__ = "1.0A-svn" 
     34__version__ = "1.0beta1" 
    3535 
    3636# added to RadialNet compatibility 
  • branch/InterfaceEditor/install_scripts/unix/setup.py

    r3971 r4011  
    346346      scripts = ['umit', 'umit-scheduler'], 
    347347      packages = ['', 'umitCore', 'umitDB', 'umitGUI', 'umitInventory', 
    348                   'higwidgets'], 
     348                  'umitPlugin', 'higwidgets'], 
    349349      data_files = data_files, 
    350350      cmdclass = {"install":umit_install, 
  • branch/InterfaceEditor/share/locale/pt_PT/pt_PT.po

    r3971 r4011  
    18821882#: umitGUI/Wizard.py:373 
    18831883msgid "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, optcionalmente uma dica, descrição e anotação para o novo perfil " 
     1884msgstr "Por favor indique o nome do perfil, opcionalmente uma dica, descrição e anotação para o novo perfil " 
    18851885 
    18861886#: umitGUI/Wizard.py:417 
  • branch/InterfaceEditor/umitCore/BugRegister.py

    r3971 r4011  
    4545        self.reporter = "user" 
    4646        self.keywords = "user crash" 
    47         self.milestore = "Umit 0.9.5" 
     47        self.milestore = "Umit 1.0beta1" 
    4848        self.version = "current svn" 
    4949        self.assigned_to = "boltrix" 
     
    7575            return None  
    7676 
    77         data = urllib.urlencode({"summary":self.summary, 
     77        data = urllib.urlencode({"field_summary":self.summary, 
    7878                                 "__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, 
    8686                                 "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", 
    9090                                 "action":"create", 
    9191                                 "submit":self.submit}) 
  • branch/InterfaceEditor/umitCore/Version.py

    r3971 r4011  
    1 VERSION = "1.0A" 
     1VERSION = "1.0beta1" 
  • branch/InterfaceEditor/umitCore/__init__.py

    r3971 r4011  
    2222# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 
    2323 
    24 __version__ = "1.0A-svn" 
     24__version__ = "1.0beta1" 
  • branch/InterfaceEditor/umitGUI/BugReport.py

    r3971 r4011  
    6060        # Obtained at bug tracker page source code 
    6161         
    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"]) 
    6464        self.category_list.append(["umitCore","umitCore"]) 
    6565        self.category_list.append(["umitGUI","umitGUI"]) 
     
    6969        self.category_list.append(["InterfaceEditor", "InterfaceEditor"]) 
    7070        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"]) 
    7371         
    7472    def _create_widgets(self): 
  • branch/InterfaceEditor/umitGUI/__init__.py

    r3971 r4011  
    2121# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 
    2222 
    23 __version__ = "1.0A-svn" 
     23__version__ = "1.0beta1"