Verzeichnisstruktur phpBB-3.1.0
- Veröffentlicht
- 27.10.2014
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
install_update_diff.html
001 <!DOCTYPE html>
002 <html dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}">
003 <head>
004 <meta charset="utf-8">
005 <meta name="viewport" content="width=device-width" />
006 <!-- IF META -->{META}<!-- ENDIF -->
007 <title>{PAGE_TITLE}</title>
008
009 <link href="{T_TEMPLATE_PATH}/admin.css" rel="stylesheet" type="text/css" media="screen" />
010
011 <script type="text/javascript">
012 // <![CDATA[
013 function resize_panel()
014 {
015 var block = document.getElementById('diff_content');
016 var height;
017
018 if (window.innerHeight)
019 {
020 height = window.innerHeight - 200;
021 block.style.height = height + 'px';
022 }
023 else
024 {
025 //whatever IE needs to do this
026 }
027 }
028
029 window.onresize = resize_panel;
030
031 // ]]>
032 </script>
033
034 <style type="text/css">
035 /* <![CDATA[ */
036
037 #main, .rtl #main {
038 font-size: 1em;
039 line-height: 0.7em;
040 margin: 0;
041 padding: 0;
042 width: 99%;
043 }
044
045 #diff_content {
046 padding: 30px 10px 10px;
047 overflow: hidden;
048 }
049
050 <!-- IF DIFF_MODE neq 'side_by_side' and DIFF_MODE neq 'raw' -->
051 div#codepanel {
052 width: 100%;
053 }
054 <!-- ELSE -->
055 div#codepanel {
056 background-color: #eee;
057 }
058 <!-- ENDIF -->
059
060 <!-- IF DIFF_MODE neq 'unified' and DIFF_MODE neq 'side_by_side' -->
061 div#diff_content pre {
062 overflow: auto;
063 height: 414px;
064 width: 100% !important;
065 }
066 <!-- ENDIF -->
067
068 <!-- IF not S_DIFF_NEW_FILE -->
069 /**
070 * Unified Diff
071 */
072 .file {
073 line-height: .7em;
074 overflow: auto;
075 height: 414px;
076 }
077
078 .diff {
079 margin: 0;
080 }
081
082 .added {
083 background-color: #dfd;
084 }
085
086 .removed {
087 background-color: #fdd;
088 }
089
090 .info {
091 color: #888;
092 }
093
094 .context {
095 background-color: #eee;
096 }
097
098 /**
099 * Inline Diff
100 */
101 .ins {
102 background-color: #dfd;
103 text-decoration: underline;
104 }
105
106 .del {
107 background-color: #fdd;
108 text-decoration: line-through;
109 }
110
111 /**
112 * Column Diff
113 */
114 table.hrdiff {
115 margin: 0 0 8px 5px;
116 width: 100%;
117 overflow: hidden;
118 border-bottom: 1px solid #999;
119 table-layout: fixed;
120 background: transparent;
121 }
122
123 table.hrdiff th {
124 text-align: left;
125 width: 50%;
126 color: #333;
127 font-family: Verdana,Helvetica,sans-serif;
128 font-size: 11px;
129 border-bottom: 1px solid #999;
130 border-right: 1px solid #999;
131 background: #D9D9D9;
132 }
133
134 table.hrdiff thead th {
135 font-weight: bold;
136 font-size: 110%;
137 padding: 2px;
138 }
139
140 table.hrdiff tr:first-child th {
141 border-top: none;
142 }
143
144 table.hrdiff tbody th {
145 font-size: 80%;
146 border-top: 1px solid #999;
147 }
148
149 table.hrdiff tbody td {
150 border-right: 1px solid #999;
151 }
152
153 table.hrdiff td pre {
154 font-family: "Consolas", monospace;
155 font-size: 1.1em;
156 white-space: pre-wrap; /* css-3 */
157 word-wrap: break-word; /* Internet Explorer 5.5+ */
158 }
159
160 table.hrdiff .unmodified {
161 background: transparent;
162 }
163
164 table.hrdiff .added {
165 background: #9f9;
166 }
167
168 table.hrdiff .added_empty {
169 background: #cfc;
170 }
171
172 table.hrdiff .modified {
173 background: #fd9;
174 }
175
176 table.hrdiff .removed {
177 background: #f99;
178 }
179
180 table.hrdiff .removed_empty {
181 background: #fcc;
182 }
183
184 table.hrdiff caption {
185 caption-side: top;
186 text-align: left;
187 margin: 0 0 8px 5px;
188 font-size: 90%;
189 font-weight: bold;
190 padding: 5px;
191 }
192
193 table.hrdiff caption span {
194 height: 10px;
195 width: 10px;
196 line-height: 10px;
197 letter-spacing: 10px;
198 border: 1px solid #000;
199 margin-left: 0.5em;
200 vertical-align: baseline;
201 }
202
203 <!-- ENDIF -->
204
205 /* ]]> */
206 </style>
207
208 </head>
209
210 <!-- IF DIFF_MODE neq 'side_by_side' and DIFF_MODE neq 'raw' -->
211 <body onload="resize_panel();">
212 <!-- ELSE -->
213 <body>
214 <!-- ENDIF -->
215
216 <div id="wrap">
217 <div id="page-header">
218 <!-- IF S_DIFF_NEW_FILE -->
219
220 <h1>{L_VIEWING_FILE_CONTENTS}</h1>
221 <!-- ELSE -->
222 <h1>{L_VIEWING_FILE_DIFF}</h1>
223 <!-- ENDIF -->
224 <!-- IF not S_DIFF_NEW_FILE -->
225 <p id="skip"><a href="#acp">{L_SKIP}</a></p>
226 <form method="post" action="#">
227 <fieldset class="quick">
228 <label for="diff_mode">{L_SELECT_DIFF_MODE}{L_COLON}</label>
229 <select name="diff_mode" id="diff_mode">{S_DIFF_MODE_OPTIONS}</select>
230
231 <input class="button1" type="submit" id="submit" name="submit" value="{L_CHANGE}" />
232 </fieldset>
233 </form>
234 <!-- ENDIF -->
235 <!-- IF S_DIFF_CONFLICT_FILE -->
236 <div style="float: {S_CONTENT_FLOW_BEGIN};"><strong>{L_NUM_CONFLICTS}{L_COLON} {NUM_CONFLICTS}</strong></div>
237 <br style="clear: both;" />
238 <!-- ENDIF -->
239 </div>
240
241 <div id="page-body">
242 <div id="acp">
243 <div id="codepanel">
244 <div id="diff_content">
245 <div id="main">
246 {DIFF_CONTENT}
247 </div>
248 </div>
249 </div>
250 </div>
251 </div>
252
253
254 <!-- INCLUDE simple_footer.html -->
255