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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? diff-header.html.tmpl

?? buzilla軟件
?? TMPL
?? 第 1 頁 / 共 2 頁
字號:
#------------------------------------------------------------------------# 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 {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精工是国产品牌吗| 亚洲精品乱码久久久久久黑人| 视频一区二区三区在线| 在线观看日韩电影| 亚洲图片欧美色图| 日韩一区二区三区精品视频| 老司机精品视频一区二区三区| 欧美大胆人体bbbb| 成人黄色软件下载| 一区二区三区国产豹纹内裤在线| 欧美天堂一区二区三区| 日韩avvvv在线播放| 久久久99久久| 一本到不卡免费一区二区| 亚洲电影你懂得| www国产精品av| 92精品国产成人观看免费| 亚洲成人免费视频| 欧美精品一区二区在线观看| 国产福利一区二区三区| 国产精品久久久久久福利一牛影视| 91视视频在线观看入口直接观看www | 欧美精彩视频一区二区三区| 97超碰欧美中文字幕| 亚洲午夜羞羞片| 久久免费美女视频| 欧美三级电影在线看| 久久99精品久久久久久动态图| 国产精品三级在线观看| 欧美视频日韩视频| 国产另类ts人妖一区二区| 亚洲免费av网站| 精品精品国产高清一毛片一天堂| 99久久精品免费精品国产| 日韩成人午夜电影| 国产精品久久久久久久久免费丝袜 | 懂色av中文字幕一区二区三区 | 成人激情小说乱人伦| 亚洲一区二区在线观看视频| 久久综合久色欧美综合狠狠| 日本韩国视频一区二区| 国产精品2024| 奇米888四色在线精品| 亚洲视频图片小说| 国产亚洲精久久久久久| 4hu四虎永久在线影院成人| 成人午夜激情视频| 蜜桃av噜噜一区| 亚洲午夜免费电影| 国产精品久久久久久妇女6080| 日韩欧美高清一区| 欧美三级视频在线观看| 在线精品视频一区二区三四| 精品在线免费观看| 香蕉久久夜色精品国产使用方法 | 91精品国产高清一区二区三区| www.久久久久久久久| 另类小说综合欧美亚洲| 亚洲一级二级三级| 亚洲视频 欧洲视频| 久久久久97国产精华液好用吗| 欧美日韩视频一区二区| 99久久精品免费| 国产精品亚洲成人| 黑人精品欧美一区二区蜜桃| 日本中文字幕一区二区有限公司| 亚洲综合免费观看高清在线观看| 国产精品久久久久久久久免费桃花| 久久伊99综合婷婷久久伊| 日韩你懂的在线观看| 欧美日韩国产经典色站一区二区三区| 99久久婷婷国产| 99国产欧美另类久久久精品| 国产**成人网毛片九色 | 欧美一级夜夜爽| 欧美精品久久99久久在免费线| 91国偷自产一区二区使用方法| a在线欧美一区| 99久久久精品| 91久久久免费一区二区| 欧洲国产伦久久久久久久| 97se亚洲国产综合自在线不卡| 成人av免费观看| www.视频一区| 在线精品观看国产| 欧美日韩一级大片网址| 91精品国产综合久久国产大片| 91精品国产综合久久精品图片| 555www色欧美视频| 欧美成人高清电影在线| xf在线a精品一区二区视频网站| 久久久久久一级片| 国产精品不卡在线| 亚洲香肠在线观看| 免费在线观看不卡| 国产麻豆精品视频| av电影在线观看一区| 一本久久a久久精品亚洲| 欧美日韩一区二区三区高清| 欧美一区日本一区韩国一区| 日韩精品中午字幕| 一色桃子久久精品亚洲| 亚洲综合成人在线视频| 午夜久久久久久| 国内一区二区视频| 色综合久久天天| 欧美日韩国产成人在线91| 日韩精品在线一区| 亚洲欧洲日本在线| 午夜一区二区三区在线观看| 久久国产精品72免费观看| www.亚洲国产| 欧美一区二区三区在线看| 国产婷婷色一区二区三区在线| 亚洲人午夜精品天堂一二香蕉| 天天色图综合网| 国产精品影视在线观看| 欧美日韩亚洲综合一区| 久久亚洲捆绑美女| 亚洲午夜激情网页| 国产成人h网站| 91精品国产综合久久久蜜臀粉嫩 | 欧美无砖专区一中文字| 久久久久久一级片| 天天色图综合网| 99在线精品观看| 日韩欧美国产综合在线一区二区三区 | 中文幕一区二区三区久久蜜桃| 一区二区欧美国产| 国产经典欧美精品| 91精品国产色综合久久| 亚洲日本va在线观看| 国内精品国产成人国产三级粉色| 99视频有精品| 欧美精品一区二区久久婷婷| 亚洲综合色在线| 成人中文字幕电影| 欧美刺激脚交jootjob| 亚洲国产sm捆绑调教视频| 成人妖精视频yjsp地址| 精品精品国产高清a毛片牛牛| 一区二区三区四区不卡视频| 国产精品综合av一区二区国产馆| 在线欧美一区二区| 欧美激情自拍偷拍| 精品中文字幕一区二区小辣椒| 欧美日韩一级片在线观看| 日韩理论片在线| 国产·精品毛片| 国产性天天综合网| 激情五月激情综合网| 欧美一区二区三区视频在线观看| 亚洲综合丁香婷婷六月香| 91在线观看美女| 中文字幕一区二区三区av| 精品综合免费视频观看| 日韩欧美美女一区二区三区| 亚洲一区二区三区国产| 97久久人人超碰| 国产精品久久久久久久久动漫| 国产精品自产自拍| 久久精品一区二区三区不卡| 久热成人在线视频| 日韩美女一区二区三区四区| 天天影视网天天综合色在线播放| 欧美午夜精品一区二区蜜桃| 亚洲黄色av一区| 欧美亚洲高清一区| 亚洲一区二区三区三| 欧美日韩另类一区| 日韩激情视频在线观看| 欧美视频精品在线观看| 图片区小说区区亚洲影院| 欧美色精品天天在线观看视频| 亚洲专区一二三| 这里只有精品99re| 免费观看在线综合| 亚洲精品一区二区三区香蕉| 久久99精品久久久久久久久久久久| 精品国精品自拍自在线| 国产高清久久久| 国产精品美女久久久久久久久久久| 成人白浆超碰人人人人| 亚洲日本青草视频在线怡红院 | 欧洲人成人精品| 亚洲成av人片在线观看无码| 欧美老肥妇做.爰bbww视频| 麻豆精品一区二区| 久久伊99综合婷婷久久伊| 成人激情动漫在线观看| 亚洲小说欧美激情另类| 欧美变态tickle挠乳网站| 成人免费视频caoporn| 亚洲综合在线电影| 欧美videos中文字幕| 成人涩涩免费视频| 亚洲成人777| 国产偷国产偷亚洲高清人白洁 | 日本va欧美va精品| 久久久久国色av免费看影院|