Rev 2389 | Rev 3985 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
23 | reyssat | 1 | !set wims_module_log=error: $error |
2 | |||
3 | <b>Error</b>. |
||
4 | |||
5 | !if bad_auth iswordof $error |
||
6 | Authentification failed. Please try again. |
||
7 | !exit |
||
8 | !endif |
||
9 | |||
10 | !if bad_pass iswordof $error |
||
11 | Bad password: it must contain only letters and digits, between |
||
12 | 4 and 16 characters. And the repeat password should be equal to the |
||
13 | first one! Try again. |
||
14 | !exit |
||
15 | !endif |
||
16 | |||
17 | !if empty_data iswordof $error |
||
18 | Please fill in the definition of |
||
3422 | bpr | 19 | <b><em><font color="red">$(name_$empty_data)</font></em></b> |
23 | reyssat | 20 | of your module. |
21 | !exit |
||
22 | !endif |
||
23 | |||
24 | !if bad_fname iswordof $error |
||
25 | Illegal file name. Please choose another name for your file. |
||
26 | !exit |
||
27 | !endif |
||
28 | |||
29 | !if binary_file iswordof $error |
||
30 | Binary file is not allowed here. |
||
31 | !exit |
||
32 | !endif |
||
33 | |||
34 | !if illegal_filedesc iswordof $error |
||
35 | You cannot put anything else than straightforward definitions in filedesc. |
||
36 | !exit |
||
37 | !endif |
||
38 | |||
39 | !if badoriginal iswordof $error |
||
40 | This module cannot be copied. |
||
41 | !exit |
||
42 | !endif |
||
43 | |||
44 | !if clash iswordof $error |
||
45 | Target module already exists. |
||
46 | !exit |
||
47 | !endif |
||
48 | |||
49 | !if badtarget iswordof $error |
||
50 | Target module address is bad: too long, too short, incomplete, or illegal |
||
51 | characters. |
||
52 | !exit |
||
53 | !endif |
||
54 | |||
55 | !if symlink iswordof $error |
||
56 | The source module cannot be copied because it contains symbolic links. |
||
57 | !exit |
||
58 | !endif |
||
59 | |||
60 | !msg $error |
||
61 |