亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? edit.html.tmpl

?? bugzilla
?? TMPL
字號(hào):
[%# 1.0@bugzilla.org %][%# The contents of this file are subject to the Mozilla Public  # License Version 1.1 (the "License"); you may not use this file  # except in compliance with the License. You may obtain a copy of  # the License at http://www.mozilla.org/MPL/  #  # Software distributed under the License is distributed on an "AS  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or  # implied. See the License for the specific language governing  # rights and limitations under the License.  #  # The Original Code is the Bugzilla Bug Tracking System.  #  # The Initial Developer of the Original Code is Netscape Communications  # Corporation. Portions created by Netscape are  # Copyright (C) 1998 Netscape Communications Corporation. All  # Rights Reserved.  #  # Contributor(s): Myk Melez <myk@mozilla.org>  #                 Frédéric Buclin <LpSolit@gmail.com>  #%][% PROCESS global/variables.none.tmpl %][%# Define strings that will serve as the title and header of this page %][% title = BLOCK %]  Attachment [% attachment.id %] Details for [% terms.Bug %] [%+ attachment.bug_id %][% END %][% header = BLOCK %]  Attachment [% attachment.id %] Details for  [%+ "$terms.Bug ${attachment.bug_id}" FILTER bug_link(attachment.bug_id) FILTER none %][% END %][% subheader = BLOCK %][% bugsummary FILTER html %][% END %][% PROCESS global/header.html.tmpl  title = title  header = header  subheader = subheader%]<script type="text/javascript">  <!--  var prev_mode = 'raw';  var current_mode = 'raw';  var has_edited = 0;  var has_viewed_as_diff = 0;  function editAsComment()    {      // Get the content of the document as a string.      var viewFrame = document.getElementById('viewFrame');      var aSerializer = new XMLSerializer();      var contentDocument = viewFrame.contentDocument;      var theContent = aSerializer.serializeToString(contentDocument);      // If this is a plaintext document, remove cruft that Mozilla adds      // because it treats it as an HTML document with a big PRE section.      // http://bugzilla.mozilla.org/show_bug.cgi?id=86012      var contentType = '[% attachment.contenttype FILTER js %]';      if ( contentType == 'text/plain' )        {          theContent = theContent.replace( /^<html><head\/?><body><pre>/i , "" );          theContent = theContent.replace( /<\/pre><\/body><\/html>$/i , "" );          theContent = theContent.replace( /&lt;/gi , "<" );          theContent = theContent.replace( /&gt;/gi , ">" );          theContent = theContent.replace( /&amp;/gi , "&" );        }      // Add mail-style quote indicators (>) to the beginning of each line.      // ".*\n" matches lines that end with a newline, while ".+" matches      // the rare situation in which the last line of a file does not end      // with a newline.      theContent = theContent.replace( /(.*\n|.+)/g , ">$1" );      switchToMode('edit');      // Copy the contents of the diff into the textarea      var editFrame = document.getElementById('editFrame');      editFrame.value = theContent + "\n\n";      has_edited = 1;    }  function undoEditAsComment()    {      switchToMode(prev_mode);    }  function redoEditAsComment()    {      switchToMode('edit');    }[% IF patchviewerinstalled %]  function viewDiff()    {      switchToMode('diff');      // If we have not viewed as diff before, set the view diff frame URL      if (!has_viewed_as_diff) {        var viewDiffFrame = document.getElementById('viewDiffFrame');        viewDiffFrame.src =            'attachment.cgi?id=[% attachment.id %]&action=diff&headers=0';        has_viewed_as_diff = 1;      }    }[% END %]  function viewRaw()    {      switchToMode('raw');    }  function switchToMode(mode)    {      if (mode == current_mode) {        alert('switched to same mode!  This should not happen.');        return;      }      // Switch out of current mode      if (current_mode == 'edit') {        hideElementById('editFrame');        hideElementById('undoEditButton');      } else if (current_mode == 'raw') {        hideElementById('viewFrame');[% IF patchviewerinstalled %]        hideElementById('viewDiffButton');[% END %]        hideElementById(has_edited ? 'redoEditButton' : 'editButton');        hideElementById('smallCommentFrame');      } else if (current_mode == 'diff') {[% IF patchviewerinstalled %]        hideElementById('viewDiffFrame');[% END %]        hideElementById('viewRawButton');        hideElementById(has_edited ? 'redoEditButton' : 'editButton');        hideElementById('smallCommentFrame');      }      // Switch into new mode      if (mode == 'edit') {        showElementById('editFrame');        showElementById('undoEditButton');      } else if (mode == 'raw') {        showElementById('viewFrame');[% IF patchviewerinstalled %]        showElementById('viewDiffButton');[% END %]        showElementById(has_edited ? 'redoEditButton' : 'editButton');        showElementById('smallCommentFrame');      } else if (mode == 'diff') {[% IF patchviewerinstalled %]        showElementById('viewDiffFrame');[% END %]        showElementById('viewRawButton');        showElementById(has_edited ? 'redoEditButton' : 'editButton');        showElementById('smallCommentFrame');      }      prev_mode = current_mode;      current_mode = mode;    }  function hideElementById(id)  {    var elm = document.getElementById(id);    if (elm) {      elm.style.display = 'none';    }  }  function showElementById(id, val)  {    var elm = document.getElementById(id);    if (elm) {      if (!val) val = 'inline';      elm.style.display = val;    }  }  function normalizeComments()  {    // Remove the unused comment field from the document so its contents    // do not get transmitted back to the server.    var small = document.getElementById('smallCommentFrame');    var big = document.getElementById('editFrame');    if ( (small) && (small.style.display == 'none') )    {      small.parentNode.removeChild(small);    }    if ( (big) && (big.style.display == 'none') )    {      big.parentNode.removeChild(big);    }  }  //--></script><form method="post" action="attachment.cgi" onsubmit="normalizeComments();">  <input type="hidden" name="id" value="[% attachment.id %]">  <input type="hidden" name="action" value="update">  <input type="hidden" name="contenttypemethod" value="manual">  <table class="attachment_info" width="100%">    <tr>      <td width="25%">        <small>        <b><label for="description">Description</label>:</b><br>          [% INCLUDE global/textarea.html.tmpl            id             = 'description'            name           = 'description'            minrows        = 3            cols           = 25            wrap           = 'soft'            defaultcontent = attachment.description          %]<br>        [% IF attachment.isurl %]            <input type="hidden" name="filename"                   value="[% attachment.filename FILTER html %]">            <input type="hidden" name="contenttypeentry"                   value="[% attachment.contenttype FILTER html %]">        [% ELSE %]          <b><label for="filename">Filename</label>:</b><br>            <input type="text" size="20" id="filename" name="filename"                   value="[% attachment.filename FILTER html %]"><br>          <b>Size:</b>          [% IF attachment.datasize %]            [%+ attachment.datasize FILTER unitconvert %]          [% ELSE %]            <em>deleted</em>          [% END %]<br>          <b><label for="contenttypeentry">MIME Type</label>:</b><br>            <input type="text" size="20"                   id="contenttypeentry" name="contenttypeentry"                   value="[% attachment.contenttype FILTER html %]"><br>          <input type="checkbox" id="ispatch" name="ispatch" value="1"                 [% 'checked="checked"' IF attachment.ispatch %]>          <label for="ispatch">patch</label>        [% END %]          <input type="checkbox" id="isobsolete" name="isobsolete" value="1"                 [% 'checked="checked"' IF attachment.isobsolete %]>          <label for="isobsolete">obsolete</label>          [% IF (Param("insidergroup") && user.in_group(Param("insidergroup"))) %]            <input type="checkbox" id="isprivate" name="isprivate" value="1"                   [% " checked" IF attachment.isprivate %]>            <label for="isprivate">private</label><br>          [% END %]          <br>        </small>        [% IF flag_types.size > 0 %]          [% PROCESS "flag/list.html.tmpl" bug_id = attachment.bug_id                                           attach_id = attachment.id %]<br>        [% END %]        <div id="smallCommentFrame">          <b><small><label for="comment">Comment</label> (on the          [%+ terms.bug %]):</small></b><br>            [% INCLUDE global/textarea.html.tmpl              id      = 'comment'              name    = 'comment'              minrows = 5              cols    = 25              wrap    = 'soft'            %]<br>        </div>        <input type="submit" value="Submit" id="update"><br><br>        <strong>Actions:</strong>        <a href="attachment.cgi?id=[% attachment.id %]">View</a>        [% IF attachment.ispatch && patchviewerinstalled %]         | <a href="attachment.cgi?id=[% attachment.id %]&amp;action=diff">Diff</a>        [% END %]        [% IF Param("allow_attachment_deletion")              && user.groups.admin              && attachment.datasize > 0 %]          | <a href="attachment.cgi?id=[% attachment.id %]&amp;action=delete">Delete</a>        [% END %]      </td>      [% IF !attachment.datasize %]        <td width="75%"><b>The content of this attachment has been deleted.</b></td>      [% ELSIF isviewable %]        <td width="75%">          [% INCLUDE global/textarea.html.tmpl            id      = 'editFrame'            name    = 'comment'            style   = 'height: 400px; width: 100%; display: none'            minrows = 10            cols    = 80            wrap    = 'soft'          %]          <iframe id="viewFrame" src="attachment.cgi?id=[% attachment.id %]" style="height: 400px; width: 100%;">            <b>You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.            <a href="attachment.cgi?id=[% attachment.id %]">View the attachment on a separate page</a>.</b>          </iframe>          <script type="text/javascript">            <!--            if (typeof document.getElementById == "function") {[% IF patchviewerinstalled %]              document.write('<iframe id="viewDiffFrame" style="height: 400px; width: 100%; display: none;"><\/iframe>');[% END %]              document.write('<button type="button" id="editButton" onclick="editAsComment();">Edit Attachment As Comment<\/button>');              document.write('<button type="button" id="undoEditButton" onclick="undoEditAsComment();" style="display: none;">Undo Edit As Comment<\/button>');              document.write('<button type="button" id="redoEditButton" onclick="redoEditAsComment();" style="display: none;">Redo Edit As Comment<\/button>');[% IF patchviewerinstalled %]              document.write('<button type="button" id="viewDiffButton" onclick="viewDiff();">View Attachment As Diff<\/button>');[% END %]              document.write('<button type="button" id="viewRawButton" onclick="viewRaw();" style="display: none;">View Attachment As Raw<\/button>');            }            //-->          </script>        </td>      [% ELSIF attachment.isurl %]        <td width="75%">          <a href="[% attachment.data FILTER html %]">            [% IF attachment.datasize < 120 %]              [% attachment.data FILTER html %]            [% ELSE %]              [% attachment.data FILTER truncate(80) FILTER html %]              &nbsp;...              [% attachment.data.match(".*(.{20})$").0 FILTER html %]            [% END %]          </a>        </td>      [% ELSE %]        <td id="noview" width="50%">          <p><b>            Attachment is not viewable in your browser because its MIME type             ([% attachment.contenttype FILTER html %]) is not one that your browser is             able to display.          </b></p>          <p><b>            <a href="attachment.cgi?id=[% attachment.id %]">Download the attachment</a>.          </b></p>        </td>      [% END %]    </tr>  </table>  Attachments on this [% terms.Bug %]:  [% FOREACH a = attachments %]    [% IF a == attachment.id %]      [%+ a %]    [% ELSE %]      <a href="attachment.cgi?id=[% a %]&amp;action=edit">[% a %]</a>    [% END %]    [% " |" UNLESS loop.last() %]  [% END %]</form><br>[% PROCESS global/footer.html.tmpl %]

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产成人一区二区三区| 日韩影院在线观看| 国产一区二区在线观看视频| 综合久久国产九一剧情麻豆| 欧美精品免费视频| www.亚洲免费av| 天天综合天天做天天综合| 制服.丝袜.亚洲.中文.综合| 视频精品一区二区| 国产精品美女一区二区在线观看| 99精品国产热久久91蜜凸| 午夜亚洲国产au精品一区二区 | 污片在线观看一区二区| 91精品国产91久久久久久一区二区 | 精品粉嫩aⅴ一区二区三区四区| 丁香婷婷综合五月| 日韩激情中文字幕| 天堂一区二区在线| 美女视频网站黄色亚洲| 国内精品久久久久影院薰衣草| 人人精品人人爱| 国产在线精品免费| 不卡一二三区首页| 免费观看日韩电影| 日韩av不卡一区二区| 亚洲天堂成人网| 国产精品久久久久久久久免费相片| 日韩美女天天操| 日韩欧美视频在线| 日韩一级大片在线观看| 91.com在线观看| 欧美综合视频在线观看| 91国偷自产一区二区开放时间| 99热国产精品| 日本精品裸体写真集在线观看 | 国产91清纯白嫩初高中在线观看| 免费的成人av| 青青草国产成人99久久| 国内精品国产成人| www.视频一区| 91黄视频在线| 精品美女在线观看| 久久精品一区八戒影视| 国产精品色眯眯| 亚洲成av人片一区二区三区| 日韩高清电影一区| 成人免费毛片嘿嘿连载视频| 91丝袜国产在线播放| 蜜臂av日日欢夜夜爽一区| 午夜精品久久久久久久久久久| 秋霞午夜鲁丝一区二区老狼| 国产成人精品免费| 色综合久久久久综合| 精品久久久久香蕉网| 欧美日韩国产综合一区二区 | 97se亚洲国产综合在线| 欧美视频自拍偷拍| 欧美一级一区二区| 国产精品亚洲第一区在线暖暖韩国| 日韩视频免费直播| 成人午夜大片免费观看| 亚洲欧洲av在线| 欧美日韩日日摸| 国产酒店精品激情| 欧美日韩精品欧美日韩精品| 亚洲一区中文在线| 欧美精品第1页| 国产精品亚洲成人| 亚洲桃色在线一区| 日韩一区二区在线观看视频 | 欧美日韩中文字幕一区二区| 日韩电影在线观看网站| 久久亚洲综合色一区二区三区| 97国产一区二区| 日精品一区二区三区| 国产亚洲成aⅴ人片在线观看| 99精品国产视频| 免费观看一级欧美片| 国产精品第四页| 欧美大胆人体bbbb| 日本黄色一区二区| 精品一区二区影视| 欧美日韩成人激情| 亚洲午夜在线电影| 7777精品久久久大香线蕉 | 不卡一区在线观看| 色婷婷综合中文久久一本| 91黄色免费看| 国产欧美一区二区精品性| 丝袜美腿亚洲一区| 欧美亚洲自拍偷拍| 成人欧美一区二区三区白人 | 日本不卡高清视频| 欧美日韩中文字幕精品| 一区二区三区在线播放| 本田岬高潮一区二区三区| 国产精品免费网站在线观看| 成人丝袜18视频在线观看| 久久久无码精品亚洲日韩按摩| 精品一区二区三区免费播放| 日韩视频在线永久播放| 日本视频在线一区| 欧美日韩视频专区在线播放| 亚洲最大成人综合| 欧美色综合影院| 婷婷六月综合网| 欧美剧情电影在线观看完整版免费励志电影 | 9191国产精品| 日本va欧美va精品| 欧美一区二区视频在线观看2022 | 一本一道综合狠狠老| 国产精品乱码人人做人人爱| 午夜成人免费电影| 久久国产欧美日韩精品| 亚洲线精品一区二区三区| 国产精品每日更新| 91精品久久久久久久99蜜桃| 成人免费看的视频| 国产真实乱子伦精品视频| 久久久久久久一区| 91美女片黄在线观看91美女| 美国欧美日韩国产在线播放| 天堂精品中文字幕在线| 亚洲欧美日韩在线不卡| 中文字幕不卡的av| 久久综合色播五月| 久久综合中文字幕| 日韩午夜av一区| 日韩精品一区二区三区在线播放 | 福利一区福利二区| 免费成人av在线| 亚洲五月六月丁香激情| 亚洲综合一区二区三区| 欧美色综合网站| 99久久99久久精品免费看蜜桃| 国产在线精品免费| 日韩不卡在线观看日韩不卡视频| 日本一二三四高清不卡| 欧美三级韩国三级日本一级| 精品午夜一区二区三区在线观看| 亚洲视频狠狠干| 亚洲图片你懂的| 精品久久人人做人人爰| 日韩一区二区三区免费看| 久久免费偷拍视频| 中文字幕一区av| 亚洲欧洲精品成人久久奇米网| 亚洲精选视频免费看| 一区二区三区在线观看国产| 日本视频一区二区| 激情五月激情综合网| 国产综合色视频| 99九九99九九九视频精品| 精品视频色一区| 91国产免费看| 中国av一区二区三区| 日本一道高清亚洲日美韩| 性做久久久久久免费观看| 色综合天天综合网天天看片| 亚洲三级免费电影| 日韩视频免费观看高清在线视频| 成人福利视频在线看| 日韩精品一二三区| 中文字幕一区二区三区不卡在线| 91精品国产91久久久久久一区二区| 成人免费黄色大片| 美国av一区二区| 一区二区三区在线看| 久久久久久麻豆| 欧美肥妇free| 91猫先生在线| 国产91丝袜在线18| 久久99精品久久久久久动态图 | 久久婷婷国产综合精品青草| 日本高清无吗v一区| 国产成人亚洲综合a∨猫咪| 午夜精品久久久久影视| 亚洲欧洲一区二区在线播放| 久久综合久久综合亚洲| 制服丝袜亚洲播放| 色噜噜久久综合| 国产99久久久国产精品潘金网站| 午夜精品免费在线观看| 一区二区三区四区中文字幕| 中文字幕欧美三区| 久久精品亚洲精品国产欧美| 日韩欧美中文字幕制服| 欧美专区亚洲专区| 99v久久综合狠狠综合久久| 国产成人在线电影| 蜜桃精品在线观看| 首页亚洲欧美制服丝腿| 亚洲二区在线视频| 亚洲精品综合在线| 日韩美女精品在线| 成人欧美一区二区三区黑人麻豆 | 国内精品第一页| 免费高清不卡av| 日韩国产精品91| 亚州成人在线电影|