3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-01 17:16:39 +02:00

Added link to browsable standard; search now case-insensitive and within section title

This commit is contained in:
Pragmatic Software 2010-04-20 05:54:06 +00:00
parent b4b0ade05b
commit b3ae27cb0c

View File

@ -127,7 +127,7 @@ while($text =~ m/^\s{4}(\d+\.[0-9\.]*)/msg) {
if(length $search) {
eval {
if($t =~ m/\b$search/ms) {
if($t =~ m/\b$search/mis or $section_title =~ m/\b$search/mis) {
$matches++;
if($matches >= $match) {
if($list_only) {
@ -197,9 +197,13 @@ if($matches > 1 and not $list_only) {
}
if($comma eq "") {
=cut
print $found_section;
print "p" . $found_paragraph if $paragraph_specified;
print ": ";
=cut
print "http://blackshell.com/~msmud/cstd.html\#$found_section";
print "p" . $found_paragraph if $paragraph_specified;
print " : ";
print "[", $found_section_title, "] " if length $found_section_title;
}