diff options
author | gerv%gerv.net <> | 2002-02-27 17:01:45 +0100 |
---|---|---|
committer | gerv%gerv.net <> | 2002-02-27 17:01:45 +0100 |
commit | 029bc0624ac3307c9d24996ad23957dab0ca4ba8 (patch) | |
tree | 79aa21ca5a2cded79701f31febf398de26aa6ade /template/default | |
parent | f642e601b4b8f8b1d728df6f0eddc3a351975da6 (diff) | |
download | bugzilla-029bc0624ac3307c9d24996ad23957dab0ca4ba8.tar.gz bugzilla-029bc0624ac3307c9d24996ad23957dab0ca4ba8.tar.xz |
Bug 126788 - templatise xml.cgi.
Diffstat (limited to 'template/default')
-rw-r--r-- | template/default/show/choose_xml.html.tmpl | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/template/default/show/choose_xml.html.tmpl b/template/default/show/choose_xml.html.tmpl new file mode 100644 index 000000000..7418be91d --- /dev/null +++ b/template/default/show/choose_xml.html.tmpl @@ -0,0 +1,46 @@ +[%# 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): Gervase Markham <gerv@gerv.net> + #%] + +[% INCLUDE global/header + title = "Display bugs as XML" + %] + +<form method="get" action="xml.cgi"> + <table> + <tr> + <td> + Display bugs as XML by entering a list of bug numbers here: + </td> + <td> + <input name="id" size="30" /> + <input type="submit" value="Display as XML" /> + </td> + </tr> + + <tr> + <td> </td> + <td> + (e.g. 1000, 2467, 852) + </td> + </tr> + </table> +</form> + +[% INCLUDE global/footer %] |