diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 14:28:10 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-04-28 19:14:20 +0200 |
commit | af9a8239914fb783ddd41a9dc571bd5fb2126050 (patch) | |
tree | 5f2414fa4e3fb6251e35c547a6152a780296ca9a /data/tweaks/urltest.js | |
parent | 32af48e442a960b8c3f199f5ffad28a34590fcda (diff) | |
download | bugzilla-triage-af9a8239914fb783ddd41a9dc571bd5fb2126050.tar.gz |
Reorganization.
* fixingAttMIME, rhbzpage, xorgBugCategories moved to data/rhlib
directory,
* docs directory removed ... keep documentation in JSDocs; rewrite in MD
is a waste of time.
* move Ehsan’s scripts to separate data/tweaks directory.
Diffstat (limited to 'data/tweaks/urltest.js')
-rw-r--r-- | data/tweaks/urltest.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/data/tweaks/urltest.js b/data/tweaks/urltest.js new file mode 100644 index 0000000..609e77b --- /dev/null +++ b/data/tweaks/urltest.js @@ -0,0 +1,5 @@ +function onBugzillaPage(url) { + return /https:\/\/bugzilla(-[a-zA-Z]+)*\.mozilla\.org/ + .test(url) + || /https:\/\/landfill.*\.bugzilla\.org/.test(url); +} |