Subversion Repositories wimsdev

Rev

Rev 11574 | Rev 12061 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2544 bpr 1
!set my_dir=lang/menu.$modu_lang
2740 bpr 2
!!!for the moment no language version, because only one example module
3
!set example_dir=lang/example.fr
2544 bpr 4
 
5601 obado 5
 
2544 bpr 6
!reset type_fichier
5601 obado 7
 
8
<!--<div $frame>-->
2544 bpr 9
!set wims_form_method=file
10
!form reply
11
!if $wims_developer=$empty
12
<b>$module_title</b>
13
!record 1 of $my_dir
7442 bpr 14
!!@# vous permet de créer le source d'exercices type. Il est particulièrement adapté aux exercices de langues.
2544 bpr 15
!!Pour rendre ces exercices plus attractifs, il est bien d'avoir un grand jeu de phrases, de questions ou de textes.
7442 bpr 16
!!Vous pouvez prévoir d'insérer dans l'exercice des fichiers audio ou des images,  des textes à lire dans une autre fenêtre et même des videos.
17
!!Les exercices ainsi créés peuvent ensuite être utilisés dans les classes  virtuelles de WIMS.
6235 bpr 18
!!<p>Vous pouvez regarder les exemples ci-dessous. <hr />!!#@
2544 bpr 19
 
4127 bpr 20
(<span class="wims_button disabled">$wims_name_help</span>).
2742 bpr 21
!! ce commentaire est volontaire
22
!!!record 52 of $my_dir
6235 bpr 23
 !!@#<hr /> <p><i>Le source est utilisable dans un compte  Modtool que vous pouvez obtenir!!#@.</i>
2544 bpr 24
 
25
<p>
26
!record 2 of $my_dir
27
!!@#Une fois le login et mot de passe obtenus,!!#@
28
 
2742 bpr 29
!mailurl $wims_site_manager $name_write_manager\
30
WIMS modtool
31
.
32
 $name_identifier
5835 bpr 33
</p>
2544 bpr 34
 
35
!record 3 of $my_dir
36
!!@# et créez le module OEF (Online Exercise Format) dans lequel vous mettrez vos exercices. Un module OEF contient en général beaucoup d'exercices autour d'un thème donné. !!#@
37
 !if $wims_developer=$empty
2553 bpr 38
 
39
!!!record 6 of $my_dir
40
 
2544 bpr 41
!!@#       Veuillez donner votre identification de développeur de Modtool!!#@
7442 bpr 42
 
43
       <fieldset class="property_fields halfwidth blockcenter">
7459 bpr 44
         <legend>$wims_name_connexion</legend>
45
         <div class="field box">
7443 bpr 46
         <label for="login">$wims_name_Login</label>
7459 bpr 47
         <input type="text" name="login" id="login"
48
            required="required" placeholder="$wims_name_Login" />
7442 bpr 49
         </div>
50
         <div class="field box">
7443 bpr 51
         <label for="passwd">$wims_name_Password</label>
7459 bpr 52
          <input type="password" name="passwd" id="passwd"
53
            required="required" placeholder="$wims_name_Password" />
7442 bpr 54
         </div>
55
        </fieldset>
56
       !set submit=submit
2544 bpr 57
    !endif
7442 bpr 58
!! use in other situations - do not put in the fieldset for the moment
6235 bpr 59
    <p class="wimscenter"><input type="$submit" $balise_obl  value="$wims_name_tosave" /></p>
5927 bpr 60
 
61
  !formend
2544 bpr 62
!exit
63
!endif
7442 bpr 64
!if $type_exo=$empty or $debut=1
2544 bpr 65
  !if $type_exo!=$empty
66
!record 4 of  $my_dir
67
!!@#Vous aviez choisi !!#@
68
 $type_exo.
69
!record 5 of  $my_dir
70
!!@#  Pour changer de type d'exercices : !!#@
71
 !endif
72
 !record 6 of  $my_dir
73
!!@#   Regardez l'aide générale dans le menu en haut!!#@
74
,
7442 bpr 75
 
2544 bpr 76
!record 7 of $my_dir
77
!!@#sélectionnez le type d'exercice que vous désirez créer, puis cliquez sur!!#@
3067 bpr 78
 
11681 bpr 79
<fieldset><legend>
80
!record 57 of $my_dir
81
</legend>
2544 bpr 82
   $table_header
6235 bpr 83
    $table_hdtr<td colspan="3" align="center"><input type="submit" $balise_obl value="$wims_name_tosave" /></td></tr>
2544 bpr 84
    $table_tr<th>$wims_name_Type</th><th>$wims_name_Description</th><th>$name_Example</th>
7442 bpr 85
   !set u = !linecnt $name
2544 bpr 86
   !for i = 1 to $u
11681 bpr 87
     $table_tr<td>
2544 bpr 88
     !set cnt=!itemcnt $(name[$i;])
89
     !for a =1 to $cnt
7516 bpr 90
        !set wims_ref_class=wims_formradio
11681 bpr 91
        !set wims_ref_id=type_exo_$(i)_$a
2793 bpr 92
        !formradio type_exo list $(name[$i;$a]) prompt $(wims_name_quick_$(name[$i;$a]))
2544 bpr 93
     !next a
11681 bpr 94
     </td><td>$(explication[$i;])</td>
95
     <td style="text-align:left">
96
     <ul class="wims_nopuce">
7442 bpr 97
     !for j = 1 to $(nb_example[$i])
11681 bpr 98
     <li>
2544 bpr 99
     !set ex_data = !getdef file in $example_dir/$(name_example[$i])/$j
100
     !set ex_title = !getdef title in $example_dir/$(name_example[$i])/$j
101
     !set ex_data=!nospace $ex_data
102
     !set ex_source = !getdef source in $example_dir/$(name_example[$i])/$j
7442 bpr 103
 
3967 bpr 104
!href target=wims_help module=$module_test&exo=$ex_source&cmd=new <i>$ex_title</i>
11681 bpr 105
 $
2544 bpr 106
!href cmd=reply&example=$j&TYPE=$(name_example[$i]) $wims_name_source
11681 bpr 107
 $
2544 bpr 108
!href target=wims_mhelp cmd=help&special_parm=example&special_parm2=$(name_example[$i])/$ex_data $name_data
11681 bpr 109
 $
110
    </li>
111
     !next j
112
    </ul>
2544 bpr 113
     </td></tr>
114
   !next i
115
$table_end
11681 bpr 116
</fieldset>
2544 bpr 117
!endif
118
!if $type_exo!=$empty
119
 
120
   !default mtype=inconnu
121
   !if $debut=1
122
     !reset debut
123
    !! !set title=
124
   !else
125
    !! !if  $transfert!=yes
2793 bpr 126
       !record 4 of $my_dir
3067 bpr 127
     <b>$(wims_name_quick_$type_exo)</b>. &nbsp;
3066 bpr 128
       !set wims_ref_class=wims_button_help
7442 bpr 129
       !href cmd=help&special_parm=$(Type_exo[1]) $wims_name_help
130
&nbsp;
2544 bpr 131
!!(<i>
132
!!       !formcheckbox debut list 1 prompt $name_change
133
!!  </i>)
134
 
135
       <p>
136
!record 8 of $my_dir
5835 bpr 137
</p>
7511 bpr 138
<div class="wimscenter wimsform">
6235 bpr 139
<input type="submit" $balise_obl value="$wims_name_tosave" />
7511 bpr 140
</div>
2544 bpr 141
!!@#Donnez les renseignements suivants (les astérisques indiquent un champ obligatoire ; <i>les rubriques en italique peuvent être remplies dans le fichier de données, dans ce cas, effacez et remplacez par un blanc.</i>) puis cliquer sur !!#@
142
 
7511 bpr 143
     <fieldset class="property_fields blockcenter">
144
         <legend>$name_creation $(wims_name_quick_$type_exo)</legend>
145
         <div class="field box">
146
           <label for="title">$wims_name_title*</label>
147
           <input size="20" id="title" name="title" value="$title" required="required" />
148
        </div>
149
        <div class="field box">
150
         <label for="author">$wims_name_Author*</label>
151
         !set wims_ref_class=wims_button_help float_right
4318 bpr 152
!href target=wims_mhelp cmd=help&special_parm1=namewriting $wims_name_help
7511 bpr 153
          <input size="20" name="author" id="author" value="$author" required="required"/>
154
          <div class="formHelp">$wims_name_firstname,$wims_name_lastname</div>
155
        </div>
156
        <div class="field box">
157
          <label for="email">$wims_name_email*</label>
158
          <input size="20" name="email" id="email" value="$email" />
159
        </div>
160
        <div class="field box">
11573 bpr 161
          <label for="file">
162
          !record 56 of $my_dir
163
          *</label>
7511 bpr 164
       !set wims_ref_class=wims_button_help float_right
165
       !href target=wims_mhelp cmd=help&special_parm1=data_file$type_exo $wims_name_help
166
         <input size="15" name="file" id="file" value="$file" required="required"/>
167
         </div>
168
         <div class="field box">
169
           <label for="source">
2544 bpr 170
!record 9 of $my_dir
171
!!@#         Nom du fichier source de l'exercice à créer!!#@
7511 bpr 172
*</label>
173
  !set wims_ref_class=wims_button_help float_right
174
  !href target=wims_mhelp cmd=help&special_parm1=file $wims_name_help
175
          <input size="15" name="source" id="source" value="$source" required="required"/>
176
        </div>
7513 bpr 177
        </fieldset>
178
    <fieldset class="property_fields blockcenter">
179
       <legend>$name_setup</legend>
2544 bpr 180
       !if $type_exo notwordof CORRESP ORDONNE QUIFAITQUOI
7511 bpr 181
         <div class="field box">
182
           <label for="N">
2544 bpr 183
!record 10 of $my_dir
184
!!@# Nombre de jeux de données utilisés  !!#@
7511 bpr 185
           !if $type_exo notwordof SELECTWORD GAP SELECTWORDA SELECTWORDB
7442 bpr 186
 
2544 bpr 187
!record 11 of $my_dir
188
!!@#          à chaque étape !!#@
7511 bpr 189
            !endif
190
          </label>
191
!set wims_ref_class=wims_button_help float_right
2544 bpr 192
!href target=wims_mhelp cmd=help&special_parm1=data $wims_name_help
7511 bpr 193
<br />
7516 bpr 194
!set wims_ref_class=wims_formradio
7442 bpr 195
         !formradio N from 1 to 6
7516 bpr 196
!set wims_ref_class=wims_formradio
2544 bpr 197
         !formradio N list all prompt $name_all
7511 bpr 198
        </div>
199
         !if $type_exo notwordof GAP QCMIII SELECTWORD SELECTWORDA SELECTWORDB
200
         <div class="field box">
201
           <label for="MAX1">
2544 bpr 202
!record 12 of $my_dir
203
!!@#         Nombre maximum d'étapes !!#@
7511 bpr 204
          </label>
205
!set wims_ref_class=wims_button_help float_right
2544 bpr 206
!href target=wims_mhelp cmd=help&special_parm1=etape $wims_name_help
7516 bpr 207
!set wims_ref_class=wims_formradio
2544 bpr 208
           !formradio MAX1 from 1 to 5
7516 bpr 209
!set wims_ref_class=wims_formradio
2544 bpr 210
           !formradio MAX1 list all prompt $name_all2
7511 bpr 211
         </div>
212
        !endif
2544 bpr 213
      !endif
214
      !if $type_exo iswordof CORRESP
7511 bpr 215
        <div class="field box">
216
          <label for="M">
2544 bpr 217
!record 13 of $my_dir
218
!!@#        Nombre d'objets dans la correspondance !!#@
7511 bpr 219
          </label>
7516 bpr 220
!set wims_ref_class=wims_formradio
7442 bpr 221
        !formradio M from 3 to 6
7511 bpr 222
        </div>
2544 bpr 223
      !endif
224
      !if $type_exo notwordof CORRESP ORDONNE  QUIFAITQUOI QCMIII
7511 bpr 225
        <div class="field box">
226
          <label for="alea">
2544 bpr 227
!record 14 of $my_dir
228
!!@#        Tirage aléatoire des jeux de données !!#@
7511 bpr 229
         </label>
230
!set wims_ref_class=wims_button_help float_right
2544 bpr 231
!href target=wims_mhelp cmd=help&special_parm1=alea $wims_name_help
7516 bpr 232
!set wims_ref_class=wims_formradio
7511 bpr 233
        !formradio alea list yes,no prompt $wims_name_yes,$wims_name_no
234
        </div>
2544 bpr 235
      !endif
236
      !if $type_exo iswordof QCM GAP
7511 bpr 237
       <div class="field box">
2544 bpr 238
!record 15 of $my_dir
239
!!@#       Réponses données !!#@
7511 bpr 240
        !set wims_ref_class=wims_button_help float_right
2544 bpr 241
!href target=wims_mhelp cmd=help&special_parm1=answer_given $wims_name_help
7516 bpr 242
!set wims_ref_class=wims_formradio
7511 bpr 243
        !formradio answer_given list yes,no prompt $wims_name_yes,$wims_name_no
244
        </div>
2544 bpr 245
      !endif
246
      !if $type_exo iswordof GAP
7511 bpr 247
        <div class="field box">
11681 bpr 248
          $name_trialcnt
7511 bpr 249
!set wims_ref_class=wims_button_help float_right
2544 bpr 250
!href target=wims_mhelp cmd=help&special_parm1=try $wims_name_help
7516 bpr 251
!set wims_ref_class=wims_formradio
7511 bpr 252
         !formradio try list 1,2,3,4,5,6,7,8,9,10
253
        </div>
2544 bpr 254
      !endif
255
      !if $type_exo iswordof QCM
7511 bpr 256
       !if $format iswordof clickfill dragfill mark
257
         !set format=checkbox
258
       !endif
259
       !default set format=checkbox
260
       <div class="field box">
11681 bpr 261
         $name_format
7511 bpr 262
!set wims_ref_class=wims_button_help float_right
2544 bpr 263
!href target=wims_mhelp cmd=help&special_parm1=format_radio $wims_name_help
7516 bpr 264
!set wims_ref_class=wims_formradio
7442 bpr 265
        !formradio format list radio,checkbox
7511 bpr 266
        </div>
11681 bpr 267
        <fieldset><legend>
2544 bpr 268
!record 16 of $my_dir
7513 bpr 269
!!@#        Pourcentage de réussite nécessaire pour pouvoir continuer!!#@
11681 bpr 270
        </legend>
7511 bpr 271
!set wims_ref_class=wims_button_help float_right
2544 bpr 272
!href target=wims_mhelp cmd=help&special_parm1=percent $wims_name_help
7513 bpr 273
          <div class="formHelp">
274
!record 54 of $my_dir
275
!!@#        dans le cas où il y a plusieurs étapes !!#@
276
         </div>
7516 bpr 277
!set wims_ref_class=wims_formradio
2544 bpr 278
        !formradio  percent list 0,0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1 prompt 0%,10%,20%,30%,40%,50%,60%,70%,80%,90%,100%
11681 bpr 279
        </fieldset>
2544 bpr 280
      !endif
281
      !if $type_exo iswordof SELECTWORD
7511 bpr 282
        <div class="field box">
283
         <label for="first_step">
2544 bpr 284
!record 17 of $my_dir
285
!!@#     Question demandant le marquage de mots !!#@
7511 bpr 286
         </label>
3066 bpr 287
!set wims_ref_class=wims_button_help
2544 bpr 288
!href target=wims_mhelp cmd=help&special_parm1=first_step $wims_name_help
7516 bpr 289
!set wims_ref_class=wims_formradio
2544 bpr 290
            !formradio first_step list 1,0 prompt $wims_name_yes,$wims_name_no
7511 bpr 291
<br />
292
         <label for="format0">
293
           $name_format
294
         </label>
3776 bpr 295
!set wims_ref_class=wims_button_help
296
!href target=wims_mhelp cmd=help&special_parm1=format0 $wims_name_help
7516 bpr 297
!set wims_ref_class=wims_formradio
11574 bpr 298
          !formradio format0 list mark,flashcard
7511 bpr 299
        </div>
300
        <div class="field box">
301
          <label for="second_step">
2544 bpr 302
!record 18 of $my_dir
303
!!@#         Question supplémentaire !!#@
7511 bpr 304
         </label>
305
!set wims_ref_class=wims_button_help float_right
306
 !href target=wims_mhelp cmd=help&special_parm1=second_step $wims_name_help
7516 bpr 307
 !set wims_ref_class=wims_formradio
2544 bpr 308
            !formradio second_step list yes,no prompt $wims_name_yes,$wims_name_no
7511 bpr 309
        </div>
310
        <div class="field box">
311
         <label for="partialscore">
2544 bpr 312
!record 19 of $my_dir
313
!!@#        Score partiel !!#@
7511 bpr 314
        </label>
315
!set wims_ref_class=wims_button_help float_right
2544 bpr 316
!href target=wims_mhelp cmd=help&special_parm1=partialscore $wims_name_help
7516 bpr 317
!set wims_ref_class=wims_formradio
2544 bpr 318
            !formradio partialscore list split,no prompt $wims_name_yes,$wims_name_no
7511 bpr 319
        </div>
320
        <div class="field box">
321
          <label for="format">
322
           $name_format
323
          </label>
324
!set wims_ref_class=wims_button_help float_right
2544 bpr 325
!href target=wims_mhelp cmd=help&special_parm1=format_click $wims_name_help
7516 bpr 326
!set wims_ref_class=wims_formradio
7513 bpr 327
          !formradio format list case,clickfill,dragfill prompt case,clickfill,dragfill
328
          <div class="formHelp">
329
!record 20 of $my_dir
330
!!@#(si question supplémentaire) !!#@
331
          </div>
332
          <br />
333
          <label>
2544 bpr 334
!record 21 of $my_dir
335
!!@#        Pour le format !!#@
7442 bpr 336
 
6235 bpr 337
<span class="tt">case</span>
7513 bpr 338
          </label>
7536 bpr 339
          !set wims_ref_class=wims_formradio
7513 bpr 340
          !formcheckbox reaccent list yes prompt $wims_name_yes
341
          <div class="formHelp">
342
                !reset reaccent=
2544 bpr 343
!record 22 of $my_dir
344
!!@#        Permettre d'écrire e' au lieu de é ...!!#@
7513 bpr 345
          </div>
7511 bpr 346
        </div>
347
        <div class="field box">
348
          <label for="pos_rep">
2544 bpr 349
!record 23 of $my_dir
7513 bpr 350
!!@#        Réponses !!#@
351
          </label>
7511 bpr 352
!set wims_ref_class=wims_button_help float_right
2544 bpr 353
!href target=wims_mhelp cmd=help&special_parm1=supplement $wims_name_help
7536 bpr 354
        !set wims_ref_class=wims_formradio
2544 bpr 355
        !formradio  pos_rep list inside,outside,under prompt $name_position
7513 bpr 356
          <div class="formHelp">
357
!record 32 of $my_dir
358
!!@#         si question supplémentaire!!#@
359
          </div>
7511 bpr 360
        </div>
2544 bpr 361
      !endif
362
      !if $type_exo iswordof SELECTWORDA
7511 bpr 363
         <div class="field box">
364
           <label for="format">$name_format</label>
365
!set wims_ref_class=wims_button_help float_right
2544 bpr 366
!href target=wims_mhelp cmd=help&special_parm1=format_click $wims_name_help
7536 bpr 367
        !set wims_ref_class=wims_formradio
2544 bpr 368
        !formradio format list case,clickfill,dragfill prompt case,clickfill,dragfill
6235 bpr 369
        <br />
2544 bpr 370
!record 24 of $my_dir
371
!!@#        Pour le format !!#@
7511 bpr 372
    <span class="tt">case</span>
2544 bpr 373
        !reset reaccent=
7536 bpr 374
        !set wims_ref_class=wims_formradio
2544 bpr 375
        !formcheckbox reaccent list yes prompt $name_e
7511 bpr 376
         </div>
377
         <div class="field box">
378
           <label for="pos_rep">
2544 bpr 379
!record 25 of $my_dir
380
!!@#   Réponses !!#@
7511 bpr 381
         </label>
382
!set wims_ref_class=wims_button_help float_right
2544 bpr 383
!href target=wims_mhelp cmd=help&special_parm1=supplement $wims_name_help
7536 bpr 384
        !set wims_ref_class=wims_formradio
2544 bpr 385
        !formradio  pos_rep list inside,outside prompt $name_position2
7511 bpr 386
        </div>
2544 bpr 387
      !endif
388
      !if $type_exo iswordof GAP
7511 bpr 389
        <div class="field box">
390
          <label for="format">$name_format</label>
391
!set wims_ref_class=wims_button_help float_right
2544 bpr 392
!href target=wims_mhelp cmd=help&special_parm1=format_click $wims_name_help
7536 bpr 393
         !set wims_ref_class=wims_formradio
7511 bpr 394
          !formradio format list case,clickfill,dragfill,mark,menu prompt case,clickfill,dragfill,mark,menu
395
        </div>
396
        <div class="field box">
397
          <label for="common">
2544 bpr 398
!record 26 of $my_dir
399
!!@#        Menu commun (format mark, menu) !!#@
7511 bpr 400
         </label>
401
!set wims_ref_class=wims_button_help float_right
2544 bpr 402
!href target=wims_mhelp cmd=help&special_parm1=menu_commun $wims_name_help
7536 bpr 403
!set wims_ref_class=wims_formradio
2544 bpr 404
        !formradio common list yes,no prompt $wims_name_yes,$wims_name_no
7536 bpr 405
        <div class="formHelp">
7513 bpr 406
!record 55 of $my_dir
407
!!@#       format mark, menu !!#@
408
         </div>
7511 bpr 409
       </div>
410
       <div class="field box">
411
          <label>
2544 bpr 412
!record 27 of $my_dir
413
!!@#        Aides spéciales proposées !!#@
7511 bpr 414
         </label>
415
!set wims_ref_class=wims_button_help float_right
2544 bpr 416
!href target=wims_mhelp cmd=help&special_parm1=specialhelp $wims_name_help
7536 bpr 417
<br />
7511 bpr 418
        <label for="specialhelp1">$name_trial1:</label>
7536 bpr 419
!set wims_ref_class=wims_formradio
3776 bpr 420
        !formradio specialhelp1 list 0,1,2,3,4,5 prompt $name_listhelp
7511 bpr 421
<br />
422
        <label for="specialhelp2">$name_trial2:</label>
7536 bpr 423
!set wims_ref_class=wims_formradio
3776 bpr 424
        !formradio specialhelp2 list 0,1,2,3,4,5 prompt $name_listhelp
7511 bpr 425
<br />
426
        <label for="specialhelp3">$name_trial3:</label>
7536 bpr 427
!set wims_ref_class=wims_formradio
3776 bpr 428
        !formradio specialhelp3 list 0,1,2,3,4,5 prompt $name_listhelp
7511 bpr 429
<br />
430
       <label for="specialhelp4">$name_trial4:</label>
7536 bpr 431
!set wims_ref_class=wims_formradio
3776 bpr 432
        !formradio specialhelp4 list 0,1,2,3,4,5 prompt $name_listhelp
7511 bpr 433
<br />
434
       <label for="helpprompt">$name_prompt : </label>
435
       <input size="5" name="helpprompt" id="helpprompt" value="$helpprompt" />
436
     </div>
2544 bpr 437
      !endif
438
      !if $type_exo iswordof TRUEFALSE GAP QUIFAITQUOI QCMIII
439
        !if $type_exo iswordof
7511 bpr 440
        !!$table_tr<td><i>
441
          <label for="choicetf">
7514 bpr 442
            <i>
2544 bpr 443
!record 28 of $my_dir
444
!!@#           Choix de réponses !!#@
7514 bpr 445
            </i>
7511 bpr 446
          </label>
447
!set wims_ref_class=wims_button_help float_right
2544 bpr 448
         !href target=wims_mhelp cmd=help&special_parm1=choice $wims_name_help
449
 !!!default choice_tf=vrai,faux
7511 bpr 450
           <input size="35" name="choice_tf" id="choice_tf" value="$choice_tf" />
2544 bpr 451
        !endif
452
        !!!if $type_exo iswordof QUIFAITQUOI
453
       !!    Les différents "qui"  </i>
454
!!!default choice_qq=Premier Personnage, Deuxième Personnage
7511 bpr 455
      !!     </td><td><input size="35" name="choice_qq" id="choice_qq" value="$choice_qq" />
2544 bpr 456
      !! !endif
457
       !if $type_exo iswordof GAP
7511 bpr 458
          <div class="field box">
459
            <label for="choice_gap">
2544 bpr 460
!!@#           Liste de mots proposés  !!#@
7514 bpr 461
<i>
2544 bpr 462
 !record 53 of $my_dir
7514 bpr 463
</i>
7511 bpr 464
           </label>
465
           !set wims_ref_class=wims_button_help float_right
2544 bpr 466
           !href target=wims_mhelp cmd=help&special_parm1=choice2 $wims_name_help
7511 bpr 467
           <input size="35" name="choice_gap" id="choice_gap" value="$choice_gap" />
468
         </div>
2544 bpr 469
       !endif
470
       !!if $type_exo iswordof QCMIII
471
       !!   Texte pour le feedback  </i>
472
       !!!default choice_fd=Vrai en effet, Faux en effet
7511 bpr 473
       !!   <input size="35" name="choice_fd" id="choice_fd" value="$choice_fd" />
2544 bpr 474
       !!!endif
475
     !endif
476
     !if $type_exo iswordof QUIFAITQUOI
7511 bpr 477
          <div class="field box">
478
            <label for="sens">Sens</label>
479
           !set wims_ref_class=wims_button_help float_right
480
           !href target=wims_mhelp cmd=help&special_parm1=sens $wims_name_help
7536 bpr 481
           !set wims_ref_class=wims_formradio
7511 bpr 482
           !formradio sens list 1,2,3 prompt $name_quifaitquoi
483
         </div>
484
         <div class="field box">
485
           <label for="aucune">
2544 bpr 486
!record 29 of $my_dir
487
!!@#         Phrase spécifique!!#@
7511 bpr 488
          </label>
489
 !set wims_ref_class=wims_button_help float_right
490
          !href target=wims_mhelp cmd=help&special_parm1=aucune $wims_name_help
491
          <input size="35" name="aucune" id="aucune" value="$aucune" />
492
         </div>
2544 bpr 493
     !endif
494
    !if $type_exo iswordof CORRESP
7511 bpr 495
        <div class="field box">
496
          <label for="taille_corr">
2544 bpr 497
!record 30 of $my_dir
498
!!@#       Taille des étiquettes !!#@
7511 bpr 499
          </label>
500
!set wims_ref_class=wims_button_help float_right
2544 bpr 501
!href target=wims_mhelp cmd=help&special_parm1=taille_corr $wims_name_help
7511 bpr 502
          <input size="15" name="taille_corr" id="taille_corr" value="$taille_corr" />
503
        </div>
2544 bpr 504
    !endif
505
    !if $type_exo iswordof GAP SELECTWORD SELECTWORDA SELECTWORDB
7511 bpr 506
       <div class="field box"><label for="taille_case">
2544 bpr 507
!record 31 of $my_dir
508
!!@#       Taille des cases !!#@
7536 bpr 509
</label>
7511 bpr 510
       !set wims_ref_class=wims_button_help float_right
2544 bpr 511
!href target=wims_mhelp cmd=help&special_parm1=taille_case $wims_name_help
7511 bpr 512
           <input size="15" name="taille_case" id="taille_case" value="$taille_case" />
7536 bpr 513
           <div class="formHelp">case</div>
7513 bpr 514
        !if $type_exo iswordof SELECTWORD
515
          <div class="formHelp">
516
!record 32 of $my_dir
517
!!@#         si question supplémentaire!!#@
518
          </div>
519
        !endif
520
 
521
</div>
2544 bpr 522
    !endif
523
    !if $type_exo iswordof COMPOSE
7511 bpr 524
        <div class="field box">
525
          <label for="taille_compose">
2544 bpr 526
!record 33 of $my_dir
527
!!@#       Taille de la zone d'écriture !!#@
7511 bpr 528
          </label>
529
!set wims_ref_class=wims_button_help float_right
2544 bpr 530
!href target=wims_mhelp cmd=help&special_parm1=taille_compose $wims_name_help
7511 bpr 531
           <input size="15" name="taille_compose" id="taille_compose" value="$taille_compose" />
532
        </div>
2544 bpr 533
    !endif
534
    !if $type_exo iswordof ORDONNE GAP SELECTWORD SELECTWORDA SELECTWORDB
7511 bpr 535
       <div class="field box">
536
         <label for="taille_drag">
2544 bpr 537
!record 34 of $my_dir
538
!!@#       Taille des étiquettes !!#@
7511 bpr 539
         </label>
540
       !set wims_ref_class=wims_button_help float_right
2544 bpr 541
!href target=wims_mhelp cmd=help&special_parm1=taille_drag $wims_name_help
542
       !if $type_exo iswordof SELECTWORD
7513 bpr 543
        !set wims_ref_class=wims_button_help float_right
544
        !href target=wims_mhelp cmd=help&special_parm1=supplement $wims_name_help
545
        !endif
546
       <input size="15" name="taille_drag" id="taille_drag" value="$taille_drag" />
7536 bpr 547
       !if $type_exo iswordof GAP SELECTWORDA SELECTWORDB
548
          <div class="formHelp">drag / click</div>
549
       !endif
7513 bpr 550
       !if $type_exo iswordof SELECTWORD
551
         <div class="formHelp">
7536 bpr 552
         drag / click
2544 bpr 553
!record 35 of $my_dir
7513 bpr 554
!!@#         si question supplémentaire !!#@
555
        </div>
556
      !endif
7511 bpr 557
    </div>
2544 bpr 558
    !endif
7511 bpr 559
    <div class="field box">
560
       <label for="instruction">
7514 bpr 561
        <i>
2544 bpr 562
!record 36 of $my_dir
563
!!@#   Consigne de l'exercice!!#@
7514 bpr 564
       </i>
7511 bpr 565
       </label>
566
 !set wims_ref_class=wims_button_help float_right
2544 bpr 567
!href target=wims_mhelp cmd=help&special_parm1=instruction $wims_name_help
7511 bpr 568
      <textarea class="nowrap" rows="4" cols="30" name="instruction" id="instruction">$instruction</textarea>
569
   </div>
2544 bpr 570
    !if $type_exo iswordof SELECTWORDB SELECTWORD
7513 bpr 571
       <div class="field box">
572
         <label for="instruction2">
7514 bpr 573
           <i>
2544 bpr 574
!record 37 of $my_dir
7513 bpr 575
!!@#      Consigne de l'exercice!!#@
7514 bpr 576
           </i>
7513 bpr 577
         </label>
578
         <div class="formHelp">
579
!record 32 of $my_dir
580
!!@#         si question supplémentaire!!#@
581
        </div>
582
        <textarea class="nowrap" rows="4" cols="30" name="instruction2" id="instruction2">$instruction2</textarea>
583
      </div>
2544 bpr 584
    !endif
585
    !!if $type_exo iswordof GAP
7511 bpr 586
      <div class="field box">
587
        <label for="packs">
7514 bpr 588
         <i>
2544 bpr 589
!record 38 of $my_dir
7442 bpr 590
!!@#    Paquets SWAC!!#@
7514 bpr 591
         </i>
7511 bpr 592
        </label>
593
!set wims_ref_class=wims_button_help float_right
594
      !href target=wims_mhelp cmd=help&special_parm1=swac $wims_name_help
5852 bpr 595
     !set wims_formselect_switch=multiple="multiple"
2544 bpr 596
     !formselect packs list $list_swac prompt $list_swac_prompt
597
     !set wims_formselect_switch=
7511 bpr 598
     </div>
2544 bpr 599
    !!endif
7513 bpr 600
    <div class="field box">
601
        <label for="player">
602
!record 50 of $my_dir
603
!!@#     Choix du lecteur mp3!!#@
604
 
605
        </label>
606
!set wims_ref_class=wims_button_help float_right
607
!href target=wims_mhelp cmd=help&special_parm1=player $wims_name_help
608
      !formselect player list $list_player
609
      <label for="player_option">
610
!record 51 of $my_dir
611
!!@# Taille du lecteur!!#@
612
      </label>
613
      <input size="20" name="player_option" id="player_option" value="$player_option" />
614
    </div>
7511 bpr 615
    </fieldset>
616
   <fieldset class="property_fields blockcenter">
617
    <legend>
7513 bpr 618
      <a id="expert"></a>$name_expert
7511 bpr 619
    </legend>
620
     <div class="field box">
621
       <label for="reading_file1">
2544 bpr 622
!record 39 of $my_dir
623
!!@#    Fichier de lecture !!#@
7511 bpr 624
       </label>
625
!set wims_ref_class=wims_button_help float_right
2544 bpr 626
!href target=wims_mhelp cmd=help&special_parm1=reading $wims_name_help
7516 bpr 627
    !set wims_formradio_class=wims_button_help
2544 bpr 628
    !formradio reading_file1 list yes,no prompt $wims_name_yes,$wims_name_no
7511 bpr 629
    <ul>
630
     <li>
7514 bpr 631
       <label for="reading_file0"><i>$name_name_file</i></label>
7511 bpr 632
       <input size="15" name="reading_file0" id="reading_file0" value="$reading_file0" />
633
     </li>
634
     <li>
635
        <label for="reading_tag">$name_click</label>
636
        <input size="8" name="reading_tag" id="reading_tag" value="$reading_tag" />
637
     </li>
638
     <li>
7536 bpr 639
     !set wims_ref_class=wims_formradio
2544 bpr 640
      !formradio raw list 0,1 prompt $name_format_text
3066 bpr 641
      &nbsp;
642
      !set wims_ref_class=wims_button_help
2544 bpr 643
!href target=wims_mhelp cmd=help&special_parm1=raw $wims_name_help
7511 bpr 644
     </li>
645
    </ul>
646
    </div>
647
     <div class="field box">
648
       <label for="audio_file1">
2544 bpr 649
!record 40 of $my_dir
650
!!@#    Fichier d'écoute !!#@
7511 bpr 651
      </label>
652
!set wims_ref_class=wims_button_help float_right
2544 bpr 653
!href target=wims_mhelp cmd=help&special_parm1=audio $wims_name_help
7516 bpr 654
!set wims_ref_class=wims_formradio
2544 bpr 655
    !formradio audio_file1 list yes,no prompt $wims_name_yes,$wims_name_no
7511 bpr 656
    <ul><li>
7514 bpr 657
        <label for="audio_file0">
658
         <i>
2544 bpr 659
!record 41 of $my_dir
660
!!@#        nom du fichier!!#@
7514 bpr 661
          </i>
7511 bpr 662
         </label>
663
         <input size="15" name="audio_file0" id="audio_file0" value="$audio_file0" />
664
     </li></ul>
665
     <div class="field box">
666
       <label for="video_file1">
2544 bpr 667
!record 42 of $my_dir
668
!!@#    Fichier video !!#@
7511 bpr 669
       </label>
670
!set wims_ref_class=wims_button_help float_right
2544 bpr 671
!href target=wims_mhelp cmd=help&special_parm1=video $wims_name_help
7516 bpr 672
!set wims_ref_class=wims_formradio
2544 bpr 673
    !formradio video_file1 list yes,no prompt $wims_name_yes,$wims_name_no
7511 bpr 674
      <ul><li>
675
       <label for="video_file0">
7514 bpr 676
         <i>
2544 bpr 677
!record 43 of $my_dir
678
!!@#    adresse url de la video!!#@
7514 bpr 679
         </i>
7511 bpr 680
       </label>
681
      <input size="15" name="video_file0" id="video_file0" value="$video_file0" />
682
      </li><li>
683
       <label for="video_tag">$name_click</label>
684
       <input size="8" name="video_tag" id="video_tag" value="$video_tag" />
685
      </ul>
686
    </div>
687
    <div class="field box">
688
      <label for="image_file1">
2544 bpr 689
!record 44 of $my_dir
690
!!@#    Fichiers d'images !!#@
7511 bpr 691
      </label>
692
!set wims_ref_class=wims_button_help float_right
2544 bpr 693
!href target=wims_mhelp cmd=help&special_parm1=image $wims_name_help
7516 bpr 694
!set wims_ref_class=wims_formradio
2544 bpr 695
    !formradio image_file1 list yes,no prompt $wims_name_yes,$wims_name_no
7511 bpr 696
    <ul><li>
697
       <label for="image_file0">
7514 bpr 698
         <i>
2544 bpr 699
!record 45 of $my_dir
700
!!@#     nom du fichier!!#@
7514 bpr 701
         </i>
7511 bpr 702
     </label>
703
      <input size="15" name="image_file0" id="image_file0" value="$image_file0" />
704
     </li><li>
705
     <label for="image_tag">$name_click</label>
706
     <input size="8" name="image_tag" id="image_tag" value="$image_tag" />
707
    </div>
7536 bpr 708
  </fieldset>
709
  <fieldset class="property_fields blockcenter">
710
    <legend>CSS</legend>
7511 bpr 711
    <div class="field box">
712
      <label for="style_question">
2544 bpr 713
!record 46 of $my_dir
714
!!@#    Style css de la question !!#@
7511 bpr 715
      </label>
716
!set wims_ref_class=wims_button_help float_right
2544 bpr 717
!href target=wims_mhelp cmd=help&special_parm1=css $wims_name_help
7511 bpr 718
      <textarea class="nowrap" rows="2" cols="30" name="style_question" id="style_question">$style_question</textarea>
719
    </div>
720
    <div class="field box">
721
      <label for="style_reponse">
2544 bpr 722
!record 47 of $my_dir
723
!!@#   Style css des réponses ou indications !!#@
7511 bpr 724
      </label>
725
!set wims_ref_class=wims_button_help float_right
2544 bpr 726
!href target=wims_mhelp cmd=help&special_parm1=css $wims_name_help
7511 bpr 727
    <textarea class="nowrap" rows="2" cols="30" name="style_reponse" id="style_reponse">$style_reponse</textarea>
3066 bpr 728
 !!   <tr bgcolor="$c_expert"><td><label for="style_oef">Style css général de l'exercice &nbsp;.oefstatement]</td><td>
6594 bpr 729
 !!   <textarea class="nowrap" rows="2" cols="30" name="style_oef" id="style_oef">$style_oef</textarea> </td></tr>
7511 bpr 730
    </div>
731
    <div class="field box">
732
      <label for="style_css">
2544 bpr 733
!record 48 of $my_dir
734
!!@#    Style css  !!#@
7511 bpr 735
     </label>
736
!set wims_ref_class=wims_button_help float_right
2544 bpr 737
!href target=wims_mhelp cmd=help&special_parm1=css1 $wims_name_help
7511 bpr 738
      <textarea class="nowrap" rows="2" cols="30" name="style_css" id="style_css">$style_css</textarea>
739
    </div>
7442 bpr 740
   !if $type_exo iswordof GAP SELECTWORD SELECTWORDA SELECTWORDB
7511 bpr 741
    <div class="field box">
742
      <label for="paste">
2544 bpr 743
!record 49 of $my_dir
744
!!@#       "Copier-Coller" possible!!#@
7511 bpr 745
      </label>
746
!set wims_ref_class=wims_button_help float_right
747
!href target=wims_mhelp cmd=help&special_parm1=nopaste $wims_name_help
7516 bpr 748
!set wims_ref_class=wims_formradio
2544 bpr 749
        !formradio paste list yes,no prompt $wims_name_yes,$wims_name_no
7511 bpr 750
       </div>
2544 bpr 751
     !endif
752
    !if $type_exo iswordof QCM
7511 bpr 753
       <div class="field box">
754
         <label for="qcm_prompt1">$name_prompt</label>
755
       !set wims_ref_class=wims_button_help float_right
2544 bpr 756
!href target=wims_mhelp cmd=help&special_parm1=prompts $wims_name_help
3066 bpr 757
&nbsp;
6594 bpr 758
        <textarea class="nowrap" rows="1" cols="20" name="qcm_prompt1" id="qcm_prompt1">$qcm_prompt1</textarea>
759
        <textarea class="nowrap" rows="1" cols="20" name="qcm_prompt2" id="qcm_prompt2">$qcm_prompt2</textarea>
760
        <textarea class="nowrap" rows="1" cols="20" name="good_answer_text" id="good_answer_text">$good_answer_text</textarea>
761
        <textarea class="nowrap" rows="1" cols="20" name="bad_answer_text" id="bad_answer_text">$bad_answer_text</textarea>
762
        <textarea class="nowrap" rows="1" cols="20" name="incomplete_answer_text" id="incomplete_answer_text">$incomplete_answer_text</textarea>
7511 bpr 763
       </div>
7442 bpr 764
     !endif
7511 bpr 765
  </fieldset>
2544 bpr 766
    !set transfert=
7442 bpr 767
  !endif
2544 bpr 768
!endif
7511 bpr 769
<div class="wimscenter wimsform"><input type="submit" $balise_obl value="$wims_name_tosave" /></div>
2544 bpr 770
 
5928 bpr 771
 
772
!formend
2544 bpr 773
 
5601 obado 774
 
775
 
7511 bpr 776