mirror of
https://github.com/yacy/yacy_search_server.git
synced 2025-04-18 18:18:49 -04:00
WatchWebStructure_p.html: Added JS verification of RGB color codes (currently only RGB value is checked but this could be enhanced to also check for websafe colors) git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7195 6c8d7289-2bf4-0310-a012-ef5d649a1542
36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>YaCy: Error Message</title>
|
|
#%env/templates/metas.template%#
|
|
</head>
|
|
<body id="error">
|
|
<div class="head">
|
|
<h3 class="head">YaCy</h3>
|
|
</div>
|
|
<div class="content">
|
|
<p>request: <span class="settingsValue">#[requestMethod]# #[requestURL]#</span></p>
|
|
<p class="tt">#[httpStatus]#</p>
|
|
#(errorMessageType)#
|
|
<!-- 0 --><p><strong>unspecified error</strong></p>
|
|
::<!-- 1 --><p><strong>not-yet-assigned error</strong></p>
|
|
::<!-- 2 --><p><strong>You don't have an active internet connection. Please go online.</strong></p>
|
|
::<!-- 3 --><p><strong>Could not load resource. The file is not available.</strong></p>
|
|
::<!-- 4 --><p><strong>#[detailedErrorMsg]#</strong></p>
|
|
::<!-- 5 -->
|
|
#%[file]%#
|
|
#(/errorMessageType)#
|
|
|
|
#(printStackTrace)#::
|
|
<hr />
|
|
<p class="tt error"><em>Exception occurred</em>: <strong>#[exception]#</strong></p>
|
|
<pre class="tt error"><em>TRACE</em>:
|
|
#[stacktrace]#</pre>
|
|
#(/printStackTrace)#
|
|
|
|
<hr />
|
|
<p>Generated #[date]# by #[peerName]#.yacy</p>
|
|
</div>
|
|
</body>
|
|
</html>
|