Blame Extras/phpBB/3.0.4/adm/style/install_update_diff.html

4c79b5
4c79b5
<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">
4c79b5
<head>
4c79b5
4c79b5
<meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" />
4c79b5
<meta http-equiv="Content-Style-Type" content="text/css" />
4c79b5
<meta http-equiv="Content-Language" content="{S_USER_LANG}" />
4c79b5
<meta http-equiv="imagetoolbar" content="no" />
4c79b5
{META}
4c79b5
<title>{PAGE_TITLE}</title>
4c79b5
4c79b5
<link href="../adm/style/admin.css" rel="stylesheet" type="text/css" media="screen" />
4c79b5
4c79b5
<script type="text/javascript">
4c79b5
// 
4c79b5
function resize_panel()
4c79b5
{
4c79b5
	var block = document.getElementById('codepanel');	
4c79b5
	var height;
4c79b5
	
4c79b5
	if (window.innerHeight)
4c79b5
	{
4c79b5
		height = window.innerHeight - 150;
4c79b5
		block.style.height = height + 'px';
4c79b5
	}
4c79b5
	else
4c79b5
	{
4c79b5
		//whatever IE needs to do this
4c79b5
	}	
4c79b5
}
4c79b5
// ]]>
4c79b5
</script>
4c79b5
4c79b5
<style type="text/css">
4c79b5
/* 
4c79b5
4c79b5
#main {
4c79b5
	font-size: 1em;
4c79b5
	line-height: 0.7em;
4c79b5
	margin: 0;
4c79b5
	padding: 0;
4c79b5
	width: 99%;
4c79b5
}
4c79b5
4c79b5
#diff_content {
4c79b5
	padding: 30px 10px 10px;
4c79b5
}
4c79b5
4c79b5
4c79b5
div#codepanel {
4c79b5
	overflow: auto;
4c79b5
	width: 100%;
4c79b5
	height: 350px;
4c79b5
	display: inline-block;
4c79b5
}
4c79b5
4c79b5
div#codepanel {	
4c79b5
	background-color: #eee;
4c79b5
}
4c79b5
4c79b5
4c79b5
4c79b5
/**
4c79b5
* Unified Diff
4c79b5
*/
4c79b5
.file {
4c79b5
	line-height: .7em;
4c79b5
}
4c79b5
4c79b5
.diff {
4c79b5
	margin: 0;
4c79b5
}
4c79b5
4c79b5
.added {
4c79b5
	background-color: #dfd;
4c79b5
}
4c79b5
4c79b5
.removed {
4c79b5
	background-color: #fdd;
4c79b5
}
4c79b5
4c79b5
.info {
4c79b5
	color: #888;
4c79b5
}
4c79b5
4c79b5
.context {
4c79b5
	background-color: #eee;
4c79b5
}
4c79b5
4c79b5
/**
4c79b5
* Inline Diff
4c79b5
*/
4c79b5
.ins {
4c79b5
	background-color: #dfd;
4c79b5
	text-decoration: underline;
4c79b5
}
4c79b5
4c79b5
.del {
4c79b5
	background-color: #fdd;
4c79b5
	text-decoration: line-through;
4c79b5
}
4c79b5
4c79b5
/**
4c79b5
* Column Diff
4c79b5
*/
4c79b5
table.hrdiff {
4c79b5
	margin: 0 0 8px 5px;
4c79b5
	width: 100%;
4c79b5
	overflow: hidden;
4c79b5
	border-bottom: 1px solid #999;
4c79b5
	table-layout: fixed;
4c79b5
}
4c79b5
4c79b5
table.hrdiff th {
4c79b5
	text-align: left;
4c79b5
	width: 50%;
4c79b5
	color: #333;
4c79b5
	font-family: Verdana,Helvetica,sans-serif;
4c79b5
	font-size: 11px;
4c79b5
	border-bottom: 1px solid #999;
4c79b5
	background: transparent;
4c79b5
}
4c79b5
4c79b5
table.hrdiff thead th {
4c79b5
	font-weight: bold;
4c79b5
	font-size: 110%;
4c79b5
	padding: 2px;
4c79b5
}
4c79b5
4c79b5
table.hrdiff tr:first-child th {
4c79b5
	border-top: none;
4c79b5
}
4c79b5
4c79b5
table.hrdiff tbody th {
4c79b5
	padding: 2em 1px 1px 1px;
4c79b5
	font-size: 80%;
4c79b5
	border-top: 1px solid #999;
4c79b5
}
4c79b5
4c79b5
table.hrdiff tbody td.old {
4c79b5
	border-left: 1px solid #999;
4c79b5
	border-right: 1px solid #999;	
4c79b5
}
4c79b5
table.hrdiff tbody td.new {
4c79b5
	border-right: 1px solid #999;	
4c79b5
}
4c79b5
4c79b5
table.hrdiff td pre {
4c79b5
	overflow: auto;
4c79b5
	display: block;
4c79b5
	width: 100%;
4c79b5
	overflow: auto;
4c79b5
	display: block;
4c79b5
}
4c79b5
4c79b5
table.hrdiff .unmodified {
4c79b5
	background: #fff;
4c79b5
}
4c79b5
4c79b5
table.hrdiff .added {
4c79b5
	background: #9f9;
4c79b5
}
4c79b5
4c79b5
table.hrdiff .added_empty {
4c79b5
	background: #cfc;
4c79b5
}
4c79b5
4c79b5
table.hrdiff .modified {
4c79b5
	background: #fd9;
4c79b5
}
4c79b5
4c79b5
table.hrdiff .removed {
4c79b5
	background: #f99;
4c79b5
}
4c79b5
4c79b5
table.hrdiff .removed_empty {
4c79b5
	background: #fcc;
4c79b5
}
4c79b5
4c79b5
table.hrdiff caption {
4c79b5
	caption-side: top;
4c79b5
	text-align: left;
4c79b5
	margin: 0 0 8px 5px;
4c79b5
	font-size: 90%;
4c79b5
	font-weight: bold;
4c79b5
	padding: 5px;
4c79b5
}
4c79b5
4c79b5
table.hrdiff caption span {
4c79b5
	height: 10px;
4c79b5
	width: 10px;
4c79b5
	line-height: 10px;
4c79b5
	letter-spacing: 10px;
4c79b5
	border: 1px solid #000;
4c79b5
	margin-left: 0.5em;
4c79b5
	vertical-align: baseline;
4c79b5
}
4c79b5
4c79b5
4c79b5
4c79b5
/* ]]> */
4c79b5
</style>
4c79b5
4c79b5
</head>
4c79b5
4c79b5
4c79b5
4c79b5
<body onresize="resize_panel();" onload="resize_panel();">
4c79b5
4c79b5
<body>
4c79b5
4c79b5
4c79b5
4c79b5
	
4c79b5
4c79b5
4c79b5
		

{L_VIEWING_FILE_CONTENTS}

4c79b5
4c79b5
		

{L_VIEWING_FILE_DIFF}

4c79b5
4c79b5
4c79b5
		

{L_SKIP}

4c79b5
		<form method="post">
4c79b5
		<fieldset class="quick">
4c79b5
			<label for="diff_mode">{L_SELECT_DIFF_MODE}:</label>
4c79b5
			<select name="diff_mode" id="diff_mode">{S_DIFF_MODE_OPTIONS}</select>
4c79b5
4c79b5
			<input class="button1" type="submit" id="submit" name="submit" value="{L_CHANGE}" />
4c79b5
		</fieldset>
4c79b5
		</form>
4c79b5
4c79b5
	
4c79b5
	
4c79b5
	
4c79b5
		
4c79b5
		
4c79b5
			
4c79b5
				
4c79b5
					
4c79b5
4c79b5
4c79b5
		
{L_NUM_CONFLICTS}: {NUM_CONFLICTS}
4c79b5
4c79b5
						{DIFF_CONTENT}
4c79b5
					
4c79b5
				
4c79b5
			
4c79b5
		
4c79b5
		
4c79b5
	
4c79b5
	
4c79b5
4c79b5