Subversion Repositories wimsdev

Rev

Rev 11681 | Rev 12520 | 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">
12061 bpr 182
           <strong>
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
12061 bpr 190
          </strong>
7511 bpr 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
12061 bpr 196
!set wims_ref_id=Nall
7516 bpr 197
!set wims_ref_class=wims_formradio
2544 bpr 198
         !formradio N list all prompt $name_all
7511 bpr 199
        </div>
200
         !if $type_exo notwordof GAP QCMIII SELECTWORD SELECTWORDA SELECTWORDB
201
         <div class="field box">
12061 bpr 202
           <strong>
2544 bpr 203
!record 12 of $my_dir
204
!!@#         Nombre maximum d'étapes !!#@
12061 bpr 205
          </strong>
7511 bpr 206
!set wims_ref_class=wims_button_help float_right
2544 bpr 207
!href target=wims_mhelp cmd=help&special_parm1=etape $wims_name_help
7516 bpr 208
!set wims_ref_class=wims_formradio
2544 bpr 209
           !formradio MAX1 from 1 to 5
7516 bpr 210
!set wims_ref_class=wims_formradio
12061 bpr 211
!set wims_ref_id=MAX1p
2544 bpr 212
           !formradio MAX1 list all prompt $name_all2
7511 bpr 213
         </div>
214
        !endif
2544 bpr 215
      !endif
216
      !if $type_exo iswordof CORRESP
7511 bpr 217
        <div class="field box">
12061 bpr 218
          <strong for="M">
2544 bpr 219
!record 13 of $my_dir
220
!!@#        Nombre d'objets dans la correspondance !!#@
12061 bpr 221
          </strong>
7516 bpr 222
!set wims_ref_class=wims_formradio
7442 bpr 223
        !formradio M from 3 to 6
7511 bpr 224
        </div>
2544 bpr 225
      !endif
226
      !if $type_exo notwordof CORRESP ORDONNE  QUIFAITQUOI QCMIII
7511 bpr 227
        <div class="field box">
12061 bpr 228
          <strong for="alea">
2544 bpr 229
!record 14 of $my_dir
230
!!@#        Tirage aléatoire des jeux de données !!#@
12061 bpr 231
         </strong>
7511 bpr 232
!set wims_ref_class=wims_button_help float_right
2544 bpr 233
!href target=wims_mhelp cmd=help&special_parm1=alea $wims_name_help
7516 bpr 234
!set wims_ref_class=wims_formradio
7511 bpr 235
        !formradio alea list yes,no prompt $wims_name_yes,$wims_name_no
236
        </div>
2544 bpr 237
      !endif
238
      !if $type_exo iswordof QCM GAP
7511 bpr 239
       <div class="field box">
12061 bpr 240
       <strong>
2544 bpr 241
!record 15 of $my_dir
12061 bpr 242
     </strong>
2544 bpr 243
!!@#       Réponses données !!#@
7511 bpr 244
        !set wims_ref_class=wims_button_help float_right
2544 bpr 245
!href target=wims_mhelp cmd=help&special_parm1=answer_given $wims_name_help
7516 bpr 246
!set wims_ref_class=wims_formradio
7511 bpr 247
        !formradio answer_given list yes,no prompt $wims_name_yes,$wims_name_no
248
        </div>
2544 bpr 249
      !endif
250
      !if $type_exo iswordof GAP
7511 bpr 251
        <div class="field box">
11681 bpr 252
          $name_trialcnt
7511 bpr 253
!set wims_ref_class=wims_button_help float_right
2544 bpr 254
!href target=wims_mhelp cmd=help&special_parm1=try $wims_name_help
7516 bpr 255
!set wims_ref_class=wims_formradio
7511 bpr 256
         !formradio try list 1,2,3,4,5,6,7,8,9,10
257
        </div>
2544 bpr 258
      !endif
259
      !if $type_exo iswordof QCM
7511 bpr 260
       !if $format iswordof clickfill dragfill mark
261
         !set format=checkbox
262
       !endif
263
       !default set format=checkbox
264
       <div class="field box">
11681 bpr 265
         $name_format
7511 bpr 266
!set wims_ref_class=wims_button_help float_right
2544 bpr 267
!href target=wims_mhelp cmd=help&special_parm1=format_radio $wims_name_help
7516 bpr 268
!set wims_ref_class=wims_formradio
7442 bpr 269
        !formradio format list radio,checkbox
7511 bpr 270
        </div>
11681 bpr 271
        <fieldset><legend>
2544 bpr 272
!record 16 of $my_dir
7513 bpr 273
!!@#        Pourcentage de réussite nécessaire pour pouvoir continuer!!#@
11681 bpr 274
        </legend>
7511 bpr 275
!set wims_ref_class=wims_button_help float_right
2544 bpr 276
!href target=wims_mhelp cmd=help&special_parm1=percent $wims_name_help
7513 bpr 277
          <div class="formHelp">
278
!record 54 of $my_dir
279
!!@#        dans le cas où il y a plusieurs étapes !!#@
280
         </div>
7516 bpr 281
!set wims_ref_class=wims_formradio
2544 bpr 282
        !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 283
        </fieldset>
2544 bpr 284
      !endif
285
      !if $type_exo iswordof SELECTWORD
7511 bpr 286
        <div class="field box">
12061 bpr 287
         <strong>
2544 bpr 288
!record 17 of $my_dir
289
!!@#     Question demandant le marquage de mots !!#@
12061 bpr 290
         </strong>
3066 bpr 291
!set wims_ref_class=wims_button_help
2544 bpr 292
!href target=wims_mhelp cmd=help&special_parm1=first_step $wims_name_help
7516 bpr 293
!set wims_ref_class=wims_formradio
2544 bpr 294
            !formradio first_step list 1,0 prompt $wims_name_yes,$wims_name_no
7511 bpr 295
<br />
12061 bpr 296
         <strong>
7511 bpr 297
           $name_format
12061 bpr 298
         </strong>
3776 bpr 299
!set wims_ref_class=wims_button_help
300
!href target=wims_mhelp cmd=help&special_parm1=format0 $wims_name_help
7516 bpr 301
!set wims_ref_class=wims_formradio
11574 bpr 302
          !formradio format0 list mark,flashcard
7511 bpr 303
        </div>
304
        <div class="field box">
12061 bpr 305
          <strong>
2544 bpr 306
!record 18 of $my_dir
307
!!@#         Question supplémentaire !!#@
12061 bpr 308
         </strong>
7511 bpr 309
!set wims_ref_class=wims_button_help float_right
310
 !href target=wims_mhelp cmd=help&special_parm1=second_step $wims_name_help
7516 bpr 311
 !set wims_ref_class=wims_formradio
2544 bpr 312
            !formradio second_step list yes,no prompt $wims_name_yes,$wims_name_no
7511 bpr 313
        </div>
314
        <div class="field box">
12061 bpr 315
         <strong>
2544 bpr 316
!record 19 of $my_dir
317
!!@#        Score partiel !!#@
12061 bpr 318
        </strong>
7511 bpr 319
!set wims_ref_class=wims_button_help float_right
2544 bpr 320
!href target=wims_mhelp cmd=help&special_parm1=partialscore $wims_name_help
7516 bpr 321
!set wims_ref_class=wims_formradio
2544 bpr 322
            !formradio partialscore list split,no prompt $wims_name_yes,$wims_name_no
7511 bpr 323
        </div>
324
        <div class="field box">
12061 bpr 325
          <strong>
7511 bpr 326
           $name_format
12061 bpr 327
          </strong>
7511 bpr 328
!set wims_ref_class=wims_button_help float_right
2544 bpr 329
!href target=wims_mhelp cmd=help&special_parm1=format_click $wims_name_help
7516 bpr 330
!set wims_ref_class=wims_formradio
7513 bpr 331
          !formradio format list case,clickfill,dragfill prompt case,clickfill,dragfill
332
          <div class="formHelp">
333
!record 20 of $my_dir
334
!!@#(si question supplémentaire) !!#@
335
          </div>
336
          <br />
337
          <label>
2544 bpr 338
!record 21 of $my_dir
339
!!@#        Pour le format !!#@
7442 bpr 340
 
12061 bpr 341
<span class="tt"><label for="reaccent">case</label></span>
7513 bpr 342
          </label>
7536 bpr 343
          !set wims_ref_class=wims_formradio
7513 bpr 344
          !formcheckbox reaccent list yes prompt $wims_name_yes
345
          <div class="formHelp">
346
                !reset reaccent=
2544 bpr 347
!record 22 of $my_dir
348
!!@#        Permettre d'écrire e' au lieu de é ...!!#@
7513 bpr 349
          </div>
7511 bpr 350
        </div>
351
        <div class="field box">
12061 bpr 352
          <strong>
2544 bpr 353
!record 23 of $my_dir
7513 bpr 354
!!@#        Réponses !!#@
12061 bpr 355
          </strong>
7511 bpr 356
!set wims_ref_class=wims_button_help float_right
2544 bpr 357
!href target=wims_mhelp cmd=help&special_parm1=supplement $wims_name_help
7536 bpr 358
        !set wims_ref_class=wims_formradio
2544 bpr 359
        !formradio  pos_rep list inside,outside,under prompt $name_position
7513 bpr 360
          <div class="formHelp">
361
!record 32 of $my_dir
362
!!@#         si question supplémentaire!!#@
363
          </div>
7511 bpr 364
        </div>
2544 bpr 365
      !endif
366
      !if $type_exo iswordof SELECTWORDA
7511 bpr 367
         <div class="field box">
12061 bpr 368
           <strong>$name_format</strong>
7511 bpr 369
!set wims_ref_class=wims_button_help float_right
2544 bpr 370
!href target=wims_mhelp cmd=help&special_parm1=format_click $wims_name_help
7536 bpr 371
        !set wims_ref_class=wims_formradio
2544 bpr 372
        !formradio format list case,clickfill,dragfill prompt case,clickfill,dragfill
6235 bpr 373
        <br />
2544 bpr 374
!record 24 of $my_dir
375
!!@#        Pour le format !!#@
12061 bpr 376
    <strong><span class="tt">case</span></strong>
2544 bpr 377
        !reset reaccent=
7536 bpr 378
        !set wims_ref_class=wims_formradio
2544 bpr 379
        !formcheckbox reaccent list yes prompt $name_e
7511 bpr 380
         </div>
381
         <div class="field box">
12061 bpr 382
           <strong>
2544 bpr 383
!record 25 of $my_dir
384
!!@#   Réponses !!#@
12061 bpr 385
         </strong>
7511 bpr 386
!set wims_ref_class=wims_button_help float_right
2544 bpr 387
!href target=wims_mhelp cmd=help&special_parm1=supplement $wims_name_help
7536 bpr 388
        !set wims_ref_class=wims_formradio
2544 bpr 389
        !formradio  pos_rep list inside,outside prompt $name_position2
7511 bpr 390
        </div>
2544 bpr 391
      !endif
392
      !if $type_exo iswordof GAP
7511 bpr 393
        <div class="field box">
12061 bpr 394
          <strong>$name_format</strong>
7511 bpr 395
!set wims_ref_class=wims_button_help float_right
2544 bpr 396
!href target=wims_mhelp cmd=help&special_parm1=format_click $wims_name_help
7536 bpr 397
         !set wims_ref_class=wims_formradio
7511 bpr 398
          !formradio format list case,clickfill,dragfill,mark,menu prompt case,clickfill,dragfill,mark,menu
399
        </div>
400
        <div class="field box">
12061 bpr 401
          <strong>
2544 bpr 402
!record 26 of $my_dir
403
!!@#        Menu commun (format mark, menu) !!#@
12061 bpr 404
         </strong>
7511 bpr 405
!set wims_ref_class=wims_button_help float_right
2544 bpr 406
!href target=wims_mhelp cmd=help&special_parm1=menu_commun $wims_name_help
7536 bpr 407
!set wims_ref_class=wims_formradio
2544 bpr 408
        !formradio common list yes,no prompt $wims_name_yes,$wims_name_no
7536 bpr 409
        <div class="formHelp">
7513 bpr 410
!record 55 of $my_dir
411
!!@#       format mark, menu !!#@
412
         </div>
7511 bpr 413
       </div>
414
       <div class="field box">
12061 bpr 415
          <strong>
2544 bpr 416
!record 27 of $my_dir
417
!!@#        Aides spéciales proposées !!#@
12061 bpr 418
         </strong>
7511 bpr 419
!set wims_ref_class=wims_button_help float_right
2544 bpr 420
!href target=wims_mhelp cmd=help&special_parm1=specialhelp $wims_name_help
12061 bpr 421
<ul class="wims_nopuce">
422
<li>
423
        <strong>$name_trial1:</strong>
7536 bpr 424
!set wims_ref_class=wims_formradio
3776 bpr 425
        !formradio specialhelp1 list 0,1,2,3,4,5 prompt $name_listhelp
12061 bpr 426
</li><li>
427
        <strong>$name_trial2:</strong>
7536 bpr 428
!set wims_ref_class=wims_formradio
3776 bpr 429
        !formradio specialhelp2 list 0,1,2,3,4,5 prompt $name_listhelp
12061 bpr 430
</li><li>
431
        <strong>$name_trial3:</strong>
7536 bpr 432
!set wims_ref_class=wims_formradio
3776 bpr 433
        !formradio specialhelp3 list 0,1,2,3,4,5 prompt $name_listhelp
12061 bpr 434
</li><li>
435
       <strong>$name_trial4:</strong>
7536 bpr 436
!set wims_ref_class=wims_formradio
3776 bpr 437
        !formradio specialhelp4 list 0,1,2,3,4,5 prompt $name_listhelp
12061 bpr 438
</li></ul>
7511 bpr 439
       <label for="helpprompt">$name_prompt : </label>
440
       <input size="5" name="helpprompt" id="helpprompt" value="$helpprompt" />
441
     </div>
2544 bpr 442
      !endif
443
      !if $type_exo iswordof TRUEFALSE GAP QUIFAITQUOI QCMIII
444
        !if $type_exo iswordof
7511 bpr 445
        !!$table_tr<td><i>
446
          <label for="choicetf">
7514 bpr 447
            <i>
2544 bpr 448
!record 28 of $my_dir
449
!!@#           Choix de réponses !!#@
7514 bpr 450
            </i>
7511 bpr 451
          </label>
452
!set wims_ref_class=wims_button_help float_right
2544 bpr 453
         !href target=wims_mhelp cmd=help&special_parm1=choice $wims_name_help
454
 !!!default choice_tf=vrai,faux
7511 bpr 455
           <input size="35" name="choice_tf" id="choice_tf" value="$choice_tf" />
2544 bpr 456
        !endif
457
        !!!if $type_exo iswordof QUIFAITQUOI
458
       !!    Les différents "qui"  </i>
459
!!!default choice_qq=Premier Personnage, Deuxième Personnage
7511 bpr 460
      !!     </td><td><input size="35" name="choice_qq" id="choice_qq" value="$choice_qq" />
2544 bpr 461
      !! !endif
462
       !if $type_exo iswordof GAP
7511 bpr 463
          <div class="field box">
464
            <label for="choice_gap">
2544 bpr 465
!!@#           Liste de mots proposés  !!#@
7514 bpr 466
<i>
2544 bpr 467
 !record 53 of $my_dir
7514 bpr 468
</i>
7511 bpr 469
           </label>
470
           !set wims_ref_class=wims_button_help float_right
2544 bpr 471
           !href target=wims_mhelp cmd=help&special_parm1=choice2 $wims_name_help
7511 bpr 472
           <input size="35" name="choice_gap" id="choice_gap" value="$choice_gap" />
473
         </div>
2544 bpr 474
       !endif
475
       !!if $type_exo iswordof QCMIII
476
       !!   Texte pour le feedback  </i>
477
       !!!default choice_fd=Vrai en effet, Faux en effet
7511 bpr 478
       !!   <input size="35" name="choice_fd" id="choice_fd" value="$choice_fd" />
2544 bpr 479
       !!!endif
480
     !endif
481
     !if $type_exo iswordof QUIFAITQUOI
7511 bpr 482
          <div class="field box">
12061 bpr 483
            <strong>Sens</strong>
7511 bpr 484
           !set wims_ref_class=wims_button_help float_right
485
           !href target=wims_mhelp cmd=help&special_parm1=sens $wims_name_help
7536 bpr 486
           !set wims_ref_class=wims_formradio
7511 bpr 487
           !formradio sens list 1,2,3 prompt $name_quifaitquoi
488
         </div>
489
         <div class="field box">
490
           <label for="aucune">
2544 bpr 491
!record 29 of $my_dir
492
!!@#         Phrase spécifique!!#@
7511 bpr 493
          </label>
494
 !set wims_ref_class=wims_button_help float_right
495
          !href target=wims_mhelp cmd=help&special_parm1=aucune $wims_name_help
496
          <input size="35" name="aucune" id="aucune" value="$aucune" />
497
         </div>
2544 bpr 498
     !endif
499
    !if $type_exo iswordof CORRESP
7511 bpr 500
        <div class="field box">
501
          <label for="taille_corr">
2544 bpr 502
!record 30 of $my_dir
503
!!@#       Taille des étiquettes !!#@
7511 bpr 504
          </label>
505
!set wims_ref_class=wims_button_help float_right
2544 bpr 506
!href target=wims_mhelp cmd=help&special_parm1=taille_corr $wims_name_help
7511 bpr 507
          <input size="15" name="taille_corr" id="taille_corr" value="$taille_corr" />
508
        </div>
2544 bpr 509
    !endif
510
    !if $type_exo iswordof GAP SELECTWORD SELECTWORDA SELECTWORDB
7511 bpr 511
       <div class="field box"><label for="taille_case">
2544 bpr 512
!record 31 of $my_dir
513
!!@#       Taille des cases !!#@
7536 bpr 514
</label>
7511 bpr 515
       !set wims_ref_class=wims_button_help float_right
2544 bpr 516
!href target=wims_mhelp cmd=help&special_parm1=taille_case $wims_name_help
7511 bpr 517
           <input size="15" name="taille_case" id="taille_case" value="$taille_case" />
7536 bpr 518
           <div class="formHelp">case</div>
7513 bpr 519
        !if $type_exo iswordof SELECTWORD
520
          <div class="formHelp">
521
!record 32 of $my_dir
522
!!@#         si question supplémentaire!!#@
523
          </div>
524
        !endif
525
 
526
</div>
2544 bpr 527
    !endif
528
    !if $type_exo iswordof COMPOSE
7511 bpr 529
        <div class="field box">
530
          <label for="taille_compose">
2544 bpr 531
!record 33 of $my_dir
532
!!@#       Taille de la zone d'écriture !!#@
7511 bpr 533
          </label>
534
!set wims_ref_class=wims_button_help float_right
2544 bpr 535
!href target=wims_mhelp cmd=help&special_parm1=taille_compose $wims_name_help
7511 bpr 536
           <input size="15" name="taille_compose" id="taille_compose" value="$taille_compose" />
537
        </div>
2544 bpr 538
    !endif
539
    !if $type_exo iswordof ORDONNE GAP SELECTWORD SELECTWORDA SELECTWORDB
7511 bpr 540
       <div class="field box">
541
         <label for="taille_drag">
2544 bpr 542
!record 34 of $my_dir
543
!!@#       Taille des étiquettes !!#@
7511 bpr 544
         </label>
545
       !set wims_ref_class=wims_button_help float_right
2544 bpr 546
!href target=wims_mhelp cmd=help&special_parm1=taille_drag $wims_name_help
547
       !if $type_exo iswordof SELECTWORD
7513 bpr 548
        !set wims_ref_class=wims_button_help float_right
549
        !href target=wims_mhelp cmd=help&special_parm1=supplement $wims_name_help
550
        !endif
551
       <input size="15" name="taille_drag" id="taille_drag" value="$taille_drag" />
7536 bpr 552
       !if $type_exo iswordof GAP SELECTWORDA SELECTWORDB
553
          <div class="formHelp">drag / click</div>
554
       !endif
7513 bpr 555
       !if $type_exo iswordof SELECTWORD
556
         <div class="formHelp">
7536 bpr 557
         drag / click
2544 bpr 558
!record 35 of $my_dir
7513 bpr 559
!!@#         si question supplémentaire !!#@
560
        </div>
561
      !endif
7511 bpr 562
    </div>
2544 bpr 563
    !endif
7511 bpr 564
    <div class="field box">
565
       <label for="instruction">
7514 bpr 566
        <i>
2544 bpr 567
!record 36 of $my_dir
568
!!@#   Consigne de l'exercice!!#@
7514 bpr 569
       </i>
7511 bpr 570
       </label>
571
 !set wims_ref_class=wims_button_help float_right
2544 bpr 572
!href target=wims_mhelp cmd=help&special_parm1=instruction $wims_name_help
7511 bpr 573
      <textarea class="nowrap" rows="4" cols="30" name="instruction" id="instruction">$instruction</textarea>
574
   </div>
2544 bpr 575
    !if $type_exo iswordof SELECTWORDB SELECTWORD
7513 bpr 576
       <div class="field box">
577
         <label for="instruction2">
7514 bpr 578
           <i>
2544 bpr 579
!record 37 of $my_dir
7513 bpr 580
!!@#      Consigne de l'exercice!!#@
7514 bpr 581
           </i>
7513 bpr 582
         </label>
583
         <div class="formHelp">
584
!record 32 of $my_dir
585
!!@#         si question supplémentaire!!#@
586
        </div>
587
        <textarea class="nowrap" rows="4" cols="30" name="instruction2" id="instruction2">$instruction2</textarea>
588
      </div>
2544 bpr 589
    !endif
590
    !!if $type_exo iswordof GAP
7511 bpr 591
      <div class="field box">
592
        <label for="packs">
7514 bpr 593
         <i>
2544 bpr 594
!record 38 of $my_dir
7442 bpr 595
!!@#    Paquets SWAC!!#@
7514 bpr 596
         </i>
7511 bpr 597
        </label>
598
!set wims_ref_class=wims_button_help float_right
599
      !href target=wims_mhelp cmd=help&special_parm1=swac $wims_name_help
5852 bpr 600
     !set wims_formselect_switch=multiple="multiple"
2544 bpr 601
     !formselect packs list $list_swac prompt $list_swac_prompt
602
     !set wims_formselect_switch=
7511 bpr 603
     </div>
2544 bpr 604
    !!endif
7513 bpr 605
    <div class="field box">
606
        <label for="player">
607
!record 50 of $my_dir
608
!!@#     Choix du lecteur mp3!!#@
609
 
610
        </label>
611
!set wims_ref_class=wims_button_help float_right
612
!href target=wims_mhelp cmd=help&special_parm1=player $wims_name_help
613
      !formselect player list $list_player
614
      <label for="player_option">
615
!record 51 of $my_dir
616
!!@# Taille du lecteur!!#@
617
      </label>
618
      <input size="20" name="player_option" id="player_option" value="$player_option" />
619
    </div>
7511 bpr 620
    </fieldset>
621
   <fieldset class="property_fields blockcenter">
622
    <legend>
7513 bpr 623
      <a id="expert"></a>$name_expert
7511 bpr 624
    </legend>
625
     <div class="field box">
12061 bpr 626
       <strong>
2544 bpr 627
!record 39 of $my_dir
628
!!@#    Fichier de lecture !!#@
12061 bpr 629
       </strong>
7511 bpr 630
!set wims_ref_class=wims_button_help float_right
2544 bpr 631
!href target=wims_mhelp cmd=help&special_parm1=reading $wims_name_help
7516 bpr 632
    !set wims_formradio_class=wims_button_help
2544 bpr 633
    !formradio reading_file1 list yes,no prompt $wims_name_yes,$wims_name_no
7511 bpr 634
    <ul>
635
     <li>
7514 bpr 636
       <label for="reading_file0"><i>$name_name_file</i></label>
7511 bpr 637
       <input size="15" name="reading_file0" id="reading_file0" value="$reading_file0" />
638
     </li>
639
     <li>
640
        <label for="reading_tag">$name_click</label>
641
        <input size="8" name="reading_tag" id="reading_tag" value="$reading_tag" />
642
     </li>
643
     <li>
7536 bpr 644
     !set wims_ref_class=wims_formradio
2544 bpr 645
      !formradio raw list 0,1 prompt $name_format_text
3066 bpr 646
      &nbsp;
647
      !set wims_ref_class=wims_button_help
2544 bpr 648
!href target=wims_mhelp cmd=help&special_parm1=raw $wims_name_help
7511 bpr 649
     </li>
650
    </ul>
651
    </div>
652
     <div class="field box">
12061 bpr 653
       <strong>
2544 bpr 654
!record 40 of $my_dir
655
!!@#    Fichier d'écoute !!#@
12061 bpr 656
      </strong>
7511 bpr 657
!set wims_ref_class=wims_button_help float_right
2544 bpr 658
!href target=wims_mhelp cmd=help&special_parm1=audio $wims_name_help
7516 bpr 659
!set wims_ref_class=wims_formradio
2544 bpr 660
    !formradio audio_file1 list yes,no prompt $wims_name_yes,$wims_name_no
7511 bpr 661
    <ul><li>
7514 bpr 662
        <label for="audio_file0">
663
         <i>
2544 bpr 664
!record 41 of $my_dir
665
!!@#        nom du fichier!!#@
7514 bpr 666
          </i>
7511 bpr 667
         </label>
668
         <input size="15" name="audio_file0" id="audio_file0" value="$audio_file0" />
669
     </li></ul>
670
     <div class="field box">
12061 bpr 671
       <strong>
2544 bpr 672
!record 42 of $my_dir
673
!!@#    Fichier video !!#@
12061 bpr 674
       </strong>
7511 bpr 675
!set wims_ref_class=wims_button_help float_right
2544 bpr 676
!href target=wims_mhelp cmd=help&special_parm1=video $wims_name_help
7516 bpr 677
!set wims_ref_class=wims_formradio
2544 bpr 678
    !formradio video_file1 list yes,no prompt $wims_name_yes,$wims_name_no
7511 bpr 679
      <ul><li>
680
       <label for="video_file0">
7514 bpr 681
         <i>
2544 bpr 682
!record 43 of $my_dir
683
!!@#    adresse url de la video!!#@
7514 bpr 684
         </i>
7511 bpr 685
       </label>
686
      <input size="15" name="video_file0" id="video_file0" value="$video_file0" />
687
      </li><li>
688
       <label for="video_tag">$name_click</label>
689
       <input size="8" name="video_tag" id="video_tag" value="$video_tag" />
690
      </ul>
691
    </div>
692
    <div class="field box">
12061 bpr 693
      <strong>
2544 bpr 694
!record 44 of $my_dir
695
!!@#    Fichiers d'images !!#@
12061 bpr 696
      </strong>
7511 bpr 697
!set wims_ref_class=wims_button_help float_right
2544 bpr 698
!href target=wims_mhelp cmd=help&special_parm1=image $wims_name_help
7516 bpr 699
!set wims_ref_class=wims_formradio
2544 bpr 700
    !formradio image_file1 list yes,no prompt $wims_name_yes,$wims_name_no
7511 bpr 701
    <ul><li>
702
       <label for="image_file0">
7514 bpr 703
         <i>
2544 bpr 704
!record 45 of $my_dir
705
!!@#     nom du fichier!!#@
7514 bpr 706
         </i>
7511 bpr 707
     </label>
708
      <input size="15" name="image_file0" id="image_file0" value="$image_file0" />
709
     </li><li>
710
     <label for="image_tag">$name_click</label>
711
     <input size="8" name="image_tag" id="image_tag" value="$image_tag" />
712
    </div>
7536 bpr 713
  </fieldset>
714
  <fieldset class="property_fields blockcenter">
715
    <legend>CSS</legend>
7511 bpr 716
    <div class="field box">
717
      <label for="style_question">
2544 bpr 718
!record 46 of $my_dir
719
!!@#    Style css de la question !!#@
7511 bpr 720
      </label>
721
!set wims_ref_class=wims_button_help float_right
2544 bpr 722
!href target=wims_mhelp cmd=help&special_parm1=css $wims_name_help
7511 bpr 723
      <textarea class="nowrap" rows="2" cols="30" name="style_question" id="style_question">$style_question</textarea>
724
    </div>
725
    <div class="field box">
726
      <label for="style_reponse">
2544 bpr 727
!record 47 of $my_dir
728
!!@#   Style css des réponses ou indications !!#@
7511 bpr 729
      </label>
730
!set wims_ref_class=wims_button_help float_right
2544 bpr 731
!href target=wims_mhelp cmd=help&special_parm1=css $wims_name_help
7511 bpr 732
    <textarea class="nowrap" rows="2" cols="30" name="style_reponse" id="style_reponse">$style_reponse</textarea>
3066 bpr 733
 !!   <tr bgcolor="$c_expert"><td><label for="style_oef">Style css général de l'exercice &nbsp;.oefstatement]</td><td>
6594 bpr 734
 !!   <textarea class="nowrap" rows="2" cols="30" name="style_oef" id="style_oef">$style_oef</textarea> </td></tr>
7511 bpr 735
    </div>
736
    <div class="field box">
737
      <label for="style_css">
2544 bpr 738
!record 48 of $my_dir
739
!!@#    Style css  !!#@
7511 bpr 740
     </label>
741
!set wims_ref_class=wims_button_help float_right
2544 bpr 742
!href target=wims_mhelp cmd=help&special_parm1=css1 $wims_name_help
7511 bpr 743
      <textarea class="nowrap" rows="2" cols="30" name="style_css" id="style_css">$style_css</textarea>
744
    </div>
7442 bpr 745
   !if $type_exo iswordof GAP SELECTWORD SELECTWORDA SELECTWORDB
7511 bpr 746
    <div class="field box">
12061 bpr 747
      <strong>
2544 bpr 748
!record 49 of $my_dir
749
!!@#       "Copier-Coller" possible!!#@
12061 bpr 750
      </strong>
7511 bpr 751
!set wims_ref_class=wims_button_help float_right
752
!href target=wims_mhelp cmd=help&special_parm1=nopaste $wims_name_help
7516 bpr 753
!set wims_ref_class=wims_formradio
2544 bpr 754
        !formradio paste list yes,no prompt $wims_name_yes,$wims_name_no
7511 bpr 755
       </div>
2544 bpr 756
     !endif
757
    !if $type_exo iswordof QCM
7511 bpr 758
       <div class="field box">
759
         <label for="qcm_prompt1">$name_prompt</label>
760
       !set wims_ref_class=wims_button_help float_right
2544 bpr 761
!href target=wims_mhelp cmd=help&special_parm1=prompts $wims_name_help
3066 bpr 762
&nbsp;
6594 bpr 763
        <textarea class="nowrap" rows="1" cols="20" name="qcm_prompt1" id="qcm_prompt1">$qcm_prompt1</textarea>
764
        <textarea class="nowrap" rows="1" cols="20" name="qcm_prompt2" id="qcm_prompt2">$qcm_prompt2</textarea>
765
        <textarea class="nowrap" rows="1" cols="20" name="good_answer_text" id="good_answer_text">$good_answer_text</textarea>
766
        <textarea class="nowrap" rows="1" cols="20" name="bad_answer_text" id="bad_answer_text">$bad_answer_text</textarea>
767
        <textarea class="nowrap" rows="1" cols="20" name="incomplete_answer_text" id="incomplete_answer_text">$incomplete_answer_text</textarea>
7511 bpr 768
       </div>
7442 bpr 769
     !endif
7511 bpr 770
  </fieldset>
2544 bpr 771
    !set transfert=
7442 bpr 772
  !endif
2544 bpr 773
!endif
7511 bpr 774
<div class="wimscenter wimsform"><input type="submit" $balise_obl value="$wims_name_tosave" /></div>
2544 bpr 775
 
5928 bpr 776
 
777
!formend