Subversion Repositories wimsdev

Rev

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