OSDN Git Service

65531187e673506d1fa2430d5f0f7c7aba672fe9
[feedblog/feedgenerator.git] / erbtemp / exception.html.erb
1 <html>
2     <head>
3         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
4         <title><%= APPTITLE %></title>
5         <link rel="stylesheet" href="./erbtemp/stylesheet.css" type="text/css">
6     </head>
7     <body>
8         <div class="divstyle" style="width: <%= TABLEWIDTH %>px;">
9             <table align="center">
10                 <tbody>
11                     <tr>
12                         <td style="width: <%= (TABLEWIDTH - 20) %>px;" class="formnavi">
13                             ■ エラーが発生しました!アプリケーションの設定を見直してください。
14                             <br>
15                         </td>
16                     </tr>
17                     <tr>
18                         <td class="forminput">
19                             ▼ エラー詳細 :
20                             <br>
21                             <table>
22                                 <tbody>
23                                     <tr>
24                                         <td style="color: #ff0000; width: <%= (TABLEWIDTH - 30) %>px;" class="forminput">
25                                             <%= CGI.escapeHTML(exception.to_s).gsub("\n", "<br>") %>
26                                         </td>
27                                     </tr>
28                                 </tbody>
29                             </table>
30                             ▼ バックトレース :
31                             <br>
32                             <table>
33                                 <tbody>
34                                     <tr>
35                                         <td style="color: #ff0000; width: <%= (TABLEWIDTH - 30) %>px;" class="forminput">
36                                             <% exception.backtrace.each do |val| %>
37                                             <%= CGI.escapeHTML(val.to_s) + "<br>" %>
38                                             <% end %>
39                                         </td>
40                                     </tr>
41                                 </tbody>
42                             </table>
43                             <br>
44                             <div style="text-align: center; width: 100%;">
45                                 [ <a href="<%= cgi.script_name %>?mode=logout">ログアウトする</a>
46                                 ]
47                             </div>
48                                                         <br>
49                         </td>
50                     </tr>
51                 </tbody>
52             </table>
53         </div>
54         <br>
55         <div class="divstyle" style="border: none;">
56             <%= APPVERSION %>
57         </div>
58     </body>
59 </html>