Verzeichnisstruktur phpBB-3.0.0


Veröffentlicht
12.12.2007

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.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

install_update_diff.html

Zuletzt modifiziert: 09.10.2024, 12:51 - Dateigröße: 4.33 KiB


001  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
002  <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">
003  <head>
004   
005  <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" />
006  <meta http-equiv="Content-Style-Type" content="text/css" />
007  <meta http-equiv="Content-Language" content="{S_USER_LANG}" />
008  <meta http-equiv="imagetoolbar" content="no" />
009  <!-- IF META -->{META}<!-- ENDIF -->
010  <title>{PAGE_TITLE}</title>
011   
012  <link href="../adm/style/admin.css" rel="stylesheet" type="text/css" media="screen" />
013   
014  <script type="text/javascript">
015  // <![CDATA[
016  function resize_panel()
017  {
018      var block = document.getElementById('codepanel');    
019      var height;
020      
021      if (window.innerHeight)
022      {
023          height = window.innerHeight - 150;
024          block.style.height = height + 'px';
025      }
026      else
027      {
028          //whatever IE needs to do this
029      }    
030  }
031  // ]]>
032  </script>
033   
034  <style type="text/css">
035  <!--
036   
037  #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  }
048   
049  <!-- IF DIFF_MODE neq 'side_by_side' and DIFF_MODE neq 'raw' -->
050  div#codepanel {
051      overflow: auto;
052      width: 100%;
053      height: 350px;
054      display: inline-block;
055  }
056  <!-- ELSE -->
057  div#codepanel {    
058      background-color: #eee;
059  }
060  <!-- ENDIF -->
061   
062  <!-- IF not S_DIFF_NEW_FILE -->
063  /**
064  * Unified Diff
065  */
066  .file {
067      line-height: .7em;
068  }
069   
070  .diff {
071      margin: 0;
072  }
073   
074  .added {
075      background-color: #dfd;
076  }
077   
078  .removed {
079      background-color: #fdd;
080  }
081   
082  .info {
083      color: #888;
084  }
085   
086  .context {
087      background-color: #eee;
088  }
089   
090  /**
091  * Inline Diff
092  */
093  .ins {
094      background-color: #dfd;
095      text-decoration: underline;
096  }
097   
098  .del {
099      background-color: #fdd;
100      text-decoration: line-through;
101  }
102   
103  /**
104  * Column Diff
105  */
106  table.hrdiff {
107      margin: 0 0 8px 5px;
108      width: 100%;
109      overflow: hidden;
110      border-bottom: 1px solid #999;
111      table-layout: fixed;
112  }
113   
114  table.hrdiff th {
115      text-align: left;
116      width: 50%;
117      color: #333;
118      font-family: Verdana,Helvetica,sans-serif;
119      font-size: 11px;
120      border-bottom: 1px solid #999;
121      background: transparent;
122  }
123   
124  table.hrdiff thead th {
125      font-weight: bold;
126      font-size: 110%;
127      padding: 2px;
128  }
129   
130  table.hrdiff tr:first-child th {
131      border-top: none;
132  }
133   
134  table.hrdiff tbody th {
135      padding: 2em 1px 1px 1px;
136      font-size: 80%;
137      border-top: 1px solid #999;
138  }
139   
140  table.hrdiff tbody td.old {
141      border-left: 1px solid #999;
142      border-right: 1px solid #999;    
143  }
144  table.hrdiff tbody td.new {
145      border-right: 1px solid #999;    
146  }
147   
148  table.hrdiff td pre {
149      overflow: auto;
150      display: block;
151      width: 100%;
152      overflow: auto;
153      display: block;
154  }
155   
156  table.hrdiff .unmodified {
157      background: #fff;
158  }
159   
160  table.hrdiff .added {
161      background: #9f9;
162  }
163   
164  table.hrdiff .added_empty {
165      background: #cfc;
166  }
167   
168  table.hrdiff .modified {
169      background: #fd9;
170  }
171   
172  table.hrdiff .removed {
173      background: #f99;
174  }
175   
176  table.hrdiff .removed_empty {
177      background: #fcc;
178  }
179   
180  table.hrdiff caption {
181      caption-side: top;
182      text-align: left;
183      margin: 0 0 8px 5px;
184      font-size: 90%;
185      font-weight: bold;
186      padding: 5px;
187  }
188   
189  table.hrdiff caption span {
190      height: 10px;
191      width: 10px;
192      line-height: 10px;
193      letter-spacing: 10px;
194      border: 1px solid #000;
195      margin-left: 0.5em;
196      vertical-align: baseline;
197  }
198   
199  <!-- ENDIF -->
200   
201  //-->
202  </style>
203   
204  </head>
205   
206   
207  <!-- IF DIFF_MODE neq 'side_by_side' and DIFF_MODE neq 'raw' -->
208  <body onresize="resize_panel();" onload="resize_panel();">
209  <!-- ELSE -->
210  <body>
211  <!-- ENDIF -->
212   
213  <div id="wrap">
214      <div id="page-header">
215  <!-- IF S_DIFF_NEW_FILE -->
216   
217          <h1>{L_VIEWING_FILE_CONTENTS}</h1>
218  <!-- ELSE -->
219          <h1>{L_VIEWING_FILE_DIFF}</h1>
220  <!-- ENDIF -->
221  <!-- IF not S_DIFF_NEW_FILE -->
222          <p id="skip"><a href="#acp">{L_SKIP}</a></p>
223          <form method="post">
224          <fieldset class="quick">
225              <label for="diff_mode">{L_SELECT_DIFF_MODE}:</label>
226              <select name="diff_mode" id="diff_mode">{S_DIFF_MODE_OPTIONS}</select>
227   
228              <input class="button1" type="submit" id="submit" name="submit" value="{L_CHANGE}" />
229          </fieldset>
230          </form>
231  <!-- ENDIF -->
232      </div>
233      
234      <div id="page-body">
235          <div id="acp">
236          <div class="panel" id="codepanel">
237              <span class="corners-top"><span></span></span>
238                  <div id="diff_content">
239                      <div id="main">
240   
241  <!-- IF S_DIFF_CONFLICT_FILE -->
242          <div style="float: {S_CONTENT_FLOW_END};"><strong>{L_NUM_CONFLICTS}: {NUM_CONFLICTS}</strong></div>
243  <!-- ENDIF -->
244                          {DIFF_CONTENT}
245                      </div>
246                  </div>
247              <span class="corners-bottom"><span></span></span>
248          </div>
249          </div>
250      </div>
251      
252   
253  <!-- INCLUDE simple_footer.html -->