"Fossies" - the Fresh Open Source Software Archive 
Member "WhatWeb-0.5.5/plugins/acclipse.rb" (15 Jan 2021, 1153 Bytes) of package /linux/www/WhatWeb-0.5.5.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Ruby source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 ##
2 # This file is part of WhatWeb and may be subject to
3 # redistribution and commercial restrictions. Please see the WhatWeb
4 # web site for more information on licensing and terms of use.
5 # https://www.morningstarsecurity.com/research/whatweb
6 ##
7 Plugin.define do
8 name "Acclipse"
9 authors [
10 "Andrew Horton",
11 # Andrew Horton # v0.3 # 2019-07-10 # Added website field.
12 ]
13 version "0.3"
14 description "Acclipse is a web CMS found mainly in New Zealand and Australia. It is popular with accountants."
15 website "www.acclipse.com"
16
17
18 matches [
19 {:name=>"Footer link",
20 :regexp=>/<a href="http:\/\/www\.(acclipse|acclipseweb)\.(co\.nz|com\.au)[\/]?(for_Businesses)?" target="_blank"( class="poweredbylink")?>(Software solutions for accountants|Web design New Zealand|Web design Australia)<\/a>/},
21
22 {:name=>"Website powered by",
23 :text=>"Website powered by <A href=\"http://www.acclipse.com.au\" target=_blank>Acclipse</A>"},
24
25 {:name=>"acclipse link with uppercase A href",
26 :text=>"<A href=\"http://www.acclipse.co.nz/\" target=_blank></A>"},
27
28 {:name=>"https://secure.acclipse.com link",
29 :regexp=>/https:\/\/secure\.acclipse(web)?\.com\/[^\/]*\/index\.cfm/}
30 ]
31
32
33 end
34