commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnue/forms/samples intro/intro.gfd zipcode/zipc...


From: Jason Cater
Subject: gnue/forms/samples intro/intro.gfd zipcode/zipc...
Date: Tue, 26 Nov 2002 19:55:36 -0500

CVSROOT:        /home/cvs
Module name:    gnue
Changes by:     Jason Cater <address@hidden>    02/11/26 19:55:35

Modified files:
        forms/samples/intro: intro.gfd 
        forms/samples/zipcode: zipcode.gfd 

Log message:
        temporarily reversed samples, to do a massive update

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/forms/samples/intro/intro.gfd.diff?cvsroot=OldCVS&tr1=1.11&tr2=1.12&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/forms/samples/zipcode/zipcode.gfd.diff?cvsroot=OldCVS&tr1=1.23&tr2=1.24&r1=text&r2=text

Patches:
Index: gnue/forms/samples/intro/intro.gfd
diff -c gnue/forms/samples/intro/intro.gfd:1.11 
gnue/forms/samples/intro/intro.gfd:1.12
*** gnue/forms/samples/intro/intro.gfd:1.11     Tue Nov 26 18:45:20 2002
--- gnue/forms/samples/intro/intro.gfd  Tue Nov 26 19:55:32 2002
***************
*** 17,23 ****
  import string
  
  s = SampleBlock.NameEntry.get()
! try: 
   out = ''
  
   for word in string.splitfields(s,' '):
--- 17,23 ----
  import string
  
  s = SampleBlock.NameEntry.get()
! try:
   out = ''
  
   for word in string.splitfields(s,' '):
***************
*** 107,125 ****
    <page name="Sample">
      <box x="1" y="0" width="38" label="Sample" name="Box_2" height="8"/>
      <label x="3" y="2" width="10" name="Label_5" text="Your Name: "/>
!     <label x="3" y="3" width="20" name="Label_6" text="Your birth year:"/>
      <label x="3" y="5" width="15" name="Label_7" text="Your Code Name:"/>
      <block name="SampleBlock">
        <entry x="14" y="2" name="NameEntry" width="23">
          <trigger type="PRE-FOCUSOUT" name="Trigger_1" src="PigLatin"/>
        </entry>
!       <entry name="YearEntry" x="20" y="3" width="5"/>
!       <button x="28" y="3" trigger="MyFortune" width="9" label="Fortune"
                name="btnClear" height="1"/>
        <entry name="CodeNameEntry" x="3" y="6" width="34"/>
        <entry name="FortuneEntry" x="2" y="8" width="36" height="4"/>
      </block>
    </page>
  </form>
- 
- 
--- 107,123 ----
    <page name="Sample">
      <box x="1" y="0" width="38" label="Sample" name="Box_2" height="8"/>
      <label x="3" y="2" width="10" name="Label_5" text="Your Name: "/>
!     <label x="3" y="3" width="20" name="Label_6" text="Year you were born:"/>
      <label x="3" y="5" width="15" name="Label_7" text="Your Code Name:"/>
      <block name="SampleBlock">
        <entry x="14" y="2" name="NameEntry" width="23">
          <trigger type="PRE-FOCUSOUT" name="Trigger_1" src="PigLatin"/>
        </entry>
!       <entry name="YearEntry" x="22" y="3" width="6"/>
!       <button x="29" y="3" trigger="MyFortune" width="8" label="Fortune"
                name="btnClear" height="1"/>
        <entry name="CodeNameEntry" x="3" y="6" width="34"/>
        <entry name="FortuneEntry" x="2" y="8" width="36" height="4"/>
      </block>
    </page>
  </form>
Index: gnue/forms/samples/zipcode/zipcode.gfd
diff -c gnue/forms/samples/zipcode/zipcode.gfd:1.23 
gnue/forms/samples/zipcode/zipcode.gfd:1.24
*** gnue/forms/samples/zipcode/zipcode.gfd:1.23 Mon Nov 25 23:14:40 2002
--- gnue/forms/samples/zipcode/zipcode.gfd      Tue Nov 26 19:55:35 2002
***************
*** 1,46 ****
  <?xml version="1.0"?>
  
! <!--  GNUe Forms 0.5.0 Migration Tool
!       Saved on: 2002-11-25 22:07:47  -->
  
! <form height="17" title="ZIP Code Maintenance" width="42">
    <options>
!     <option name="version" value="0.0.1"/>
    </options>
!   <datasource name="zips" cache="5" connection="gnue" order_by="state,city"
!               prequery="" table="zipcode"/>
!   <datasource name="validator" connection="gnue" order_by="description"
!               prequery="" table="state"/>
!   <logic>
!     <block name="zip" datasource="zips" rows="15">
!       <field name="city" case="upper" field="city" required="" sloppyQuery="">
          <options>
            <option name="tip" value="Full name of city"/>
          </options>
!       </field>
!       <field name="state" field="state" fk_description="description"
!              fk_key="state" fk_source="validator">
          <options>
            <option name="tip" value="State"/>
          </options>
!       </field>
!       <field name="zip" field="zip" max_length="5" typecast="number">
          <options>
            <option name="tip" value="US Postal Zip Code"/>
          </options>
!       </field>
      </block>
!   </logic>
!   <layout>
!     <page name="Page_1">
!       <label name="Label_1" text="City" x="1" y="1"/>
!       <entry block="zip" field="city" width="15" x="1" y="2"/>
!       <label name="Label_2" text="State" x="17" y="1"/>
!       <entry block="zip" field="state" style="dropdown" width="15" x="17"
!              y="2"/>
!       <label name="Label_3" text="Zip" x="33" y="1"/>
!       <entry block="zip" field="zip" width="5" x="33" y="2"/>
!       <scrollbar height="15" width="1" x="40" y="2"/>
!     </page>
!   </layout>
  </form>
--- 1,41 ----
  <?xml version="1.0"?>
  
! <!--  GNUe Designer (0.1.0)
!       Form saved on: 2001-11-04 22:12:53  -->
  
! <form width="42" title="ZIP Code Maintenance" height="17">
    <options>
!     <option value="0.0.1" name="version"/>
    </options>
!   <datasource prequery="" cache="5" database="gnue" name="zips"
!               order_by="state,city" table="zipcode"/>
!   <datasource prequery="" database="gnue" name="validator"
!               order_by="description" table="state"/>
! 
!   <page name="Page_1">
!     <block name="zip" rows="15" datasource="zips">
!       <label x="1" y="1" name="Label_1" text="City"/>
!       <entry name="city" x="1" y="2" width="15" field="city" case="upper" 
required="">
          <options>
            <option name="tip" value="Full name of city"/>
          </options>
!       </entry>
!       <label x="17" y="1" name="Label_2" text="State"/>
!       <entry x="17" y="2" field="state" style="dropdown" name="state" 
width="15"
!               fk_source="validator" fk_key="state"
!              fk_description="description"> 
          <options>
            <option name="tip" value="State"/>
          </options>
!       </entry>
!       <label x="33" y="1" name="Label_3" text="Zip"/>
!       <entry x="33" y="2" field="zip" name="zip" max_length="5" width="5"
!              typecast="number">
          <options>
            <option name="tip" value="US Postal Zip Code"/>
          </options>
!       </entry>
!       <scrollbar x="40" y="2" width="1" height="15"/>
      </block>
!   </page>
  </form>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]