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

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

?? diff-header.html.tmpl

?? buzilla軟件
?? TMPL
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
#------------------------------------------------------------------------# Compiled template generated by the Template Toolkit version 2.20#------------------------------------------------------------------------Template::Document->new({    METADATA => {        'modtime' => '1224525394',        'name' => 'attachment/diff-header.html.tmpl',    },    BLOCK => sub {        my $context = shift || die "template sub called without context\n";        my $stash   = $context->stash;        my $output  = '';        my $_tt_error;                eval { BLOCK: {    $output .=  "\n";    $output .=  "\n\n";    $output .=  "\n";    #line 24 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $context->process('global/variables.none.tmpl');    $output .=  "\n";    #line 32 "template\en\default\attachment\diff-header.html.tmpl"        # CAPTURE    $stash->set('title', do {        my $output = '';    #line 31 "template\en\default\attachment\diff-header.html.tmpl"    if ($stash->get('attachid')) {    $output .=  "\nAttachment #";    #line 28 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get('attachid');    $output .=  " for ";    #line 28 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get(['terms', 0, 'bug', 0]);    $output .=  " #";    #line 28 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get('bugid');    }    else {    $output .=  "\nInterdiff of #";    #line 30 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get('oldid');    $output .=  " and #";    #line 30 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get('newid');    $output .=  " for ";    #line 30 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get(['terms', 0, 'bug', 0]);    $output .=  " #";    #line 30 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get('bugid');    }            $output;    });        $output .=  "\n";    #line 103 "template\en\default\attachment\diff-header.html.tmpl"        # CAPTURE    $stash->set('style', do {        my $output = '';    $output .=  "\n.file_head {\n  font-weight: bold;\n  font-size: 1em;\n  background-color: #c3c3c3;\n  border: 1px solid black;\n  width: 100%;\n}\n\n.file_head a {\n  text-decoration: none; \n  font-family: monospace; \n  font-size: 1.1em;\n}\n\n.file_collapse {\n  display: none;\n}\n\n.section_head {\n  width: 100%;\n  background-color: #f0f0f0;\n  border: 1px solid black;\n  text-align: left;\n}\n\ntable.file_table {\n  table-layout: fixed;\n  width: 100%;\n  empty-cells: show;\n  border-spacing: 0px;\n  border-collapse: collapse;\n  /* draw border below last open context section in listing */\n  border-bottom: 1px solid black;\n}\n\ntbody.file td {\n  border-left: 1px dashed black;\n  border-right: 1px dashed black;\n  width: 50%;\n}\n\ntbody.file pre {\n  display: inline;\n  white-space: pre-wrap; /* CSS 3 & CSS 2.1 */\n  white-space: -moz-pre-wrap; /* Gecko < 1.9.1 */\n  white-space: -o-pre-wrap; /* Opera 7 */\n  font-size: 0.9em;\n}\n\ntbody.file pre:empty {\n  display: block;\n}\n\n.changed {\n  background-color: lightblue;\n}\n\n.added {\n  background-color: lightgreen;\n}\n\n.removed {\n  background-color: #FFCC99;\n}\n\n.warning {\n  color: red\n}";        $output;    });        $output .=  "\n\n";    #line 203 "template\en\default\attachment\diff-header.html.tmpl"        # CAPTURE    $stash->set('javascript', do {        my $output = '';    $output .=  "\n  function collapse_all() {\n    var elem = document.checkboxform.firstChild;\n    while (elem != null) {\n      if (elem.firstChild != null) {\n        var tbody = elem.firstChild.nextSibling;\n        if (tbody.className == 'file') {\n          tbody.className = 'file_collapse';\n          twisty = get_twisty_from_tbody(tbody);\n          twisty.firstChild.nodeValue = '(+)';\n          twisty.nextSibling.checked = false;\n        }\n      }\n      elem = elem.nextSibling;\n    }\n    return false;\n  }\n\n  function expand_all() {\n    var elem = document.checkboxform.firstChild;\n    while (elem != null) {\n      if (elem.firstChild != null) {\n        var tbody = elem.firstChild.nextSibling;\n        if (tbody.className == 'file_collapse') {\n          tbody.className = 'file';\n          twisty = get_twisty_from_tbody(tbody);\n          twisty.firstChild.nodeValue = '(-)';\n          twisty.nextSibling.checked = true;\n        }\n      }\n      elem = elem.nextSibling;\n    }\n    return false;\n  }\n\n  var current_restore_elem;\n\n  function restore_all() {\n    current_restore_elem = null;\n    incremental_restore();\n  }\n\n  function incremental_restore() {\n    if (!document.checkboxform.restore_indicator.checked) {\n      return;\n    }\n    var next_restore_elem;\n    if (current_restore_elem) {\n      next_restore_elem = current_restore_elem.nextSibling;\n    } else {\n      next_restore_elem = document.checkboxform.firstChild;\n    }\n    while (next_restore_elem != null) {\n      current_restore_elem = next_restore_elem;\n      if (current_restore_elem.firstChild != null) {\n        restore_elem(current_restore_elem.firstChild.nextSibling);\n      }\n      next_restore_elem = current_restore_elem.nextSibling;\n    }\n  }\n\n  function restore_elem(elem, alertme) {\n    if (elem.className == 'file_collapse') {\n      twisty = get_twisty_from_tbody(elem);\n      if (twisty.nextSibling.checked) {\n        elem.className = 'file';\n        twisty.firstChild.nodeValue = '(-)';\n      }\n    } else if (elem.className == 'file') {\n      twisty = get_twisty_from_tbody(elem);\n      if (!twisty.nextSibling.checked) {\n        elem.className = 'file_collapse';\n        twisty.firstChild.nodeValue = '(+)';\n      }\n    }\n  }\n\n  function twisty_click(twisty) {\n    tbody = get_tbody_from_twisty(twisty);\n    if (tbody.className == 'file') {\n      tbody.className = 'file_collapse';\n      twisty.firstChild.nodeValue = '(+)';\n      twisty.nextSibling.checked = false;\n    } else {\n      tbody.className = 'file';\n      twisty.firstChild.nodeValue = '(-)';\n      twisty.nextSibling.checked = true;\n    }\n    return false;\n  }\n\n  function get_tbody_from_twisty(twisty) {\n    return twisty.parentNode.parentNode.parentNode.nextSibling;\n  }\n  function get_twisty_from_tbody(tbody) {\n    return tbody.previousSibling.firstChild.firstChild.firstChild;\n  }";        $output;    });        $output .=  "\n";    #line 205 "template\en\default\attachment\diff-header.html.tmpl"    $stash->set('onload', 'restore_all(); document.checkboxform.restore_indicator.checked = true');        $output .=  "\n";                $output .=  "\n";    #line 240 "template\en\default\attachment\diff-header.html.tmpl"    if ($stash->get('headers')) {    #line 222 "template\en\default\attachment\diff-header.html.tmpl"        # CAPTURE    $stash->set('header', do {        my $output = '';    #line 220 "template\en\default\attachment\diff-header.html.tmpl"    if ($stash->get('attachid')) {    $output .=  "\n      Attachment #";    #line 214 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get('attachid');    $output .=  ": ";    #line 214 "template\en\default\attachment\diff-header.html.tmpl"        # FILTER    $output .=  do {        my $output = '';        my $_tt_filter = $context->filter('html')                  || $context->throw($context->error);        $output .=  $stash->get('description');                &$_tt_filter($output);    };        }    else {    $output .=  "\n      Diff Between \n       #";    #line 217 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get('oldid');    $output .=  ": <a href=\"";    #line 217 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $context->process('diffurl', { 'id' => $stash->get('oldid') });    $output .=  "\">";    #line 217 "template\en\default\attachment\diff-header.html.tmpl"        # FILTER    $output .=  do {        my $output = '';        my $_tt_filter = $context->filter('html')                  || $context->throw($context->error);        $output .=  $stash->get('old_desc');                &$_tt_filter($output);    };        $output .=  "</a>\n      and \n       #";    #line 219 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get('newid');    $output .=  ": <a href=\"";    #line 219 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $context->process('diffurl', { 'id' => $stash->get('newid') });    $output .=  "\">";    #line 219 "template\en\default\attachment\diff-header.html.tmpl"        # FILTER    $output .=  do {        my $output = '';        my $_tt_filter = $context->filter('html')                  || $context->throw($context->error);        $output .=  $stash->get('new_desc');                &$_tt_filter($output);    };        $output .=  "</a>";    }        $output .=  "\n    for <a href=\"show_bug.cgi?id=";    #line 221 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get('bugid');    $output .=  "\">";    #line 221 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get(['terms', 0, 'bug', 0]);    $output .=  " #";    #line 221 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get('bugid');    $output .=  "</a>";        $output;    });        #line 225 "template\en\default\attachment\diff-header.html.tmpl"        # CAPTURE    $stash->set('subheader', do {        my $output = '';    #line 224 "template\en\default\attachment\diff-header.html.tmpl"        # FILTER    $output .=  do {        my $output = '';        my $_tt_filter = $context->filter('html')                  || $context->throw($context->error);        $output .=  $stash->get('bugsummary');                &$_tt_filter($output);    };            $output;    });        #line 226 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $context->process('global/header.html.tmpl');    }    else {    $output .=  "\n  <html>\n  <head>\n  <style type=\"text/css\">";    #line 231 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get('style');    $output .=  "\n  </style>\n  <script type=\"text/javascript\">\n  <!--";    #line 235 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $stash->get('javascript');    $output .=  "\n  -->\n  </script>\n  </head>\n  <body onload=\"";    #line 239 "template\en\default\attachment\diff-header.html.tmpl"        # FILTER    $output .=  do {        my $output = '';        my $_tt_filter = $context->filter('html')                  || $context->throw($context->error);        $output .=  $stash->get('onload');                &$_tt_filter($output);    };        $output .=  "\">";    }        $output .=  "\n  \n";    #line 274 "template\en\default\attachment\diff-header.html.tmpl"    if ($stash->get('attachid')) {    $output .=  "\n  ";    #line 249 "template\en\default\attachment\diff-header.html.tmpl"    if ($stash->get('headers')) {    $output .=  "\n    <a href=\"";    #line 246 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $context->process('viewurl', { 'id' => $stash->get('attachid') });    $output .=  "\">View</a>\n    | <a href=\"";    #line 247 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $context->process('editurl', { 'id' => $stash->get('attachid') });    $output .=  "\">Details</a>\n    | <a href=\"";    #line 248 "template\en\default\attachment\diff-header.html.tmpl"    $output .=  $context->process('diffurl', { 'id' => $stash->get('attachid') });    $output .=  "&amp;context=";    #line 248 "template\en\default\attachment\diff-header.html.tmpl"        # FILTER    $output .=  do {        my $output = '';        my $_tt_filter = $context->filter('url_quote')                  || $context->throw($context->error);        $output .=  $stash->get('context');                &$_tt_filter($output);    };        $output .=  "&amp;collapsed=";    #line 248 "template\en\default\attachment\diff-header.html.tmpl"        # FILTER    $output .=  do {        my $output = '';        my $_tt_filter = $context->filter('url_quote')                  || $context->throw($context->error);        $output .=  $stash->get('collapsed');                &$_tt_filter($output);    };        $output .=  "&amp;headers=";    #line 248 "template\en\default\attachment\diff-header.html.tmpl"        # FILTER    $output .=  do {        my $output = '';        my $_tt_filter = $context->filter('url_quote')                  || $context->throw($context->error);        $output .=  $stash->get('headers');                &$_tt_filter($output);    };        $output .=  "&amp;format=raw\">Raw&nbsp;Unified</a>";    }        #line 267 "template\en\default\attachment\diff-header.html.tmpl"    if ($stash->get(['other_patches', 0, 'size', 0]) > 0) {    #line 251 "template\en\default\attachment\diff-header.html.tmpl"    if ($stash->get('headers')) {    $output .=  " |";    }        $output .=  "\n    Differences between\n    <form style=\"display: inline\" action=\"attachment.cgi\">\n      <select name=\"oldid\">";    #line 259 "template\en\default\attachment\diff-header.html.tmpl"        # FOREACH     do {

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
粉嫩一区二区三区性色av| 亚洲欧洲日韩一区二区三区| 久久久久亚洲蜜桃| 中文字幕第一页久久| 一区二区三区欧美| 久久草av在线| 99久久久久久| 8x8x8国产精品| 国产清纯在线一区二区www| 亚洲三级电影网站| 日本午夜精品视频在线观看| 国产在线不卡一区| 91久久免费观看| 精品国内二区三区| 亚洲人成精品久久久久| 蜜桃视频免费观看一区| 不卡电影一区二区三区| 欧美肥大bbwbbw高潮| 国产三级欧美三级日产三级99| 一区二区视频在线| 久久99在线观看| 欧美色综合天天久久综合精品| 欧美精品一区二区在线播放| 一区二区三区中文在线| 狠狠色丁香婷综合久久| 91高清在线观看| 久久久久国色av免费看影院| 亚洲国产一区在线观看| 风间由美一区二区av101 | 欧美激情在线一区二区| 亚州成人在线电影| 不卡大黄网站免费看| 精品第一国产综合精品aⅴ| 一区二区三区蜜桃网| 国产精品亚洲一区二区三区在线| 欧美日韩在线不卡| 成人欧美一区二区三区| 国产精品资源网站| 日韩一区二区视频在线观看| 亚洲色图一区二区三区| 国产精品资源站在线| 日韩欧美一级二级| 午夜精品一区二区三区免费视频| 不卡的电影网站| 久久精品一区二区三区不卡| 日韩av网站在线观看| 欧美视频一区二区三区四区| 亚洲视频中文字幕| 成人免费高清视频在线观看| 精品国产乱码久久久久久影片| 偷拍日韩校园综合在线| 在线观看中文字幕不卡| 亚洲三级在线看| voyeur盗摄精品| 国产视频亚洲色图| 国产精品资源在线看| 精品电影一区二区三区| 青青草97国产精品免费观看无弹窗版| 91丝袜高跟美女视频| 国产精品伦一区| 国产盗摄一区二区| 国产日韩欧美高清| 国产精品99久久久久久久女警 | 毛片av一区二区| 91精品啪在线观看国产60岁| 亚洲bt欧美bt精品777| 欧美日韩中文字幕精品| 一区二区三区日韩在线观看| 91色综合久久久久婷婷| 亚洲免费av高清| 色呦呦国产精品| 亚洲免费观看高清在线观看| av男人天堂一区| 中文字幕色av一区二区三区| youjizz国产精品| 亚洲视频在线一区| 在线视频观看一区| 亚洲五码中文字幕| 欧美亚洲丝袜传媒另类| 亚洲成人精品一区二区| 欧美乱妇20p| 久久不见久久见中文字幕免费| 精品99一区二区三区| 国产一区二区美女| 国产欧美日韩中文久久| 99国产欧美另类久久久精品| 亚洲欧美日韩电影| 欧美日韩一区三区| 日韩成人免费看| 精品999在线播放| 成人午夜碰碰视频| 亚洲嫩草精品久久| 777亚洲妇女| 国产自产高清不卡| 国产精品久久久久久久第一福利| 99vv1com这只有精品| 亚洲国产综合在线| 欧美r级电影在线观看| 国产福利一区二区三区在线视频| 中文字幕制服丝袜一区二区三区| 色哦色哦哦色天天综合| 亚洲韩国精品一区| 亚洲精品一区二区在线观看| 不卡av免费在线观看| 99re8在线精品视频免费播放| 亚洲欧美福利一区二区| 欧美日本乱大交xxxxx| 精品中文字幕一区二区小辣椒| 国产欧美一区二区三区在线老狼| 91老司机福利 在线| 日本不卡一二三| 国产日韩欧美精品综合| 欧美日韩一区二区三区在线| 久久福利视频一区二区| 亚洲男女毛片无遮挡| 91精品国产综合久久香蕉的特点 | 国产色爱av资源综合区| 91国产免费观看| 狠狠色狠狠色合久久伊人| 亚洲另类色综合网站| 日韩一区二区麻豆国产| 99国产精品久久久久久久久久久| 五月激情综合色| 国产欧美日韩精品在线| 欧美日韩三级一区二区| 国产白丝精品91爽爽久久| 亚洲成人av资源| 日本一二三四高清不卡| 欧美群妇大交群中文字幕| 激情成人午夜视频| 一级女性全黄久久生活片免费| 精品区一区二区| 欧洲一区二区三区在线| 国产在线精品免费av| 亚洲va韩国va欧美va精品| 欧美韩日一区二区三区| 91精品国产综合久久婷婷香蕉| 成人av网站免费| 老司机精品视频在线| 一区二区三区视频在线观看| 日本一区二区三区电影| 欧美一区二区高清| 一本大道综合伊人精品热热 | 中文字幕第一区二区| 欧美一区永久视频免费观看| 91在线视频免费91| 国产乱人伦精品一区二区在线观看| 亚洲成人一区在线| 日韩美女啊v在线免费观看| 久久色成人在线| 亚洲第一搞黄网站| 国产精品三级av| 久久久久一区二区三区四区| 欧美一区二区精品在线| 欧美日韩在线播放三区四区| 91看片淫黄大片一级| 国产精品一卡二卡在线观看| 麻豆精品久久精品色综合| 五月婷婷欧美视频| 亚洲综合一区二区精品导航| 国产精品免费丝袜| 国产亚洲一区二区在线观看| 欧美成人a视频| 日韩三级av在线播放| 欧美日韩一级二级三级| 91九色02白丝porn| 99久久免费国产| 99久久er热在这里只有精品15| 国产成人av一区二区| 狠狠色丁香久久婷婷综| 美女一区二区三区| 美女诱惑一区二区| 久久精品国产成人一区二区三区| 日本不卡免费在线视频| 三级久久三级久久| 午夜伊人狠狠久久| 五月天一区二区三区| 天天免费综合色| 男人的天堂久久精品| 日韩国产高清影视| 免费一级欧美片在线观看| 青娱乐精品在线视频| 丝瓜av网站精品一区二区| 天天影视涩香欲综合网| 调教+趴+乳夹+国产+精品| 日本女优在线视频一区二区| 青椒成人免费视频| 麻豆精品久久精品色综合| 国模冰冰炮一区二区| 国产精品77777竹菊影视小说| 豆国产96在线|亚洲| aaa欧美日韩| 在线观看日韩av先锋影音电影院| 日本韩国一区二区三区| 欧美性受极品xxxx喷水| 欧美久久久久久久久中文字幕| 欧美一级艳片视频免费观看| 精品少妇一区二区| 国产午夜精品理论片a级大结局| 国产清纯美女被跳蛋高潮一区二区久久w |