[ Index ] |
PHP Cross Reference of phpBB-3.1.12-deutsch |
[Summary view] [Print] [Text view]
1 <!DOCTYPE html> 2 <html dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}"> 3 <head> 4 <meta charset="utf-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <meta name="viewport" content="width=device-width, initial-scale=1" /> 7 <!-- IF META -->{META}<!-- ENDIF --> 8 <title>{PAGE_TITLE}</title> 9 10 <link href="{T_TEMPLATE_PATH}/admin.css" rel="stylesheet" type="text/css" media="screen" /> 11 12 <script type="text/javascript"> 13 // <![CDATA[ 14 function resize_panel() 15 { 16 var block = document.getElementById('diff_content'); 17 var height; 18 19 if (window.innerHeight) 20 { 21 height = window.innerHeight - 200; 22 block.style.height = height + 'px'; 23 } 24 else 25 { 26 //whatever IE needs to do this 27 } 28 } 29 30 window.onresize = resize_panel; 31 32 // ]]> 33 </script> 34 35 <style type="text/css"> 36 /* <![CDATA[ */ 37 38 #main, .rtl #main { 39 font-size: 1em; 40 line-height: 0.7em; 41 margin: 0; 42 padding: 0; 43 width: 99%; 44 } 45 46 #diff_content { 47 padding: 30px 10px 10px; 48 overflow: hidden; 49 } 50 51 <!-- IF DIFF_MODE neq 'side_by_side' and DIFF_MODE neq 'raw' --> 52 div#codepanel { 53 width: 100%; 54 } 55 <!-- ELSE --> 56 div#codepanel { 57 background-color: #eee; 58 } 59 <!-- ENDIF --> 60 61 <!-- IF DIFF_MODE neq 'unified' and DIFF_MODE neq 'side_by_side' --> 62 div#diff_content pre { 63 overflow: auto; 64 height: 414px; 65 width: 100% !important; 66 } 67 <!-- ENDIF --> 68 69 <!-- IF not S_DIFF_NEW_FILE --> 70 /** 71 * Unified Diff 72 */ 73 .file { 74 line-height: .7em; 75 overflow: auto; 76 height: 414px; 77 } 78 79 .diff { 80 margin: 0; 81 } 82 83 .added { 84 background-color: #dfd; 85 } 86 87 .removed { 88 background-color: #fdd; 89 } 90 91 .info { 92 color: #888; 93 } 94 95 .context { 96 background-color: #eee; 97 } 98 99 /** 100 * Inline Diff 101 */ 102 .ins { 103 background-color: #dfd; 104 text-decoration: underline; 105 } 106 107 .del { 108 background-color: #fdd; 109 text-decoration: line-through; 110 } 111 112 /** 113 * Column Diff 114 */ 115 table.hrdiff { 116 margin: 0 0 8px 5px; 117 width: 100%; 118 overflow: hidden; 119 border-bottom: 1px solid #999; 120 table-layout: fixed; 121 background: transparent; 122 } 123 124 table.hrdiff th { 125 text-align: left; 126 width: 50%; 127 color: #333; 128 font-family: Verdana,Helvetica,sans-serif; 129 font-size: 11px; 130 border-bottom: 1px solid #999; 131 border-right: 1px solid #999; 132 background: #D9D9D9; 133 } 134 135 table.hrdiff thead th { 136 font-weight: bold; 137 font-size: 110%; 138 padding: 2px; 139 } 140 141 table.hrdiff tr:first-child th { 142 border-top: none; 143 } 144 145 table.hrdiff tbody th { 146 font-size: 80%; 147 border-top: 1px solid #999; 148 } 149 150 table.hrdiff tbody td { 151 border-right: 1px solid #999; 152 } 153 154 table.hrdiff td pre { 155 font-family: "Consolas", monospace; 156 font-size: 1.1em; 157 white-space: pre-wrap; /* css-3 */ 158 word-wrap: break-word; /* Internet Explorer 5.5+ */ 159 } 160 161 table.hrdiff .unmodified { 162 background: transparent; 163 } 164 165 table.hrdiff .added { 166 background: #9f9; 167 } 168 169 table.hrdiff .added_empty { 170 background: #cfc; 171 } 172 173 table.hrdiff .modified { 174 background: #fd9; 175 } 176 177 table.hrdiff .removed { 178 background: #f99; 179 } 180 181 table.hrdiff .removed_empty { 182 background: #fcc; 183 } 184 185 table.hrdiff caption { 186 caption-side: top; 187 text-align: left; 188 margin: 0 0 8px 5px; 189 font-size: 90%; 190 font-weight: bold; 191 padding: 5px; 192 } 193 194 table.hrdiff caption span { 195 height: 10px; 196 width: 10px; 197 line-height: 10px; 198 letter-spacing: 10px; 199 border: 1px solid #000; 200 margin-left: 0.5em; 201 vertical-align: baseline; 202 } 203 204 <!-- ENDIF --> 205 206 /* ]]> */ 207 </style> 208 209 </head> 210 211 <!-- IF DIFF_MODE neq 'side_by_side' and DIFF_MODE neq 'raw' --> 212 <body onload="resize_panel();"> 213 <!-- ELSE --> 214 <body> 215 <!-- ENDIF --> 216 217 <div id="wrap"> 218 <div id="page-header"> 219 <!-- IF S_DIFF_NEW_FILE --> 220 221 <h1>{L_VIEWING_FILE_CONTENTS}</h1> 222 <!-- ELSE --> 223 <h1>{L_VIEWING_FILE_DIFF}</h1> 224 <!-- ENDIF --> 225 <!-- IF not S_DIFF_NEW_FILE --> 226 <p id="skip"><a href="#acp">{L_SKIP}</a></p> 227 <form method="post" action="#"> 228 <fieldset class="quick"> 229 <label for="diff_mode">{L_SELECT_DIFF_MODE}{L_COLON}</label> 230 <select name="diff_mode" id="diff_mode">{S_DIFF_MODE_OPTIONS}</select> 231 232 <input class="button1" type="submit" id="submit" name="submit" value="{L_CHANGE}" /> 233 </fieldset> 234 </form> 235 <!-- ENDIF --> 236 <!-- IF S_DIFF_CONFLICT_FILE --> 237 <div style="float: {S_CONTENT_FLOW_BEGIN};"><strong>{L_NUM_CONFLICTS}{L_COLON} {NUM_CONFLICTS}</strong></div> 238 <br style="clear: both;" /> 239 <!-- ENDIF --> 240 </div> 241 242 <div id="page-body"> 243 <div id="acp"> 244 <div id="codepanel"> 245 <div id="diff_content"> 246 <div id="main"> 247 {DIFF_CONTENT} 248 </div> 249 </div> 250 </div> 251 </div> 252 </div> 253 254 255 <!-- INCLUDE simple_footer.html -->
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Jan 11 00:25:41 2018 | Cross-referenced by PHPXref 0.7.1 |