Subversion Repositories wimsdev

Rev

Rev 20 | Rev 2890 | 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
 
3
<b>错误</b>.
4
 
5
!if $error = doc_not_exist
6
 你请求的文件不(或不再)存在.
7
 !exit
8
!endif
9
 
10
!if $error = abuse
11
 你的文件有一个奇怪的标题! 你能肯定要创建一个认真的文件吗?
12
 <p>
13
 <b>注意</b>! 滥用服务器的人将被禁止进入.
14
 !exit
15
!endif
16
 
17
!if $error = quota
18
 你不再能修改此文件, 因为它的内容超过了硬盘空间的限制.
19
 !exit
20
!endif
21
 
22
!if $error = quota_file
23
 不能接受文件的储存, 因为没有足够的硬盘空间.
24
 !exit
25
!endif
26
 
27
!if $error = no_tit
28
 请给出你的文件的标题.
29
 !exit
30
!endif
31
 
32
!if $error = no_author
33
 你没有给出文件的作者.
34
 !exit
35
!endif
36
 
37
!if $error = bad_email
38
 你的电子邮件地址有问题, 请改正.
39
 !exit
40
!endif
41
 
42
!if $error = bad_code
43
 对不起, 密码不符. 你无权读/写你请求的文件.
44
 <p>
45
 如果你忘记了你的文件的密码, 请写信给
46
!mailurl $wims_site_manager 网站管理员\
47
 !exit
48
!endif
49
 
50
!if $error = unauthorized
51
 你无权读/写你请求的文件.
52
 !exit
53
!endif
54
 
55
!if $error = bad_data
56
 你的某些定义不正确, 请改正.
57
 !exit
58
!endif
59
 
60
!if $error = class_no_right
61
 对不起, 你的请求被拒绝. 请与班级主持教师核对.
62
 !exit
63
!endif
64
 
65
!if $error = small_code
66
 密码太短.
67
 !exit
68
!endif
69
 
70
!if $error = big_code
71
 密码太长.
72
 !exit
73
!endif
74
 
75
!if $error = code_discord
76
 <b>注意</b>. 你两次输入两个不同的密码. 请重试.
77
 !exit
78
!endif
79
 
80
!if $error = bad_newcode
81
 你的密码含有违禁字符. 请只使用字母或数字.
82
 !exit
83
!endif
84
 
85
!if $error = bad_oldcode
86
 你没有给出正确的旧密码. 请再试一次.
87
 !exit
88
!endif
89
 
90
!if $error = deposit_fail
91
 对不起, 我没有得到你的有效文件. 核对你的文件名.
92
 !exit
93
!endif
94
 
95
!if $error = deposit_binary
96
 你递交了一个二进制文件 <tt>$wims_deposit</tt>!
97
 我不能使用它. 请发送一个好的文本文件.
98
 !exit
99
!endif
100
 
101
!if $error = src_too_long
102
 你的块 <tt>$block</tt> 不被接受, 因为它超过了长度极限
103
($max_blocklen 字节). 你可以将它分割成几块.
104
 !exit
105
!endif
106
 
107
!if $error = file_too_long
108
 你的 LaTeX 不被接受, 因为它超过了长度极限 ($max_texlen 字节).
109
 不过, 你可以把它分割成几块, 然后一一递交到不同的块里.
110
 !exit
111
!endif
112
 
113
!if $error = no_latex2html
114
 对不起, 本服务器不能接受 LaTeX 文件, 因为没有安装 LaTeX2HTML 软件.
115
 请在你的本地机器上运行 LaTeX2HTML, 再递交得到的 html 文件.
116
 !exit
117
!endif
118
 
119
!msg $error
120