From e0db56e755e94e07677faa3729a4affe38a3ce18 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Wed, 28 May 2008 03:08:59 +0000 Subject: Bug 435507: Provide a method of hooking the WebService error codes Patch By Max Kanat-Alexander r=ghendricks, a=mkanat --- .../example/template/en/global/user-error-errors.html.tmpl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 extensions/example/template/en/global/user-error-errors.html.tmpl (limited to 'extensions/example/template') diff --git a/extensions/example/template/en/global/user-error-errors.html.tmpl b/extensions/example/template/en/global/user-error-errors.html.tmpl new file mode 100644 index 000000000..df5a203dd --- /dev/null +++ b/extensions/example/template/en/global/user-error-errors.html.tmpl @@ -0,0 +1,12 @@ +[%# Note that error messages should generally be indented four spaces, like + # below, because when Bugzilla translates an error message into plain + # text, it takes four spaces off the beginning of the lines. + # + # Note also that I prefixed my error name with "example", the name of my + # extension, so that I wouldn't conflict with other error names in + # Bugzilla or other extensions. + #%] +[% IF error == "example_my_error" %] + [% title = "Example Error Title" %] + This is the error message! It contains some html. +[% END %] -- cgit v1.2.3-24-g4f1b