Subversion Repositories wimsdev

Rev

Rev 2071 | Go to most recent revision | Details | 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
Forgotten document code
48
 !exit
49
!endif
50
 
51
!if $error = unauthorized
52
 你无权读/写你请求的文件.
53
 !exit
54
!endif
55
 
56
!if $error = bad_data
57
 你的某些定义不正确, 请改正.
58
 !exit
59
!endif
60
 
61
!if $error = class_no_right
62
 对不起, 你的请求被拒绝. 请与班级主持教师核对.
63
 !exit
64
!endif
65
 
66
!if $error = small_code
67
 密码太短.
68
 !exit
69
!endif
70
 
71
!if $error = big_code
72
 密码太长.
73
 !exit
74
!endif
75
 
76
!if $error = code_discord
77
 <b>注意</b>. 你两次输入两个不同的密码. 请重试.
78
 !exit
79
!endif
80
 
81
!if $error = bad_newcode
82
 你的密码含有违禁字符. 请只使用字母或数字.
83
 !exit
84
!endif
85
 
86
!if $error = bad_oldcode
87
 你没有给出正确的旧密码. 请再试一次.
88
 !exit
89
!endif
90
 
91
!if $error = deposit_fail
92
 对不起, 我没有得到你的有效文件. 核对你的文件名.
93
 !exit
94
!endif
95
 
96
!if $error = deposit_binary
97
 你递交了一个二进制文件 <tt>$wims_deposit</tt>!
98
 我不能使用它. 请发送一个好的文本文件.
99
 !exit
100
!endif
101
 
102
!if $error = src_too_long
103
 你的块 <tt>$block</tt> 不被接受, 因为它超过了长度极限
104
($max_blocklen 字节). 你可以将它分割成几块.
105
 !exit
106
!endif
107
 
108
!if $error = file_too_long
109
 你的 LaTeX 不被接受, 因为它超过了长度极限 ($max_texlen 字节).
110
 不过, 你可以把它分割成几块, 然后一一递交到不同的块里.
111
 !exit
112
!endif
113
 
114
!if $error = no_latex2html
115
 对不起, 本服务器不能接受 LaTeX 文件, 因为没有安装 LaTeX2HTML 软件.
116
 请在你的本地机器上运行 LaTeX2HTML, 再递交得到的 html 文件.
117
 !exit
118
!endif
119
 
120
!msg $error
121