Changeset 1479

Show
Ignore:
Timestamp:
07/14/08 10:33:31 (6 months ago)
Author:
astormont
Message:

Updated version number in glade

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • wine-doors/trunk/repos/regen-packlist.py

    r1402 r1479  
    2020    repos = [] 
    2121    for item in os.listdir( "." ): 
    22         if item.endswith( ".repo" )
     22        if item.endswith( ".repo" ) and os.path.isdir( item )
    2323            repos.append( item ) 
     24 
     25# Full uri to packs 
     26packs = [] 
     27# Warning counter 
     28warnings = 0 
    2429 
    2530# Process list of repos 
     
    2934 
    3035    # Get list of packs 
    31     packs = [] 
    3236    for item in os.listdir( os.getcwd() + "/" + repo ): 
    33         if not item.startswith(".") and not item.endswith(".wdi") and not item.endswith(".xml") and not item.endswith(".xml~"): 
    34             packs.append( item ) 
     37        if os.path.isdir( os.getcwd() + "/" + repo + "/" + item ) and not item.startswith("."):  
     38            packs.append( os.getcwd() + "/" + repo + "/" + item ) 
    3539 
    3640    # Process list of packs 
     
    4246        if pack.find("-") == -1: 
    4347            print " *** Warning: Pack dir name for \"" + pack + "\" should be <shortname>-<major_version> *** " 
     48            warnings = warnings + 1 
    4449 
    45         pack_dom = parse( os.getcwd() + "/" + repo + "/" + pack + "/pack.xml" ) 
    46         pack_info = {} 
     50        try: 
     51            pack_dom = parse( pack + "/pack.xml" ) 
     52            pack_info = {} 
     53        except: 
     54            print " *** Warning: No pack file in pack \"" + pack + "\" *** " 
     55            warnings = warnings + 1 
     56            continue 
    4757 
    4858        if pack_dom.getElementsByTagName("name"): 
     
    5060        else: 
    5161            print " *** Warning: Package \"" + pack + "\" is missing \"name\" *** " 
     62            warnings = warnings + 1 
    5263 
    5364        if pack_dom.getElementsByTagName("shortname"): 
     
    5566        else: 
    5667            print " *** Warning: Package \"" + pack + "\" is missing \"shortname\" *** " 
     68            warnings = warnings + 1 
    5769 
    5870        if pack_dom.getElementsByTagName("vendor"): 
     
    6173        else: 
    6274            print " *** Warning: Package \"" + pack + "\" is missing \"vendor\" *** " 
     75            warnings = warnings + 1 
    6376 
    6477        if pack_dom.getElementsByTagName("homepage"): 
     
    6780            else: 
    6881                print " *** Warning: Package \"" + pack + "\" has empty tag \"homepage\" *** " 
     82                warnings = warnings + 1 
    6983        else: 
    7084            print " *** Warning: Package \"" + pack + "\" is missing \"homepage\" *** " 
     85            warnings = warnings + 1 
    7186 
    7287        if pack_dom.getElementsByTagName("category"): 
     
    7489        else: 
    7590            print " *** Warning: Package \"" + pack + "\" is missing \"category\" *** " 
     91            warnings = warnings + 1 
    7692 
    7793        if pack_dom.getElementsByTagName("description"): 
     
    7995        else: 
    8096            print " *** Warning: Package \"" + pack + "\" is missing \"description\" *** " 
     97            warnings = warnings + 1 
    8198 
    8299        if pack_dom.getElementsByTagName("major_version"): 
     
    84101        else: 
    85102            print " *** Warning: Package \"" + pack + "\" is missing \"major_version\" *** " 
     103            warnings = warnings + 1 
    86104 
    87105        if pack_dom.getElementsByTagName("ms-license"): 
     
    89107        else: 
    90108            print " *** Warning: Package \"" + pack + "\" is missing \"ms-license\" *** " 
     109            warnings = warnings + 1 
    91110 
    92111        if pack_dom.getElementsByTagName("installer_args"): 
    93112            print " *** Warning: Package \"" + pack + "\" contains depreciated tag \"installer_args **** " 
     113            warnings = warnings + 1 
     114 
     115# Bail if any warnings (we must be as strict as possible) 
     116if ( warnings ): 
     117    print "There are \"" + str(warnings) + "\" warnings, packlists have not been changed." 
     118    sys.exit(1) 
     119 
     120# Continue and rewrite packlists 
     121else: 
     122    print "All seems good... regenerating packlists." 
     123 
     124    domImpl = getDOMImplementation() 
     125    newDoc = domImpl.createDocument(None, "PackList", None) 
     126    rootElement = newDoc.documentElement 
     127 
     128    for pack in packs: 
     129        pass 
     130 
     131 
  • wine-doors/trunk/src/winedoors.glade

    r1460 r1479  
    7474            <property name="row_spacing">10</property> 
    7575            <child> 
    76               <widget class="GtkEntry" id="en_name"> 
    77                 <property name="visible">True</property> 
    78                 <property name="can_focus">True</property> 
    79                 <property name="invisible_char">•</property> 
    80               </widget> 
    81               <packing> 
    82                 <property name="left_attach">1</property> 
    83                 <property name="right_attach">2</property> 
     76              <widget class="GtkLabel" id="lb_company"> 
     77                <property name="visible">True</property> 
     78                <property name="xalign">0</property> 
     79                <property name="xpad">12</property> 
     80                <property name="label" translatable="yes">Company name</property> 
     81                <property name="justify">GTK_JUSTIFY_RIGHT</property> 
     82                <property name="mnemonic_widget">en_company</property> 
     83              </widget> 
     84              <packing> 
     85                <property name="top_attach">2</property> 
     86                <property name="bottom_attach">3</property> 
     87                <property name="x_options">GTK_FILL</property> 
     88                <property name="y_options"></property> 
     89              </packing> 
     90            </child> 
     91            <child> 
     92              <widget class="GtkLabel" id="lb_name"> 
     93                <property name="visible">True</property> 
     94                <property name="xalign">0</property> 
     95                <property name="xpad">12</property> 
     96                <property name="label" translatable="yes">Your name</property> 
     97                <property name="mnemonic_widget">en_name</property> 
     98                <property name="single_line_mode">True</property> 
     99              </widget> 
     100              <packing> 
    84101                <property name="top_attach">1</property> 
    85102                <property name="bottom_attach">2</property> 
    86                 <property name="y_options"></property> 
    87               </packing> 
    88             </child> 
    89             <child> 
    90               <widget class="GtkEntry" id="en_company"> 
    91                 <property name="visible">True</property> 
    92                 <property name="can_focus">True</property> 
    93                 <property name="invisible_char">•</property> 
    94               </widget> 
    95               <packing> 
    96                 <property name="left_attach">1</property> 
    97                 <property name="right_attach">2</property> 
    98                 <property name="top_attach">2</property> 
    99                 <property name="bottom_attach">3</property> 
    100                 <property name="y_options"></property> 
    101               </packing> 
    102             </child> 
    103             <child> 
    104               <widget class="GtkLabel" id="lb_details"> 
    105                 <property name="visible">True</property> 
    106                 <property name="xalign">0</property> 
    107                 <property name="label" translatable="yes">&lt;b&gt;Please enter your details&lt;/b&gt;</property> 
    108                 <property name="use_markup">True</property> 
    109               </widget> 
    110               <packing> 
    111                 <property name="right_attach">2</property> 
    112                 <property name="x_options"></property> 
     103                <property name="x_options">GTK_FILL</property> 
    113104                <property name="y_options"></property> 
    114105              </packing> 
     
    133124            </child> 
    134125            <child> 
    135               <widget class="GtkLabel" id="lb_name"> 
     126              <widget class="GtkLabel" id="lb_details"> 
    136127                <property name="visible">True</property> 
    137128                <property name="xalign">0</property> 
    138                 <property name="xpad">12</property> 
    139                 <property name="label" translatable="yes">Your name</property> 
    140                 <property name="mnemonic_widget">en_name</property> 
    141                 <property name="single_line_mode">True</property> 
    142               </widget> 
    143               <packing> 
     129                <property name="label" translatable="yes">&lt;b&gt;Please enter your details&lt;/b&gt;</property> 
     130                <property name="use_markup">True</property> 
     131              </widget> 
     132              <packing> 
     133                <property name="right_attach">2</property> 
     134                <property name="x_options"></property> 
     135                <property name="y_options"></property> 
     136              </packing> 
     137            </child> 
     138            <child> 
     139              <widget class="GtkEntry" id="en_company"> 
     140                <property name="visible">True</property> 
     141                <property name="can_focus">True</property> 
     142                <property name="invisible_char">•</property> 
     143              </widget> 
     144              <packing> 
     145                <property name="left_attach">1</property> 
     146                <property name="right_attach">2</property> 
     147                <property name="top_attach">2</property> 
     148                <property name="bottom_attach">3</property> 
     149                <property name="y_options"></property> 
     150              </packing> 
     151            </child> 
     152            <child> 
     153              <widget class="GtkEntry" id="en_name"> 
     154                <property name="visible">True</property> 
     155                <property name="can_focus">True</property> 
     156                <property name="invisible_char">•</property> 
     157              </widget> 
     158              <packing> 
     159                <property name="left_attach">1</property> 
     160                <property name="right_attach">2</property> 
    144161                <property name="top_attach">1</property> 
    145162                <property name="bottom_attach">2</property> 
    146                 <property name="x_options">GTK_FILL</property> 
    147                 <property name="y_options"></property> 
    148               </packing> 
    149             </child> 
    150             <child> 
    151               <widget class="GtkLabel" id="lb_company"> 
    152                 <property name="visible">True</property> 
    153                 <property name="xalign">0</property> 
    154                 <property name="xpad">12</property> 
    155                 <property name="label" translatable="yes">Company name</property> 
    156                 <property name="justify">GTK_JUSTIFY_RIGHT</property> 
    157                 <property name="mnemonic_widget">en_company</property> 
    158               </widget> 
    159               <packing> 
    160                 <property name="top_attach">2</property> 
    161                 <property name="bottom_attach">3</property> 
    162                 <property name="x_options">GTK_FILL</property> 
    163163                <property name="y_options"></property> 
    164164              </packing> 
     
    306306            <property name="xalign">0.49000000953674316</property> 
    307307            <property name="yalign">0</property> 
    308             <property name="label" translatable="yes">&lt;b&gt;&lt;big&gt;Wine Doors version 0.1.2&lt;/big&gt;&lt;/b&gt; 
     308            <property name="label" translatable="yes">&lt;b&gt;&lt;big&gt;Wine Doors version 0.1.3&lt;/big&gt;&lt;/b&gt; 
    309309Wine Doors provides easy installation &amp;amp; uninstallation of windows applications for the Gnome Desktop 
    310310 
     
    425425                <property name="row_spacing">10</property> 
    426426                <child> 
    427                   <widget class="GtkEntry" id="en_company"> 
    428                     <property name="visible">True</property> 
    429                     <property name="can_focus">True</property> 
    430                     <property name="invisible_char">•</property> 
    431                   </widget> 
    432                   <packing> 
    433                     <property name="left_attach">1</property> 
    434                     <property name="right_attach">2</property> 
     427                  <widget class="GtkLabel" id="label67"> 
     428                    <property name="visible">True</property> 
     429                    <property name="xalign">0</property> 
     430                    <property name="xpad">2</property> 
     431                    <property name="label" translatable="yes">Company name</property> 
     432                    <property name="use_markup">True</property> 
     433                    <property name="justify">GTK_JUSTIFY_RIGHT</property> 
     434                  </widget> 
     435                  <packing> 
    435436                    <property name="top_attach">1</property> 
    436437                    <property name="bottom_attach">2</property> 
    437                     <property name="y_options"></property> 
    438                   </packing> 
    439                 </child> 
    440                 <child> 
    441                   <widget class="GtkEntry" id="en_name"> 
    442                     <property name="visible">True</property> 
    443                     <property name="can_focus">True</property> 
    444                     <property name="invisible_char">•</property> 
    445                   </widget> 
    446                   <packing> 
    447                     <property name="left_attach">1</property> 
    448                     <property name="right_attach">2</property> 
    449                     <property name="y_options"></property> 
    450                   </packing> 
    451                 </child> 
    452                 <child> 
    453                   <widget class="GtkCheckButton" id="ck_licensed"> 
    454                     <property name="visible">True</property> 
    455                     <property name="can_focus">True</property> 
    456                     <property name="label" translatable="yes">I have a valid Microsoft Windows (tm) license</property> 
    457                     <property name="use_underline">True</property> 
    458                     <property name="response_id">0</property> 
    459                     <property name="draw_indicator">True</property> 
    460                   </widget> 
    461                   <packing> 
    462                     <property name="right_attach">2</property> 
    463                     <property name="top_attach">2</property> 
    464                     <property name="bottom_attach">3</property> 
    465                     <property name="x_options">GTK_FILL</property> 
    466                     <property name="y_options"></property> 
    467                   </packing> 
    468                 </child> 
    469                 <child> 
    470                   <widget class="GtkCheckButton" id="ck_showwinemenu"> 
    471                     <property name="visible">True</property> 
    472                     <property name="can_focus">True</property> 
    473                     <property name="label" translatable="yes">Show Wine Programs menus</property> 
    474                     <property name="use_underline">True</property> 
    475                     <property name="response_id">0</property> 
    476                     <property name="draw_indicator">True</property> 
    477                   </widget> 
    478                   <packing> 
    479                     <property name="right_attach">2</property> 
    480                     <property name="top_attach">3</property> 
    481                     <property name="bottom_attach">4</property> 
    482438                    <property name="x_options">GTK_FILL</property> 
    483439                    <property name="y_options"></property> 
     
    500456                </child> 
    501457                <child> 
    502                   <widget class="GtkLabel" id="label67"> 
    503                     <property name="visible">True</property> 
    504                     <property name="xalign">0</property> 
    505                     <property name="xpad">2</property> 
    506                     <property name="label" translatable="yes">Company name</property> 
    507                     <property name="use_markup">True</property> 
    508                     <property name="justify">GTK_JUSTIFY_RIGHT</property> 
    509                   </widget> 
    510                   <packing> 
     458                  <widget class="GtkCheckButton" id="ck_showwinemenu"> 
     459                    <property name="visible">True</property> 
     460                    <property name="can_focus">True</property> 
     461                    <property name="label" translatable="yes">Show Wine Programs menus</property> 
     462                    <property name="use_underline">True</property> 
     463                    <property name="response_id">0</property> 
     464                    <property name="draw_indicator">True</property> 
     465                  </widget> 
     466                  <packing> 
     467                    <property name="right_attach">2</property> 
     468                    <property name="top_attach">3</property> 
     469                    <property name="bottom_attach">4</property> 
     470                    <property name="x_options">GTK_FILL</property> 
     471                    <property name="y_options"></property> 
     472                  </packing> 
     473                </child> 
     474                <child> 
     475                  <widget class="GtkCheckButton" id="ck_licensed1"> 
     476                    <property name="visible">True</property> 
     477                    <property name="can_focus">True</property> 
     478                    <property name="label" translatable="yes">I have a valid Microsoft Windows (tm) license</property> 
     479                    <property name="use_underline">True</property> 
     480                    <property name="response_id">0</property> 
     481                    <property name="draw_indicator">True</property> 
     482                  </widget> 
     483                  <packing> 
     484                    <property name="right_attach">2</property> 
     485                    <property name="top_attach">2</property> 
     486                    <property name="bottom_attach">3</property> 
     487                    <property name="x_options">GTK_FILL</property> 
     488                    <property name="y_options"></property> 
     489                  </packing> 
     490                </child> 
     491                <child> 
     492                  <widget class="GtkEntry" id="en_name1"> 
     493                    <property name="visible">True</property> 
     494                    <property name="can_focus">True</property> 
     495                    <property name="invisible_char">•</property> 
     496                  </widget> 
     497                  <packing> 
     498                    <property name="left_attach">1</property> 
     499                    <property name="right_attach">2</property> 
     500                    <property name="y_options"></property> 
     501                  </packing> 
     502                </child> 
     503                <child> 
     504                  <widget class="GtkEntry" id="en_company1"> 
     505                    <property name="visible">True</property> 
     506                    <property name="can_focus">True</property> 
     507                    <property name="invisible_char">•</property> 
     508                  </widget> 
     509                  <packing> 
     510                    <property name="left_attach">1</property> 
     511                    <property name="right_attach">2</property> 
    511512                    <property name="top_attach">1</property> 
    512513                    <property name="bottom_attach">2</property> 
    513                     <property name="x_options">GTK_FILL</property> 
    514514                    <property name="y_options"></property> 
    515515                  </packing> 
     
    536536                <property name="row_spacing">10</property> 
    537537                <child> 
    538                   <widget class="GtkFileChooserButton" id="file_wineroot"> 
    539                     <property name="visible">True</property> 
    540                     <property name="show_hidden">True</property> 
    541                     <property name="action">GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER</property> 
    542                     <property name="title" translatable="yes">Select wine root</property> 
    543                   </widget> 
    544                   <packing> 
    545                     <property name="left_attach">1</property> 
    546                     <property name="right_attach">2</property> 
     538                  <widget class="GtkLabel" id="label65"> 
     539                    <property name="visible">True</property> 
     540                    <property name="xalign">0</property> 
     541                    <property name="label" translatable="yes">Wine root folder</property> 
     542                    <property name="use_markup">True</property> 
     543                  </widget> 
     544                  <packing> 
     545                    <property name="x_options">GTK_FILL</property> 
    547546                    <property name="y_options"></property> 
    548                   </packing> 
    549                 </child> 
    550                 <child> 
    551                   <widget class="GtkCheckButton" id="ck_updateonstart"> 
     547                    <property name="x_padding">2</property> 
     548                  </packing> 
     549                </child> 
     550                <child> 
     551                  <widget class="GtkCheckButton" id="installedfromreg"> 
    552552                    <property name="visible">True</property> 
    553553                    <property name="can_focus">True</property> 
    554                     <property name="label" translatable="yes">Update package list on startup</property> 
     554                    <property name="label" translatable="yes">Display applications installed in the WINE registry</property> 
    555555                    <property name="use_underline">True</property> 
    556556                    <property name="response_id">0</property> 
     
    559559                  <packing> 
    560560                    <property name="right_attach">2</property> 
    561                     <property name="top_attach">1</property> 
    562                     <property name="bottom_attach">2</property> 
     561                    <property name="top_attach">4</property> 
     562                    <property name="bottom_attach">11</property> 
     563                    <property name="x_options">GTK_FILL</property> 
     564                    <property name="y_options"></property> 
     565                  </packing> 
     566                </child> 
     567                <child> 
     568                  <widget class="GtkCheckButton" id="ck_crossover"> 
     569                    <property name="visible">True</property> 
     570                    <property name="can_focus">True</property> 
     571                    <property name="label" translatable="yes">Display applications which require crossover</property> 
     572                    <property name="use_underline">True</property> 
     573                    <property name="response_id">0</property> 
     574                    <property name="draw_indicator">True</property> 
     575                  </widget> 
     576                  <packing> 
     577                    <property name="right_attach">2</property> 
     578                    <property name="top_attach">4</property> 
     579                    <property name="bottom_attach">5</property> 
     580                    <property name="x_options">GTK_FILL</property> 
     581                    <property name="y_options"></property> 
     582                  </packing> 
     583                </child> 
     584                <child> 
     585                  <widget class="GtkCheckButton" id="ck_cedega"> 
     586                    <property name="visible">True</property> 
     587                    <property name="can_focus">True</property> 
     588                    <property name="label" translatable="yes">Display applications which only work with cedega</property> 
     589                    <property name="use_underline">True</property> 
     590                    <property name="response_id">0</property> 
     591                    <property name="draw_indicator">True</property> 
     592                  </widget> 
     593                  <packing> 
     594                    <property name="right_attach">2</property> 
     595                    <property name="top_attach">3</property> 
     596                    <property name="bottom_attach">4</property> 
    563597                    <property name="x_options">GTK_FILL</property> 
    564598                    <property name="y_options"></property> 
     
    584618                </child> 
    585619                <child> 
    586                   <widget class="GtkCheckButton" id="ck_cedega"> 
     620                  <widget class="GtkCheckButton" id="ck_updateonstart"> 
    587621                    <property name="visible">True</property> 
    588622                    <property name="can_focus">True</property> 
    589                     <property name="label" translatable="yes">Display applications which only work with cedega</property> 
     623                    <property name="label" translatable="yes">Update package list on startup</property> 
    590624                    <property name="use_underline">True</property> 
    591625                    <property name="response_id">0</property> 
     
    594628                  <packing> 
    595629                    <property name="right_attach">2</property> 
    596                     <property name="top_attach">3</property> 
    597                     <property name="bottom_attach">4</property> 
     630                    <property name="top_attach">1</property> 
     631                    <property name="bottom_attach">2</property> 
    598632                    <property name="x_options">GTK_FILL</property> 
    599633                    <property name="y_options"></property> 
     
    601635                </child> 
    602636                <child> 
    603                   <widget class="GtkCheckButton" id="ck_crossover"> 
    604                     <property name="visible">True</property> 
    605                     <property name="can_focus">True</property> 
    606                     <property name="label" translatable="yes">Display applications which require crossover</property> 
    607                     <property name="use_underline">True</property> 
    608                     <property name="response_id">0</property> 
    609                     <property name="draw_indicator">True</property> 
    610                   </widget> 
    611                   <packing> 
     637                  <widget class="GtkFileChooserButton" id="file_wineroot"> 
     638                    <property name="visible">True</property> 
     639                    <property name="show_hidden">True</property> 
     640                    <property name="action">GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER</property> 
     641                    <property name="title" translatable="yes">Select wine root</property> 
     642                  </widget> 
     643                  <packing> 
     644                    <property name="left_attach">1</property> 
    612645                    <property name="right_attach">2</property> 
    613                     <property name="top_attach">4</property> 
    614                     <property name="bottom_attach">5</property> 
    615                     <property name="x_options">GTK_FILL</property> 
    616646                    <property name="y_options"></property> 
    617                   </packing> 
    618                 </child> 
    619                 <child> 
    620                   <widget class="GtkCheckButton" id="installedfromreg"> 
    621                     <property name="visible">True</property> 
    622                     <property name="can_focus">True</property> 
    623                     <property name="label" translatable="yes">Display applications installed in the WINE registry</property> 
    624                     <property name="use_underline">True</property> 
    625                     <property name="response_id">0</property> 
    626                     <property name="draw_indicator">True</property> 
    627                   </widget> 
    628                   <packing> 
    629                     <property name="right_attach">2</property> 
    630                     <property name="top_attach">4</property> 
    631                     <property name="bottom_attach">11</property> 
    632                     <property name="x_options">GTK_FILL</property> 
    633                     <property name="y_options"></property> 
    634                   </packing> 
    635                 </child> 
    636                 <child> 
    637                   <widget class="GtkLabel" id="label65"> 
    638                     <property name="visible">True</property> 
    639                     <property name="xalign">0</property> 
    640                     <property name="label" translatable="yes">Wine root folder</property> 
    641                     <property name="use_markup">True</property> 
    642                   </widget> 
    643                   <packing> 
    644                     <property name="x_options">GTK_FILL</property> 
    645                     <property name="y_options"></property> 
    646                     <property name="x_padding">2</property> 
    647647                  </packing> 
    648648                </child> 
     
    810810                    <property name="row_spacing">10</property> 
    811811                    <child> 
     812                      <widget class="GtkLabel" id="label198"> 
     813                        <property name="visible">True</property> 
     814                        <property name="xalign">0</property> 
     815                        <property name="xpad">12</property> 
     816                        <property name="label" translatable="yes">Password</property> 
     817                        <property name="use_markup">True</property> 
     818                      </widget> 
     819                      <packing> 
     820                        <property name="top_attach">3</property> 
     821                        <property name="bottom_attach">4</property> 
     822                        <property name="x_options">GTK_FILL</property> 
     823                        <property name="y_options"></property> 
     824                      </packing> 
     825                    </child> 
     826                    <child> 
     827                      <widget class="GtkLabel" id="label197"> 
     828                        <property name="visible">True</property> 
     829                        <property name="xalign">0</property> 
     830                        <property name="xpad">12</property> 
     831                        <property name="label" translatable="yes">Username</property> 
     832                        <property name="use_markup">True</property> 
     833                      </widget> 
     834                      <packing> 
     835                        <property name="top_attach">2</property> 
     836                        <property name="bottom_attach">3</property> 
     837                        <property name="x_options">GTK_FILL</property> 
     838                        <property name="y_options"></property> 
     839                      </packing> 
     840                    </child> 
     841                    <child> 
     842                      <widget class="GtkLabel" id="label72"> 
     843                        <property name="visible">True</property> 
     844                        <property name="xalign">0</property> 
     845                        <property name="xpad">12</property> 
     846                        <property name="label" translatable="yes">Repository base URI</property> 
     847                        <property name="use_markup">True</property> 
     848                      </widget> 
     849                      <packing> 
     850                        <property name="top_attach">1</property> 
     851                        <property name="bottom_attach">2</property> 
     852                        <property name="x_options">GTK_FILL</property> 
     853                        <property name="y_options"></property> 
     854                      </packing> 
     855                    </child> 
     856                    <child> 
     857                      <widget class="GtkLabel" id="label71"> 
     858                        <property name="visible">True</property> 
     859                        <property name="xalign">0</property> 
     860                        <property name="xpad">12</property> 
     861                        <property name="label" translatable="yes">Repository Name</property> 
     862                        <property name="use_markup">True</property> 
     863                      </widget> 
     864                      <packing> 
     865                        <property name="x_options">GTK_FILL</property> 
     866                        <property name="y_options"></property> 
     867                      </packing> 
     868                    </child> 
     869                    <child> 
     870                      <widget class="GtkEntry" id="en_repo_name"> 
     871                        <property name="visible">True</property> 
     872                        <property name="can_focus">True</property> 
     873                        <property name="invisible_char">•</property> 
     874                      </widget> 
     875                      <packing> 
     876                        <property name="left_attach">1</property> 
     877                        <property name="right_attach">2</property> 
     878                        <property name="y_options"></property> 
     879                      </packing> 
     880                    </child> 
     881                    <child> 
     882                      <widget class="GtkEntry" id="en_repo_uri"> 
     883                        <property name="visible">True</property> 
     884                        <property name="can_focus">True</property> 
     885                        <property name="invisible_char">•</property> 
     886                      </widget> 
     887                      <packing> 
     888                        <property name="left_attach">1</property> 
     889                        <property name="right_attach">2</property> 
     890                        <property name="top_attach">1</property> 
     891                        <property name="bottom_attach">2</property> 
     892                        <property name="y_options"></property> 
     893                      </packing> 
     894                    </child> 
     895                    <child> 
     896                      <widget class="GtkEntry" id="entry21"> 
     897                        <property name="visible">True</property> 
     898                        <property name="can_focus">True</property> 
     899                        <property name="invisible_char">•</property> 
     900                      </widget> 
     901                      <packing> 
     902                        <property name="left_attach">1</property> 
     903                        <property name="right_attach">2</property> 
     904                        <property name="top_attach">2</property> 
     905                        <property name="bottom_attach">3</property> 
     906                        <property name="y_options"></property> 
     907                      </packing> 
     908                    </child> 
     909                    <child> 
    812910                      <widget class="GtkEntry" id="entry22"> 
    813911                        <property name="visible">True</property> 
     
    823921                      </packing> 
    824922                    </child> 
    825                     <child> 
    826                       <widget class="GtkEntry" id="entry21"> 
    827                         <property name="visible">True</property> 
    828                         <property name="can_focus">True</property> 
    829                         <property name="invisible_char">•</property> 
    830                       </widget> 
    831                       <packing> 
    832                         <property name="left_attach">1</property> 
    833                         <property name="right_attach">2</property> 
    834                         <property name="top_attach">2</property> 
    835                         <property name="bottom_attach">3</property> 
    836                         <property name="y_options"></property> 
    837                       </packing> 
    838                     </child> 
    839                     <child> 
    840                       <widget class="GtkEntry" id="en_repo_uri"> 
    841                         <property name="visible">True</property> 
    842                         <property name="can_focus">True</property> 
    843                         <property name="invisible_char">•</property> 
    844                       </widget> 
    845                       <packing> 
    846                         <property name="left_attach">1</property> 
    847                         <property name="right_attach">2</property> 
    848                         <property name="top_attach">1</property> 
    849                         <property name="bottom_attach">2</property> 
    850                         <property name="y_options"></property> 
    851                       </packing> 
    852                     </child> 
    853                     <child> 
    854                       <widget class="GtkEntry" id="en_repo_name"> 
    855                         <property name="visible">True</property> 
    856                         <property name="can_focus">True</property> 
    857                         <property name="invisible_char">•</property> 
    858                       </widget> 
    859                       <packing> 
    860                         <property name="left_attach">1</property> 
    861                         <property name="right_attach">2</property> 
    862                         <property name="y_options"></property> 
    863                       </packing> 
    864                     </child> 
    865                     <child> 
    866                       <widget class="GtkLabel" id="label71"> 
    867                         <property name="visible">True</property> 
    868                         <property name="xalign">0</property> 
    869                         <property name="xpad">12</property> 
    870                         <property name="label" translatable="yes">Repository Name</property> 
    871                         <property name="use_markup">True</property> 
    872                       </widget> 
    873                       <packing> 
    874                         <property name="x_options">GTK_FILL</property> 
    875               &