init files
Dieser Commit ist enthalten in:
Ursprung
b35691013e
Commit
96d6aa23c6
19 geänderte Dateien mit 1572 neuen und 0 gelöschten Zeilen
36
templates/standard/template.linkchecker_noerrors.html
Normale Datei
36
templates/standard/template.linkchecker_noerrors.html
Normale Datei
|
|
@ -0,0 +1,36 @@
|
|||
<html>
|
||||
|
||||
<head>
|
||||
<title>Linkchecker</title>
|
||||
<link rel="stylesheet" type="text/css" href="styles/contenido.css" />
|
||||
</head>
|
||||
|
||||
<body style="margin:10px">
|
||||
|
||||
<table width="100%" style="border: 1px solid #B5B5B5;" cellspacing="0" cellpadding="3" border="0">
|
||||
<tr class="text_medium" style="height:25px;">
|
||||
<td style="background-color: #E2E2E2; colspan="3">
|
||||
<a href="{INTERNS_HREF}" alt="{INTERNS_LABEL}" title="{INTERNS_LABEL}" style="margin-left:10px;">{INTERNS_LABEL}<img style="vertical-align:middle; margin-left:5px;" src="images/submit.gif" border="0"></a>
|
||||
<a href="{EXTERNS_HREF}" alt="{EXTERNS_LABEL}" title="{EXTERNS_LABEL}" style="margin-left:15px;">{EXTERNS_LABEL}<img style="vertical-align:middle; margin-left:5px;" src="images/submit.gif" border="0"></a>
|
||||
<a href="{INTERNS_EXTERNS_HREF}" alt="{INTERNS_EXTERNS_LABEL}" title="{INTERNS_EXTERNS_LABEL}" style="margin-left:15px;">{INTERNS_EXTERNS_LABEL}<img style="vertical-align:middle; margin-left:5px;" src="images/submit.gif" border="0"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div style="padding-top:10px;"></div>
|
||||
|
||||
<table cellspacing="0" cellpadding="2" border="0">
|
||||
<tr valign="middle">
|
||||
<td><h2>{TITLE}</h2></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding-top:5px; padding-bottom:15px; vertical-align:middle;">
|
||||
<a href="{UPDATE_HREF}"><img src="images/but_refresh.gif" style="margin-right:3px; vertical-align:middle;" title="i18n('Refresh')" alt="i18n('Refresh')"></a>
|
||||
<a href="{UPDATE_HREF}">i18n('Refresh')</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="middle">
|
||||
<td class="text_medium">{NO_ERRORS}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body></html>
|
||||
202
templates/standard/template.linkchecker_test.html
Normale Datei
202
templates/standard/template.linkchecker_test.html
Normale Datei
|
|
@ -0,0 +1,202 @@
|
|||
<html>
|
||||
|
||||
<head>
|
||||
<title>Linkchecker</title>
|
||||
<link rel="stylesheet" type="text/css" href="styles/contenido.css" />
|
||||
<link rel="stylesheet" type="text/css" href="styles/tip_balloon.css" />
|
||||
<script type="text/javascript" src="scripts/rowMark.js"></script>
|
||||
<script type="text/javascript" src="scripts/general.js"></script>
|
||||
<script type="text/javascript" src="scripts/browserCheck.js"></script>
|
||||
<script type="text/javascript" src="scripts/cfoldingrow.js"></script>
|
||||
<script type="text/javascript" src="scripts/jquery/jquery.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
function toggleTableBody(tableId)
|
||||
{
|
||||
|
||||
var collapseButton = 'images/close_all.gif';
|
||||
var expandButton = 'images/open_all.gif';
|
||||
var curTable = document.getElementById(tableId);
|
||||
var curButton = document.getElementById(tableId+'_img');
|
||||
|
||||
if(curTable.style.display == "inline" || curTable.style.display == "")
|
||||
{
|
||||
curTable.style.display = "none";
|
||||
curButton.src = expandButton;
|
||||
}
|
||||
else if(curTable.style.display == "none")
|
||||
{
|
||||
curTable.style.display = "inline";
|
||||
curButton.src = collapseButton;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body style="margin: 10px">
|
||||
|
||||
<script type="text/javascript" src="scripts/wz_tooltip.js"></script>
|
||||
<script type="text/javascript" src="scripts/tip_balloon.js"></script>
|
||||
|
||||
<a href="javascript:location.reload()" accesskey="s"></a>
|
||||
|
||||
<table width="100%" style="border: 1px solid #B5B5B5;" cellspacing="0" cellpadding="3" border="0">
|
||||
<tr class="text_medium" style="height:25px;line-height:25px;">
|
||||
<td style="background-color: #E2E2E2; colspan="3">
|
||||
<a href="{INTERNS_HREF}" alt="{INTERNS_LABEL}" title="{INTERNS_LABEL}" style="margin-left:10px;">{INTERNS_LABEL}<img style="vertical-align:middle; margin-left:5px;" src="images/submit.gif" border="0"></a>
|
||||
<a href="{EXTERNS_HREF}" alt="{EXTERNS_LABEL}" title="{EXTERNS_LABEL}" style="margin-left:15px;">{EXTERNS_LABEL}<img style="vertical-align:middle; margin-left:5px;" src="images/submit.gif" border="0"></a>
|
||||
<a href="{INTERNS_EXTERNS_HREF}" alt="{INTERNS_EXTERNS_LABEL}" title="{INTERNS_EXTERNS_LABEL}" style="margin-left:15px;">{INTERNS_EXTERNS_LABEL}<img style="vertical-align:middle; margin-left:5px;" src="images/submit.gif" border="0"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div style="padding-top:10px;"></div>
|
||||
|
||||
<table cellspacing="0" cellpadding="2" border="0">
|
||||
<tr valign="middle">
|
||||
<td><h2>{TITLE}</h2></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding-top:5px; padding-bottom:15px; vertical-align:middle;">
|
||||
<a href="{UPDATE_HREF}"><img src="images/but_refresh.gif" style="margin-right:3px; vertical-align:middle;" title="i18n('Refresh')" alt="i18n('Refresh')"></a>
|
||||
<a href="{UPDATE_HREF}">i18n('Refresh')</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table width="100%" style="border-left: 1px solid #B5B5B5;" cellspacing="0" cellpadding="3" border="0">
|
||||
<tr class="text_medium">
|
||||
<td style="background-color: #CCCCCC; border: 1px solid #B5B5B5; border-left: 0px; width: 20%;">{ERRORS_HEADLINE}:</td>
|
||||
<td style="background-color: #E2E2E2; border: 1px solid #B5B5B5; border-left: 0px; border-right: 0px; width: 10%;">{ERRORS_COUNT_CHECKED}
|
||||
<td style="background-color: #E2E2E2; border: 1px solid #B5B5B5; border-left: 0px; width: 70%;">{ERRORS_HELP_ERRORS}: <span style="color: #FF0000;">{ERRORS_COUNT_ERRORS} ({ERRORS_COUNT_ERRORS_PERCENT} %)</span></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<div style="margin-top: 20px"></div>
|
||||
|
||||
|
||||
<table width="100%" style="border-left: 1px solid #B5B5B5;" cellspacing="0" cellpadding="3" border="0">
|
||||
<tr class="text_medium" style="background-color: #E2E2E2;">
|
||||
<td nowrap="nowrap" valign="top" style="color: #666666; border: 1px solid #B5B5B5; border-left: 0px; white-space:nowrap; width: 20%;"><a style="color: #666666;" href="{URL}main.php?area=linkchecker&frame=4&contenido={SID}&action=linkchecker&mode={MODE}&sort=nameart">{ERRORS_HEADLINE_ARTICLE}</a> (ID)</td>
|
||||
<td nowrap="nowrap" valign="top" style="color: #666666; border: 1px solid #B5B5B5; border-left: 0px; white-space:nowrap; width: 20%;"><a style="color: #666666;" href="{URL}main.php?area=linkchecker&frame=4&contenido={SID}&action=linkchecker&mode={MODE}&sort=namecat">{ERRORS_HEADLINE_CATNAME}</a> (ID)</td>
|
||||
<td nowrap="nowrap" valign="top" style="color: #666666; border: 1px solid #B5B5B5; border-left: 0px; white-space:nowrap; width: 40%;"><a style="color: #666666;" href="{URL}main.php?area=linkchecker&frame=4&contenido={SID}&action=linkchecker&mode={MODE}&sort=wronglink">{ERRORS_HEADLINE_LINK}</a></td>
|
||||
<td nowrap="nowrap" valign="top" style="color: #666666; border: 1px solid #B5B5B5; border-left: 0px; white-space:nowrap; width: 10%;"><a style="color: #666666;" href="{URL}main.php?area=linkchecker&frame=4&contenido={SID}&action=linkchecker&mode={MODE}&sort=error_type">{ERRORS_HEADLINE_DESCRIPTION}</a></td>
|
||||
<td nowrap="nowrap" valign="top" style="color: #666666; border: 1px solid #B5B5B5; border-left: 0px; white-space:nowrap; text-align: center; width: 10%;">{ERRORS_HEADLINE_WHITELIST}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<div style="margin-top: 10px"></div>
|
||||
|
||||
|
||||
<!-- ######################### -->
|
||||
<!-- ### Links to Articles ### -->
|
||||
<!-- ######################### -->
|
||||
<div style="margin-bottom: 10px">
|
||||
<!-- Table Head -->
|
||||
<table width="100%" style="border: 1px solid #B5B5B5;background-color: #F1F1F1;">
|
||||
<tr>
|
||||
<td>
|
||||
<strong>{ERRORS_HEADLINE_LINKS_ARTICLES}</strong> ({ERRORS_COUNT_ERRORS_ART})
|
||||
</td>
|
||||
<td align="center" style="padding:0;width:22px;">
|
||||
<a href="#" onclick="javascript:toggleTableBody('{ID_LINKS_ARTICLES}')" style="height:1em;line-height:1em;width:100%;height:100%;display:block;"><img style="padding-top:5px" src="images/close_all.gif" id = "{ID_LINKS_ARTICLES}_img"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- Table Body -->
|
||||
<div id="{ID_LINKS_ARTICLES}">
|
||||
<table width="100%" style="border: 1px solid #B5B5B5;border-top:none;" cellspacing="0" cellpadding="3" border="0">
|
||||
{ERRORS_SHOW_ART}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- ##################################### -->
|
||||
<!-- ### Links to Documents and Images ### -->
|
||||
<!-- ##################################### -->
|
||||
<div style="margin-bottom: 10px">
|
||||
<!-- Table Head -->
|
||||
<table width="100%" style="border: 1px solid #B5B5B5;background-color: #F1F1F1;">
|
||||
<tr >
|
||||
<td>
|
||||
<strong>{ERRORS_HEADLINE_LINKS_DOCIMAGES}</strong> ({ERRORS_COUNT_ERRORS_DOCIMAGES})
|
||||
</td>
|
||||
<td align="center" style="padding:0;width:22px;">
|
||||
<a href="#" onclick="javascript:toggleTableBody('{ID_LINKS_DOCSIMGS}')" style="height:1em;line-height:1em;width:100%;height:100%;display:block;"><img style="padding-top:5px" src="images/close_all.gif" id = "{ID_LINKS_DOCSIMGS}_img"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- Table Body -->
|
||||
<div id="{ID_LINKS_DOCSIMGS}">
|
||||
<table width="100%" style="border: 1px solid #B5B5B5;border-top:none;" cellspacing="0" cellpadding="3" border="0">
|
||||
{ERRORS_SHOW_DOCIMAGES}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- ############################### -->
|
||||
<!-- ### Links to external sites ### -->
|
||||
<!-- ############################### -->
|
||||
<div style="margin-bottom: 20px">
|
||||
<!-- Table Head -->
|
||||
<table width="100%" style="border: 1px solid #B5B5B5;background-color: #F1F1F1;">
|
||||
<tr >
|
||||
<td>
|
||||
<strong>{ERRORS_HEADLINE_OTHERS}</strong> ({ERRORS_COUNT_ERRORS_OTHERS})
|
||||
</td>
|
||||
<td align="center" style="padding:0;width:22px;">
|
||||
<a href="#" onclick="javascript:toggleTableBody('{ID_LINKS_EXTERNAL}')" style="height:1em;line-height:1em;width:100%;height:100%;display:block;"><img style="padding-top:5px" src="images/close_all.gif" id = "{ID_LINKS_EXTERNAL}_img"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- Table Body -->
|
||||
<div id="{ID_LINKS_EXTERNAL}">
|
||||
<table width="100%" style="border: 1px solid #B5B5B5;border-top:none;" cellspacing="0" cellpadding="3" border="0">
|
||||
{ERRORS_SHOW_OTHERS}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<table width="100%" style="border-left: 1px solid #B5B5B5;" cellspacing="0" cellpadding="3" border="0">
|
||||
<tr class="text_medium" style="background-color: #E2E2E2;">
|
||||
<td nowrap="nowrap" valign="top" style="color: #666666; border: 1px solid #B5B5B5; border-left: 0px; white-space:nowrap; width: 20%;"><a style="color: #666666;" href="{URL}main.php?area=linkchecker&frame=4&contenido={SID}&action=linkchecker&mode={MODE}&sort=namecat">{ERRORS_HEADLINE_CATNAME}</a> (ID)</td>
|
||||
<td nowrap="nowrap" valign="top" style="color: #666666; border: 1px solid #B5B5B5; border-left: 0px; white-space:nowrap; width: 20%;"><a style="color: #666666;" href="{URL}main.php?area=linkchecker&frame=4&contenido={SID}&action=linkchecker&mode={MODE}&sort=nameart">{ERRORS_HEADLINE_ARTICLE}</a> (ID)</td>
|
||||
<td nowrap="nowrap" valign="top" style="color: #666666; border: 1px solid #B5B5B5; border-left: 0px; white-space:nowrap; width: 40%;"><a style="color: #666666;" href="{URL}main.php?area=linkchecker&frame=4&contenido={SID}&action=linkchecker&mode={MODE}&sort=wronglink">{ERRORS_HEADLINE_LINK}</a></td>
|
||||
<td nowrap="nowrap" valign="top" style="color: #666666; border: 1px solid #B5B5B5; border-left: 0px; white-space:nowrap; width: 10%;"><a style="color: #666666;" href="{URL}main.php?area=linkchecker&frame=4&contenido={SID}&action=linkchecker&mode={MODE}&sort=error_type">{ERRORS_HEADLINE_DESCRIPTION}</a></td>
|
||||
<td nowrap="nowrap" valign="top" style="color: #666666; border: 1px solid #B5B5B5; border-left: 0px; white-space:nowrap; text-align: center; width: 10%;">{ERRORS_HEADLINE_WHITELIST}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<!-- ########################### -->
|
||||
<!-- ### Links to Categories ### -->
|
||||
<!-- ########################### -->
|
||||
<div style="margin-top: 10px; margin-bottom: 10px;">
|
||||
<!-- Table Head -->
|
||||
<table width="100%" style="border: 1px solid #B5B5B5;background-color: #F1F1F1;">
|
||||
<tr >
|
||||
<td>
|
||||
<strong>{ERRORS_HEADLINE_LINKS_CATEGORYS}</strong> ({ERRORS_COUNT_ERRORS_CAT})
|
||||
</td>
|
||||
<td align="center" style="padding:0;width:22px;">
|
||||
<a href="#" onclick="javascript:toggleTableBody('{ID_LINKS_CATEGORIES}')" style="height:1em;line-height:1em;width:100%;height:100%;display:block;"><img style="padding-top:5px" src="images/close_all.gif" id = "{ID_LINKS_CATEGORIES}_img"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- Table Body -->
|
||||
<div id="{ID_LINKS_CATEGORIES}">
|
||||
<table width="100%" style="border: 1px solid #B5B5B5;border-top:none;" cellspacing="0" cellpadding="3" border="0">
|
||||
{ERRORS_SHOW_CAT}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Print Button -->
|
||||
<a style="margin-left:3px;" href="javascript:print()"><img src="{URL}images/print.gif" alt="" border="0"></a>
|
||||
|
||||
</body></html>
|
||||
7
templates/standard/template.linkchecker_test_errors.html
Normale Datei
7
templates/standard/template.linkchecker_test_errors.html
Normale Datei
|
|
@ -0,0 +1,7 @@
|
|||
<tr class="text_medium" style="background-color: #FFFFFF;" onmouseover="row.over(this)" onmouseout="row.out(this)" onclick="row.click(this)">
|
||||
<td valign="top" style="border: 0px; border-right: 1px; border-color: #B5B5B5; border-style: solid; width: 20%;" onmouseover="Tip('{ERRORS_ARTICLE}', BALLOON, true, ABOVE, true);"><a href="javascript://" onclick="javascript:conMultiLink('right_top', 'main.php?area=con&frame=3&idcat={ERRORS_CATID}&idtpl=1&contenido={SID}', 'right_bottom', 'main.php?area=con_editcontent&action=con_editart&frame=4&idart={ERRORS_ARTID}&idcat={ERRORS_CATID}&idtpl=1&contenido={SID}', 'simpleFrame')">{ERRORS_ARTICLE_SHORT}</a> ({ERRORS_ARTID})</td>
|
||||
<td valign="top" style="border: 0px; border-right: 1px; border-color: #B5B5B5; border-style: solid; width: 20%;" onmouseover="Tip('{ERRORS_CATNAME}', BALLOON, true, ABOVE, true);">{ERRORS_CATNAME_SHORT} ({ERRORS_CATID})</td>
|
||||
<td valign="top" style="border: 0px; border-right: 1px; border-color: #B5B5B5; border-style: solid; width: 40%;" onmouseover="Tip('{ERRORS_LINK}', BALLOON, true, ABOVE, true);">{ERRORS_LINK_SHORT}</td>
|
||||
<td valign="top" style="border: 0px; border-right: 1px; border-color: #B5B5B5; border-style: solid; width: 10%;" onmouseover="Tip('{ERRORS_ERROR_TYPE_HELP}', BALLOON, true, ABOVE, true);">{ERRORS_ERROR_TYPE}</td>
|
||||
<td valign="top" style="border: 0px; border-right: 0px; border-color: #B5B5B5; border-style: solid; padding-right:5px; text-align: right; width: 10%;"><a href="{URL}main.php?area=linkchecker&frame=4&contenido={SID}&action=linkchecker&mode={MODE}&whitelist={ERRORS_LINK_ENCODE}"><img src="{URL}images/folder_new.gif" alt="" border="0" /></a></td>
|
||||
</tr>
|
||||
7
templates/standard/template.linkchecker_test_errors_cat.html
Normale Datei
7
templates/standard/template.linkchecker_test_errors_cat.html
Normale Datei
|
|
@ -0,0 +1,7 @@
|
|||
<tr class="text_medium" style="background-color: #FFFFFF;" onmouseover="row.over(this)" onmouseout="row.out(this)" onclick="row.click(this)">
|
||||
<td valign="top" style="border: 0px; border-right: 1px; border-color: #B5B5B5; border-style: solid; width: 20%;" onmouseover="Tip('{ERRORS_CATNAME}', BALLOON, true, ABOVE, true);"><a href="javascript://" onclick="javascript:conMultiLink('right_top', 'main.php?area=con&frame=3&idcat={ERRORS_CATID}&idtpl=1&contenido={SID}', 'right_bottom', 'main.php?area=con&frame=4&idcat={ERRORS_CATID}&idtpl=1&contenido={SID}', 'simpleFrame')">{ERRORS_CATNAME_SHORT}</a> ({ERRORS_CATID})</td>
|
||||
<td valign="top" style="border: 0px; border-right: 1px; border-color: #B5B5B5; border-style: solid; width: 20%;" onmouseover="Tip('{ERRORS_ARTICLE}', BALLOON, true, ABOVE, true);">{ERRORS_ARTICLE_SHORT} ({ERRORS_ARTID})</td>
|
||||
<td valign="top" style="border: 0px; border-right: 1px; border-color: #B5B5B5; border-style: solid; width: 40%;" onmouseover="Tip('{ERRORS_LINK}', BALLOON, true, ABOVE, true);">{ERRORS_LINK_SHORT}</td>
|
||||
<td valign="top" style="border: 0px; border-right: 1px; border-color: #B5B5B5; border-style: solid; width: 10%;" onmouseover="Tip('{ERRORS_ERROR_TYPE_HELP}', BALLOON, true, ABOVE, true);">{ERRORS_ERROR_TYPE}</td>
|
||||
<td valign="top" style="border: 0px; border-right: 0px; border-color: #B5B5B5; border-style: solid; padding-right: 5px; text-align: right; width: 10%;"><a href="{URL}main.php?area=linkchecker&frame=4&contenido={SID}&mode={MODE}&whitelist={ERRORS_LINK_ENCODE}"><img src="{URL}images/folder_new.gif" alt="" border="0" /></a></td>
|
||||
</tr>
|
||||
3
templates/standard/template.linkchecker_test_nothing.html
Normale Datei
3
templates/standard/template.linkchecker_test_nothing.html
Normale Datei
|
|
@ -0,0 +1,3 @@
|
|||
<tr class="text_medium" style="background-color: #FFFFFF;">
|
||||
<td colspan="6" valign="top" style="border: 0px; border-right: 0px; border-color: #B3B3B3; border-style: solid;">{ERRORS_NOTHING}</td>
|
||||
</tr>
|
||||
51
templates/standard/template.linkchecker_whitelist.html
Normale Datei
51
templates/standard/template.linkchecker_whitelist.html
Normale Datei
|
|
@ -0,0 +1,51 @@
|
|||
<html>
|
||||
|
||||
<head>
|
||||
<title>Linkchecker</title>
|
||||
<link rel="stylesheet" type="text/css" href="styles/contenido.css" />
|
||||
<script type="text/javascript" src="scripts/rowMark.js"></script>
|
||||
<script type="text/javascript" src="scripts/general.js"></script>
|
||||
</head>
|
||||
|
||||
<body style="margin: 10px">
|
||||
|
||||
<a href="javascript:location.reload()" accesskey="s"></a>
|
||||
|
||||
<table cellspacing="0" cellpadding="2" border="0">
|
||||
<tr valign="middle">
|
||||
<td><h2>{TITLE}</h2></td>
|
||||
</tr>
|
||||
<tr valign="middle">
|
||||
<td class="text_medium">{HELP}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div style="margin-top: 5px"></div>
|
||||
|
||||
<table width="100%" style="border-left: 1px solid #B5B5B5;" cellspacing="0" cellpadding="3" border="0">
|
||||
|
||||
<tr class="text_medium" style="background-color: #E2E2E2;">
|
||||
<td nowrap="nowrap" valign="top" style="border: 1px solid #B5B5B5; border-left: 0px; white-space:nowrap; width: 75%;"><strong>{HEADLINE_URLS}</strong> ({WHITELIST_COUNT})</td>
|
||||
<td nowrap="nowrap" valign="top" style="border: 1px solid #B5B5B5; border-left: 0px; white-space:nowrap; width: 15%; text-align: center;"><strong>{HEADLINE_ENTRY}</strong></td>
|
||||
<td nowrap="nowrap" valign="top" style="border: 1px solid #B5B5B5; border-left: 0px; white-space:nowrap; width: 10%;"><strong>{HEADLINE_DELETE}</strong></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<div style="margin-top: 10px"></div>
|
||||
|
||||
<table width="100%" style="border: 1px solid #B5B5B5; border-top: 0px;" cellspacing="0" cellpadding="3" border="0">
|
||||
|
||||
{WHITELIST}
|
||||
|
||||
</table>
|
||||
|
||||
<div style="margin-top: 10px"></div>
|
||||
|
||||
<table width="100%" cellspacing="0" cellpadding="3" border="0">
|
||||
<tr>
|
||||
<td style="text-align: left;"><a href="javascript:print()"><img src="{CONTENIDO_URL}images/print.gif" alt="" border="0"></a></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body></html>
|
||||
5
templates/standard/template.linkchecker_whitelist_urls.html
Normale Datei
5
templates/standard/template.linkchecker_whitelist_urls.html
Normale Datei
|
|
@ -0,0 +1,5 @@
|
|||
<tr class="text_medium" style="background-color: #FFFFFF;" onmouseover="row.over(this)" onmouseout="row.out(this)" onclick="row.click(this)">
|
||||
<td valign="top" style="border: 0px; border-top: 1px; border-right: 1px; border-color: #B5B5B5; border-style: solid; width: 75%;">{URL}</td>
|
||||
<td valign="top" style="border: 0px; border-top: 1px; border-right: 1px; border-color: #B5B5B5; border-style: solid; width: 15%; text-align: center;">{ENTRY}</td>
|
||||
<td valign="top" style="border: 0px; border-top: 1px; border-right: 0px; border-color: #B5B5B5; border-style: solid; width: 10%; text-align: right;"><a href="{CONTENIDO_URL}main.php?area=lc_whitelist&frame=4&contenido={SID}&action=linkchecker&url_to_delete={URL_ENCODE}"><img src="{CONTENIDO_URL}images/delete_over.gif" alt="" border="0"></a></td>
|
||||
</tr>
|
||||
Laden …
Tabelle hinzufügen
Einen Link hinzufügen
In neuem Issue referenzieren