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

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

?? schedule.html.tmpl

?? buzilla軟件
?? TMPL
字號:
[%# 1.0@bugzilla.org %][%# -*- mode: html -*- %][%# 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): Erik Stambaugh <erik@dasbistro.com>  #%][%# INTERFACE:  # events: hash, keyed by event_id number.  Values are anonymous hashes of:  #     schedule: array of hashes containing schedule info:  #         day:    value in day column  #         time:   value selected in time column  #         mailto_type: 0=user 1=group  #         mailto: recipient's id (profile or group)  #     queries:  as with schedule, an anonymous array containing hashes of:  #         name:  the named query's name  #         title: title to be displayed on the results  #         sort:  integer that sets execution order on named queries  #%][% PROCESS global/variables.none.tmpl %][% title = "Set up whining" %][% PROCESS global/header.html.tmpl %]<p>  "Whining" is when [% terms.Bugzilla %] executes a saved query at a regular interval  and sends the resulting list of [% terms.bugs %] via email.</p><p>  To set up a new whine event, click "Add a new event."  Enter a subject line  for the message that will be sent, along with a block of text that will  accompany the [% terms.bug %] list in the body of the message.</p><p>  Schedules are added to an event by clicking on "Add a new schedule."  A schedule  consists of a day, a time of day or interval of times  (e.g., every 15 minutes), and a target email address that may or may not be  alterable, depending on your privileges.  Events may have more than one schedule  in order to run at multiple times or for different users.</p><p>  Searches come from saved searches, which are created by executing a <a  href="query.cgi">search</a>, then telling [% terms.Bugzilla %] to remember  the search under a particular name.  Add a query by clicking "Add a new  query", and select the desired saved search name under "Search" and add a  title for the [% terms.bug %] table.  The optional number entered under  "Sort" will determine the execution order (lowest to highest) if multiple  queries are listed.  If you check "One message per [% terms.bug %]," each [%  terms.bug %] that matches the search will be sent in its own email message.</p><p>  [% IF Param("timezone") %]    All times are server local time ([% Param("timezone") FILTER upper %]).  [% ELSE %]    All times are server local time.  [% END %]</p><form method="post" action="editwhines.cgi">[%# This hidden submit button must be here to set default behavior when    the user presses return on a form input field #%]<input type="submit" value="Update / Commit" name="commit"       style="display: none;" id="commit"><input type="hidden" name="update" value="1"><input type="hidden" name="token" value="[% token FILTER html %]">[% FOREACH event = events %]<table cellspacing="2" cellpadding="2" width="100%"       style="border: 1px solid;">  <tr>    <th align="left" bgcolor="#FFFFFF" colspan="2">      Event:     </th>    <td align="right">      <input type="submit" value="Remove Event"             name="remove_event_[% event.key %]"             id="remove_event_[% event.key %]">    </td>  </tr>  <tr>    <td valign="top" align="right">      Email subject line:    </td>    <td>      <input type="text" name="event_[% event.key %]_subject"             size="60" maxlength="128" value="             [%- event.value.subject FILTER html %]">    </td>  </tr>  <tr>    <td valign="top" align="right">      Descriptive text sent within whine message:    </td>    <td>      [% INCLUDE global/textarea.html.tmpl         name           = "event_${event.key}_body"         minrows        = 3         maxrows        = 10         defaultrows    = 5         cols           = 80         defaultcontent = event.value.body       %]    </td>  </tr>  [% IF event.value.schedule.size == 0 %]    <tr>      <td valign="top" align="right">        Schedule:      </td>      <td align="left" bgcolor="#FFEEEE">        Not scheduled to run<br>        <input type="submit" value="Add a new schedule"               name="add_schedule_[% event.key %]"               id="add_schedule_[% event.key %]">      </td>    </tr>  [% ELSE %]    <tr>      <td valign="top" align="right">        Schedule:      </td>      <td align="left" bgcolor="#EEFFEE">        <table>          <tr>            <th>              Interval            </th>            [% IF mail_others %]              <th>                Mail to              </th>            [% END %]          </tr>          [% FOREACH schedule = event.value.schedule %]            <tr>              <td align="left">                [%# these hidden fields allow us to compare old values instead                    of reading the database to tell if a field has changed %]                <input type="hidden" value="[% schedule.day FILTER html %]"                       name="orig_day_[% schedule.id %]">                <input type="hidden" value="[% schedule.time FILTER html %]"                       name="orig_time_[% schedule.id %]">                [% PROCESS day_field val=schedule.day %]                [% PROCESS time_field val=schedule.time %]              </td>              <td align="left">                [% IF mail_others %]                  <input type="hidden" name="orig_mailto_type_[% schedule.id %]"                         value="[% schedule.mailto_type FILTER html %]">                  <select name="mailto_type_[% schedule.id %]">                    <option value="0" [% IF schedule.mailto_type == 0 %]                                        selected                                      [% END %]>User</option>                    <option value="1" [% IF schedule.mailto_type == 1 %]                                        selected                                      [% END %]>Group</option>                  </select>                  <input type="hidden" name="orig_mailto_[% schedule.id %]"                         value="[% schedule.mailto FILTER html %]">                  <input type="text" name="mailto_[% schedule.id %]"                         value="[% schedule.mailto FILTER html %]" size="30">                [% END %]              </td>              <td align="left">                <input type="submit" value="Remove"                       name="remove_schedule_[% schedule.id %]"                       id="remove_schedule_[% schedule.id %]">              </td>            </tr>          [% END %]        <tr>          <td>            <input type="submit" value="Add a new schedule"                   name="add_schedule_[% event.key %]"                   id="add_schedule_[% event.key %]">          </td>        </tr>        </table>      </td>    </tr>  [% END %]  [% IF event.value.queries.size == 0 %]    <tr>      <td valign="top" align="right">        Searches:      </td>      <td align="left" colspan="1">        No searches <br>        <input type="submit" value="Add a new query"               name="add_query_[% event.key %]"               id="add_query_[% event.key %]">      </td>      <td align="right" valign="bottom">        <input type="submit" value="Update / Commit" name="commit" id="update">      </td>    </tr>  [% ELSE %]    <tr>      <td valign="top" align="right">        Searches:      </td>      <td align="left">        <table>          <tr>            <th>Sort</th>            <th>Search</th>            <th>Title</th>          </tr>          [% FOREACH query = event.value.queries %]            <tr>              <td align="left">                <input type="text" name="query_sort_[% query.id %]"                       size="3" value="[% query.sort %]">                <input type="hidden" value="[% query.sort %]"                       name="orig_query_sort_[% query.id %]">              </td>              <td align="left">                <input type="hidden" value="[% query.name FILTER html %]"                       name="orig_query_name_[% query.id %]">                [% PROCESS query_field thisquery=query.name %]              </td>              <td align="left">                <input type="hidden" value="[% query.title FILTER html %]"                       name="orig_query_title_[% query.id %]">                <input type="text" name="query_title_[% query.id %]"                       size="50" value="[% query.title FILTER html %]"                       maxlength="64">              </td>              <td align="left">                <input type="hidden" value="[% query.onemailperbug FILTER html %]"                       name="orig_query_onemailperbug_[% query.id %]">                <input type="checkbox" [% IF query.onemailperbug == 1 %]                       checked [% END %]name="query_onemailperbug_                       [% query.id %]">                One message per [% terms.bug %]              </td>              <td align="right">                <input type="submit" value="Remove"                       name="remove_query_[% query.id %]"                       id="remove_query_[% query.id %]">              </td>            </tr>          [% END %]          <tr>            <td colspan="3">              <input type="submit" value="Add a new query"                     name="add_query_[% event.key %]"                     id="add_query_[% event.key %]">            </td>          </tr>        </table>      </td>      <td align="right" valign="bottom">        <input type="submit" value="Update / Commit" name="commit" id="update">      </td>    </tr>  [% END %]</table>[% END %]<p align="left">  <input type="submit" value="Add a new event" name="add_event" id="add_event"></p></form>[% PROCESS global/footer.html.tmpl %][% BLOCK query_field +%]  [% IF available_queries.size > 0 %]    <select name="query_name_[% query.id %]">      [% FOREACH q = available_queries %]        <option [% "selected" IF q == thisquery %] value="[% q FILTER html %]">            [% q FILTER html %]        </option>      [% END %]    </select>  [% ELSE %]    Please visit the <a href="query.cgi">Search</a> page and save a query  [% END %][%+ END %][% BLOCK day_field +%]  <select name="day_[% schedule.id %]">      [%        options = [            ['All',  'Each day',                 ],            ['MF',   'Monday through Friday',    ],            ['Sun',  'Sunday',                   ],            ['Mon',  'Monday',                   ],            ['Tue',  'Tuesday',                  ],            ['Wed',  'Wednesday',                ],            ['Thu',  'Thursday',                 ],            ['Fri',  'Friday',                   ],            ['Sat',  'Saturday',                 ],            ['1',    'On the 1st of the month',  ],            ['2',    'On the 2nd of the month',  ],            ['3',    'On the 3rd of the month',  ],            ['4',    'On the 4th of the month',  ],            ['5',    'On the 5th of the month',  ],            ['6',    'On the 6th of the month',  ],            ['7',    'On the 7th of the month',  ],            ['8',    'On the 8th of the month',  ],            ['9',    'On the 9th of the month',  ],            ['10',   'On the 10th of the month', ],            ['11',   'On the 11th of the month', ],            ['12',   'On the 12th of the month', ],            ['13',   'On the 13th of the month', ],            ['14',   'On the 14th of the month', ],            ['15',   'On the 15th of the month', ],            ['16',   'On the 16th of the month', ],            ['17',   'On the 17th of the month', ],            ['18',   'On the 18th of the month', ],            ['19',   'On the 19th of the month', ],            ['20',   'On the 20th of the month', ],            ['21',   'On the 21st of the month', ],            ['22',   'On the 22nd of the month', ],            ['23',   'On the 23rd of the month', ],            ['24',   'On the 24th of the month', ],            ['25',   'On the 25th of the month', ],            ['26',   'On the 26th of the month', ],            ['27',   'On the 27th of the month', ],            ['28',   'On the 28th of the month', ],            ['29',   'On the 29th of the month', ],            ['30',   'On the 30th of the month', ],            ['31',   'On the 31st of the month', ],            ['last', 'Last day of the month',    ],        ]      %]      [% FOREACH option = options %]        <option value="[% option.0 %]"                 [%- IF val == option.0 +%] selected[% END %]>                [%- option.1 -%]        </option>      [% END %]  </select>[%+ END %][% BLOCK time_field +%]<select name="time_[% schedule.id %]">  [%    options = [        [ '0',     'at midnight',      ],        [ '1',     'at 01:00',         ],        [ '2',     'at 02:00',         ],        [ '3',     'at 03:00',         ],        [ '4',     'at 04:00',         ],        [ '5',     'at 05:00',         ],        [ '6',     'at 06:00',         ],        [ '7',     'at 07:00',         ],        [ '8',     'at 08:00',         ],        [ '9',     'at 09:00',         ],        [ '10',    'at 10:00',         ],        [ '11',    'at 11:00',         ],        [ '12',    'at 12:00',         ],        [ '13',    'at 13:00',         ],        [ '14',    'at 14:00',         ],        [ '15',    'at 15:00',         ],        [ '16',    'at 16:00',         ],        [ '17',    'at 17:00',         ],        [ '18',    'at 18:00',         ],        [ '19',    'at 19:00',         ],        [ '20',    'at 20:00',         ],        [ '21',    'at 21:00',         ],        [ '22',    'at 22:00',         ],        [ '23',    'at 23:00',         ],        [ '60min', 'every hour',       ],        [ '30min', 'every 30 minutes', ],        [ '15min', 'every 15 minutes', ],    ]  %]      [% FOREACH option = options %]        <option value="[% option.0 %]"                 [%- IF val == option.0 +%] selected[% END %]>                [%- option.1 -%]        </option>      [% END %]</select>[%+ END %]

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91精品欧美一区二区三区综合在| 99久久99久久精品免费看蜜桃 | 亚洲福利视频三区| 亚洲图片欧美色图| 亚洲电影中文字幕在线观看| 日本美女视频一区二区| 国产成人自拍高清视频在线免费播放| 不卡电影免费在线播放一区| 欧美亚洲精品一区| 欧美日韩国产精品成人| 欧美国产成人精品| 日韩成人午夜精品| 99久久精品免费看国产免费软件| 欧美日韩1234| 国产目拍亚洲精品99久久精品| 一区二区三区91| 国产一区二区三区四区五区美女 | 成人毛片老司机大片| 精品视频一区二区不卡| 欧美r级电影在线观看| 一区二区三区在线视频播放| 精品午夜久久福利影院 | 韩国视频一区二区| 欧美专区日韩专区| 日韩女同互慰一区二区| 依依成人精品视频| 国产成人精品免费看| 日韩欧美在线影院| 亚洲成av人影院| 成+人+亚洲+综合天堂| 欧美成人女星排名| 偷窥少妇高潮呻吟av久久免费| 国产成人av影院| 日韩欧美123| 视频在线在亚洲| 欧美日韩国产首页| 一区二区三区美女视频| 成人综合在线观看| 中文字幕欧美国产| 韩国精品免费视频| 日韩欧美国产一区二区在线播放| 一区二区三区不卡在线观看| 成人av免费在线| 中文字幕av一区 二区| 韩国v欧美v日本v亚洲v| 欧美一级黄色录像| 香蕉久久夜色精品国产使用方法 | 日本久久一区二区| 亚洲欧洲综合另类在线| av一区二区三区| 日本一区二区动态图| 国产成人小视频| 国产日韩三级在线| 成人a免费在线看| 国产欧美va欧美不卡在线| 国产老妇另类xxxxx| 2020国产精品久久精品美国| 激情五月婷婷综合| 久久久久久久久久电影| 国产一区二区三区在线观看免费| 欧美变态tickling挠脚心| 日韩黄色免费网站| 日韩欧美资源站| 国产在线精品一区在线观看麻豆| 久久在线免费观看| 国产精品亚洲成人| 中文字幕欧美一| 在线看不卡av| 美腿丝袜亚洲色图| 日韩精品中文字幕在线不卡尤物 | 午夜精品久久久久久久蜜桃app| 日韩免费视频一区二区| 日韩精品三区四区| 久久尤物电影视频在线观看| 成人免费视频视频在线观看免费 | 一本色道久久综合精品竹菊| 久久视频一区二区| 婷婷成人综合网| 在线视频欧美精品| 亚洲欧美日韩国产综合| 国产美女精品一区二区三区| 欧美美女bb生活片| 亚洲午夜激情av| 国产一区二区视频在线播放| 91精品国产综合久久久久| 亚洲美女淫视频| 国产乱码精品一区二区三区av | 全国精品久久少妇| 精品视频在线视频| 亚洲自拍偷拍图区| 在线观看一区日韩| 亚洲精品国产第一综合99久久 | 国产一区激情在线| 国产清纯白嫩初高生在线观看91| 国产99精品国产| 亚洲色图制服丝袜| 制服丝袜一区二区三区| 国产一区二区三区香蕉| 亚洲欧洲精品一区二区三区不卡 | 91精品国产乱码久久蜜臀| 久久精品国产网站| 日韩码欧中文字| 91精品国产品国语在线不卡| 国产一区二区免费看| 亚洲女厕所小便bbb| 欧美日韩你懂得| 国产精品综合一区二区| 一区二区三区在线视频播放| 精品sm捆绑视频| 91高清在线观看| 国产精品亚洲一区二区三区妖精| 亚洲精品欧美专区| 久久日韩粉嫩一区二区三区| 色综合中文字幕| 国产黄人亚洲片| 亚洲天堂成人在线观看| 欧美一级国产精品| 色八戒一区二区三区| 国产一区二区三区免费播放 | 精品国产乱码久久久久久免费| 91丨九色丨黑人外教| 久久99国产精品成人| 亚洲成精国产精品女| 中文字幕一区二区视频| 日韩女同互慰一区二区| 欧美色综合网站| 成人avav影音| 国产精品一线二线三线精华| 天天色综合成人网| 一区二区三区四区视频精品免费| 久久众筹精品私拍模特| 欧美精品vⅰdeose4hd| 91日韩一区二区三区| 激情另类小说区图片区视频区| 午夜一区二区三区视频| 亚洲欧美乱综合| 国产精品久久久久久久久久久免费看 | 日韩视频123| 欧美性色黄大片| 在线一区二区三区四区五区| 成人av在线资源网| 国产成人精品网址| 国产成人精品网址| 成人免费毛片嘿嘿连载视频| 国内成人免费视频| 韩国精品久久久| 国产九色sp调教91| 国产一区二区美女诱惑| 国产原创一区二区三区| 韩国女主播一区二区三区| 久久精品国产久精国产| 免费一级片91| 国产老妇另类xxxxx| 岛国av在线一区| 97久久久精品综合88久久| 99视频超级精品| 欧美在线视频你懂得| 欧美日韩精品高清| 日韩午夜在线观看视频| 精品乱码亚洲一区二区不卡| 久久亚洲综合av| 国产精品久久久久久久久免费樱桃| 亚洲国产高清aⅴ视频| 最新国产の精品合集bt伙计| 亚洲丝袜自拍清纯另类| 亚洲一区二区在线观看视频| 亚洲图片欧美一区| 久久激情五月婷婷| 丁香婷婷综合五月| 日本久久电影网| 精品欧美乱码久久久久久| 久久久久久久久蜜桃| 中文字幕一区二区三区不卡| 一区二区三区在线视频免费 | 2023国产精品视频| 亚洲欧洲制服丝袜| 日韩精品1区2区3区| 国产成人午夜片在线观看高清观看| 国产suv精品一区二区883| 色综合久久久久| 欧美一级日韩一级| 中文一区在线播放| 三级在线观看一区二区| 国产一区二区三区av电影 | 丰满少妇久久久久久久 | 亚洲一区二区三区小说| 日韩国产欧美在线视频| 成人自拍视频在线观看| 欧美性极品少妇| 国产亚洲精品7777| 亚洲一线二线三线视频| 久久99国产精品久久| 欧美综合一区二区三区| 欧美精品一区二区三区一线天视频 | 色综合天天综合色综合av| 91精品免费观看| 亚洲蜜臀av乱码久久精品| 国产精品一区专区| 制服.丝袜.亚洲.另类.中文| 国产精品夫妻自拍|