Browse Source

Remove excess lines

Alois Mahdal 9 years ago
parent
commit
1c7528ff0b
1 changed files with 0 additions and 6 deletions
  1. 0
    6
      src/ffoo/saturnin_urimagic.sh

+ 0
- 6
src/ffoo/saturnin_urimagic.sh View File

28
     done
28
     done
29
 }
29
 }
30
 
30
 
31
-
32
 __saturnin_urimagic__flt_exps() {
31
 __saturnin_urimagic__flt_exps() {
33
     #
32
     #
34
     # Hack expressions like bug = 123 out of the text
33
     # Hack expressions like bug = 123 out of the text
42
       | tr '[:upper:]' '[:lower:]'
41
       | tr '[:upper:]' '[:lower:]'
43
 }
42
 }
44
 
43
 
45
-
46
 __saturnin_urimagic__flt_ids() {
44
 __saturnin_urimagic__flt_ids() {
47
     #
45
     #
48
     # Hack doer-like id's (ID#123) out of the text
46
     # Hack doer-like id's (ID#123) out of the text
55
       | tr '#' ' '
53
       | tr '#' ' '
56
 }
54
 }
57
 
55
 
58
-
59
 __saturnin_urimagic__flt_kws() {
56
 __saturnin_urimagic__flt_kws() {
60
     #
57
     #
61
     # Hack out lines that look like kw expressions
58
     # Hack out lines that look like kw expressions
63
     grep -Ee '^[a-zA-Z]\w*\s+[^=]' -e '^[a-zA-Z]\w*$'
60
     grep -Ee '^[a-zA-Z]\w*\s+[^=]' -e '^[a-zA-Z]\w*$'
64
 }
61
 }
65
 
62
 
66
-
67
 __saturnin_urimagic__flt_tags() {
63
 __saturnin_urimagic__flt_tags() {
68
     #
64
     #
69
     # Hack "tags" like bug123 out of the text
65
     # Hack "tags" like bug123 out of the text
73
       | sed -r 's/([a-zA-Z]+)([0-9])/\1 \2/'
69
       | sed -r 's/([a-zA-Z]+)([0-9])/\1 \2/'
74
 }
70
 }
75
 
71
 
76
-
77
 __saturnin_urimagic__flt_uris() {
72
 __saturnin_urimagic__flt_uris() {
78
     #
73
     #
79
     # Hack URIs out of the text.
74
     # Hack URIs out of the text.
85
         '
80
         '
86
 }
81
 }
87
 
82
 
88
-
89
 saturnin_urimagic__scan() {
83
 saturnin_urimagic__scan() {
90
     #
84
     #
91
     # Scan stdin for what looks like URI, ID or keyword
85
     # Scan stdin for what looks like URI, ID or keyword