Subversion Repositories wimsdev

Compare Revisions

Ignore whitespace Rev 9156 → Rev 9157

/trunk/wims/public_html/modules/moduletest/README
1,2 → 1,8
add files in the directory src for testing some execution commands
 
then, run ./wimstest/test.sh
 
You will find CHANGE and the name of the file to be compared.
 
You can see the diffs with this command : (change "FILE" by the faile to be compared)
opendiff wimstest/dirres/FILE wimstest/tmp/FILE
/trunk/wims/public_html/modules/moduletest/src/formradio
1,59 → 1,95
<ul>
!set wims_html_mode=li
!formradio tata list 1,2,3
</ul>
!! FORM MENUS testing (formradio, formcheckbox, formbar, ...)
 
!formradio tutu list 1,2,3
!set wims_ref_class=toto
!set wims_html_mode=li
<ul>
!formradio toto list 1,2,3
</ul>
!!################
<h1>FORMRADIO</h1>
!!################
 
!set wims_html_mode=li
<ul>
!formradio toto list 1,2,3
</ul>
!formradio tata list 1,2,3
!! Formradio with HTML Mode
<ul>
!set wims_html_mode=li
!formradio radioA list 1,2,3
</ul>
 
!set wims_ref_id=titi1
!formradio titi list 1
!set wims_ref_id=titi2
!! Formradio with just a list
<div>
!formradio radioB list 1,2,3
</div>
 
!formradio titi list 2
!! Formradio with HTML Mode + CSS Class
<ul>
!set wims_ref_class=toto
!set wims_html_mode=li
!formradio radioC list 1,2,3
</ul>
 
!set wims_ref_id=titi3
!! Formradio with HTML Mode followed by simple formradio
<ul>
!set wims_html_mode=li
!formradio radioD list 1,2,3
</ul>
!formradio radioE list 1,2,3
 
!formradio titi list 3
!! 3 unique Formradio with 3 differents id
<div>
!set wims_ref_id=radio_IDA1
!formradio radioF list 1
!set wims_ref_id=radio_IDA2
!formradio radioF list 2
!set wims_ref_id=radio_IDA3
!formradio radioF list 3
</div>
 
!set wims_ref_id=titi
!formradio titi list 1, 2, 3
!! Formradio with ref_id
<div>
!set wims_ref_id=radio_IDB
!formradio radioG list 1, 2, 3
</div>
 
<ul>
!set wims_html_mode=li
!formcheckbox tata list 1,2,3
</ul>
!! Formradio with 2 elements
<div>
!formradio radioH list 1, 2
</div>
 
!formcheckbox tata list 1,2,3
!!###################
<h1>FORMCHECKBOX</h1>
!!###################
 
!formcheckbox tutu list 1,2,3
!! Formcheckbox with HTML Mode
<ul>
!set wims_html_mode=li
!formcheckbox checkA list 1,2,3
</ul>
 
!set wims_ref_class=toto
!set wims_html_mode=li
<ul>
!formcheckbox toto list 1,2,3
</ul>
!set wims_html_mode=li
<ul>
!formcheckbox toto list 1,2,3
</ul>
!! 2 different Formcheckbox
<div>
!formcheckbox checkB list 1,2,3
&nbsp;&mdash;&nbsp;
!formcheckbox checkC list 1,2,3,4
</div>
 
!set wims_ref_id=titi1
!formcheckbox titi list 1
!! Formcheckbox with HTML Mode + CSS class, followed by formcheckbox with HTML Mode Only
<ul>
!set wims_ref_class=toto
!set wims_html_mode=li
!formcheckbox checkD list 1,2,3
</ul>
<ul>
!set wims_html_mode=li
!formcheckbox checkE list 1,2
</ul>
 
!set wims_ref_id=titi2
!formcheckbox titi list 2
!! 3 unique Formcheckbox with 3 differents id
<div>
!set wims_ref_id=check_IDA1
!formcheckbox checkF list 1
!set wims_ref_id=check_IDA2
!formcheckbox checkF list 2
!set wims_ref_id=check_IDA3
!formcheckbox checkF list 3
</div>
 
!set wims_ref_id=titi3
!formcheckbox titi list 3
 
!! Formcheckbox with ref_id
<div>
!set wims_ref_id=check_IDB
!formcheckbox radioG list 1, 2, 3
</div>