Ticket #9200: spotify_uri_detection.diff
| File spotify_uri_detection.diff, 0.9 kB (added by rasmus, 8 months ago) |
|---|
-
Frameworks/AIHyperlinks
old new 44 44 aolChatSpec aim:gochat\?roomname=[^\ \t\n&]+ 45 45 yahooIMSpec ymsgr:sendim\?.+ 46 46 rdarSpec rdar:\/\/(problems?\/)?[0-9]+(&[0-9]+)* 47 spotifySpec spotify:(track|album|artist|search|playlist|user|radio):[^<>]+ 47 48 48 49 49 50 %option noyywrap 8bit caseless never-interactive prefix="SH" … … 92 93 {aolChatSpec} {SHStringOffset += SHleng; return SH_URL_VALID;} 93 94 {yahooIMSpec} {SHStringOffset += SHleng; return SH_URL_VALID;} 94 95 {rdarSpec} {SHStringOffset += SHleng; return SH_URL_VALID;} 96 {spotifySpec} {SHStringOffset += SHleng; return SH_URL_VALID;} 95 97 96 98 . {return SH_URL_INVALID;} 97 99 %%