diff options
author | Louie Shprung <lshprung@scu.edu> | 2022-11-21 17:05:43 -0800 |
---|---|---|
committer | Louie Shprung <lshprung@scu.edu> | 2022-11-21 17:05:43 -0800 |
commit | e0110a2b0ba0a0a13e78bc9e453110f16d40087b (patch) | |
tree | 11aafcedd7b1ae63b5d9cb2c529d0a73b2962661 /src/index.rb | |
parent | 1433e5580757ef140bc64bcc5a904fd0ab9401ed (diff) |
Replaced all instances of 'GNU Automake' with 'GNU Autoconf'
Diffstat (limited to 'src/index.rb')
-rwxr-xr-x | src/index.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.rb b/src/index.rb index 9c66c81..3dc8468 100755 --- a/src/index.rb +++ b/src/index.rb @@ -9,10 +9,10 @@ INSERT_SQL = %Q[ INSERT INTO searchIndex(name, type, path) VALUES ('%s','%s','%s'); ] -PATTERN = %r[<title>(.*)\(automake\)(.*)</title>] +PATTERN = %r[<title>(.*)\(Autoconf\)(.*)</title>] def quote(s) - s.gsub(/&/, '&').gsub(/'/, "\\'") + s.gsub(/&/, '&').gsub(/'/, "\\'").gsub(/</, '<') end ARGV.each do |arg| |