Rev 5903 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
20 | reyssat | 1 | !set wims_module_log=error: $error |
2 | |||
2890 | bpr | 3 | <b>$wims_name_Error</b>. |
20 | reyssat | 4 | |
5 | !if $error = doc_not_exist |
||
6 | The document you asked for does not (no longer) exist. |
||
7 | !exit |
||
8 | !endif |
||
9 | |||
10 | !if $error = abuse |
||
11 | Your document has a strange title! Are you sure that you want to create a |
||
12 | serious document? |
||
13 | <p> |
||
14 | <b>Attention</b> ! Those abusing the server will be refused access. |
||
15 | !exit |
||
16 | !endif |
||
17 | |||
18 | !if $error = quota |
||
19 | You can no longer modify this document, because its content has exceeded |
||
20 | the disk space allowance. |
||
21 | !exit |
||
22 | !endif |
||
23 | |||
24 | !if $error = quota_file |
||
25 | File deposit is not accepted because there is not enough available disk |
||
26 | space for your document. |
||
27 | !exit |
||
28 | !endif |
||
29 | |||
30 | !if $error = no_tit |
||
31 | Please give a title to your document. |
||
32 | !exit |
||
33 | !endif |
||
34 | |||
35 | !if $error = no_author |
||
36 | You haven't defined the author of the document. |
||
37 | !exit |
||
38 | !endif |
||
39 | |||
40 | !if $error = bad_email |
||
41 | Your email address does not seem to be valid! Please correct it. |
||
42 | !exit |
||
43 | !endif |
||
44 | |||
45 | !if $error = bad_code |
||
46 | Sorry, but the secret code doesn't match. You don't have the right to |
||
47 | read/write the document you asked for. |
||
48 | <p> |
||
49 | Please |
||
50 | !mailurl $wims_site_manager write to the site manager\ |
||
51 | Forgotten document code |
||
52 | if you have forgotten the secret code of your |
||
53 | document. |
||
54 | !exit |
||
55 | !endif |
||
56 | |||
57 | !if $error = unauthorized |
||
58 | You don't have the right to read/write the document you asked for. |
||
59 | !exit |
||
60 | !endif |
||
61 | |||
62 | !if $error = bad_data |
||
63 | Some of your definitions are not correct. Please correct. |
||
64 | !exit |
||
65 | !endif |
||
66 | |||
67 | !if $error = class_no_right |
||
68 | Sorry but your request is not allowed. Please verify with the supervisor |
||
69 | of this class. |
||
70 | !exit |
||
71 | !endif |
||
72 | |||
73 | !if $error = small_code |
||
74 | The secret code is too short. |
||
75 | !exit |
||
76 | !endif |
||
77 | |||
78 | !if $error = big_code |
||
79 | The secret code is too long. |
||
80 | !exit |
||
81 | !endif |
||
82 | |||
83 | !if $error = code_discord |
||
84 | <b>Attention</b>. You have typed two different secret codes in two times. |
||
85 | Please try again. |
||
86 | !exit |
||
87 | !endif |
||
88 | |||
89 | !if $error = bad_newcode |
||
90 | Your secret code contains forbidden characters. Please use only |
||
91 | alpha-numeric characters. |
||
92 | !exit |
||
93 | !endif |
||
94 | |||
95 | !if $error = bad_oldcode |
||
96 | You haven't given the correct old secret code. Please try again. |
||
97 | !exit |
||
98 | !endif |
||
99 | |||
100 | !if $error = deposit_fail |
||
101 | Sorry but I have got no valid file from you. Verify your filename. |
||
102 | !exit |
||
103 | !endif |
||
104 | |||
105 | !if $error = deposit_binary |
||
5903 | bpr | 106 | You have submitted a binary file <span class="tt">$wims_deposit</span>! |
20 | reyssat | 107 | I cannot use it. Please send a good text file. |
108 | !exit |
||
109 | !endif |
||
110 | |||
111 | !if $error = src_too_long |
||
5903 | bpr | 112 | Your block <span class="tt">$block</span> cannot be accepted because it has exceeded length |
20 | reyssat | 113 | limit ($max_blocklen bytes). You can cut it into several blocks. |
114 | !exit |
||
115 | !endif |
||
116 | |||
117 | !if $error = file_too_long |
||
118 | Your LaTeX file cannot be accepted because it has exceeded length |
||
119 | limit ($max_texlen bytes). |
||
120 | However, you can cut it into parts, and submit |
||
121 | them one by one into different blocks. |
||
122 | !exit |
||
123 | !endif |
||
124 | |||
125 | !if $error = no_latex2html |
||
7681 | bpr | 126 | Sorry, but the submission of LaTeX files cannot be done on this server, |
20 | reyssat | 127 | because the software LaTeX2HTML is not installed on the server. |
7681 | bpr | 128 | Please try to run LaTeX2HTML on your local computer, |
20 | reyssat | 129 | then submit the resulting html file. |
130 | !exit |
||
131 | !endif |
||
132 | |||
133 | !msg $error |