1a107601fa490ca69215facceebe3d0dc5e7f1f86bcef0037bdb2d139a15065c3f31e872bae79df3
 
 
1
## The contents of this file are subject to the Common Public Attribution
 
 
2
## License Version 1.0. (the "License"); you may not use this file except in
 
 
3
## compliance with the License. You may obtain a copy of the License at
 
 
4
## http://code.reddit.com/LICENSE. The License is based on the Mozilla Public
 
 
5
## License Version 1.1, but Sections 14 and 15 have been added to cover use of
 
 
6
## software over a computer network and provide for limited attribution for the
 
 
7
## Original Developer. In addition, Exhibit A has been modified to be consistent
 
 
8
## with Exhibit B.
 
 
9
## 
 
 
10
## Software distributed under the License is distributed on an "AS IS" basis,
 
 
11
## WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
 
 
12
## the specific language governing rights and limitations under the License.
 
 
13
## 
 
 
14
## The Original Code is Reddit.
 
 
15
## 
 
 
16
## The Original Developer is the Initial Developer.  The Initial Developer of
 
 
17
## the Original Code is CondeNet, Inc.
 
 
18
## 
 
 
19
## All portions of the code written by CondeNet are Copyright (c) 2006-2008
 
 
20
## CondeNet, Inc. All Rights Reserved.
 
 
21
################################################################################
 
 
22
<% error = thing.error %>
 
 
23
<li>
 
 
24
  %if hasattr(error,'line'):
 
 
25
    <a href="javascript:gotoTextboxLine('stylesheet_contents',${error.line})">
 
 
26
      [line ${error.line}]
 
 
27
  %endif
 
 
28
 
 
 
29
      ${error.message}
 
 
30
 
 
 
31
  %if hasattr(error,'offending_line'):
 
 
32
    <div>
 
 
33
      <tt>
 
 
34
        <pre>${error.offending_line}</pre>
 
 
35
      </tt>
 
 
36
    </div>
 
 
37
  %endif
 
 
38
 
 
 
39
  %if hasattr(error,'line'):
 
 
40
    </a>
 
 
41
  %endif
 
 
42
 
 
 
43
</li>