Is this the correct place to talk about Comanche and Four Strong Winds (Swiki)?

    if so, I have a fix so Swiki recognises https as avalid protocol, stupid but 
useful.

    here it is.

    if, sorry (it's only 4 lines)

    Missplaced Bye!
    Richie++

--
A390 1BBA 2C58 D679 5A71 - 86F9 404F 4B53 3944 C2D0
Investigacion y Desarrollo - CoreLabs - Core SDI
http://www.core-sdi.com

'From Squeak2.8alpha of 26 March 2000 [latest update: #1974] on 27 March 2000 at 
12:34:14 am'!

!NuSwikiPage class methodsFor: 'testing' stamp: 'r++ 3/27/2000 00:34'!
isTextAnHttp: text
        | lower |

        lower _ text asLowercase.
        (lower beginsWith: 'http://') ifTrue: [^true].
        (lower beginsWith: 'ftp://') ifTrue: [^true].
        (lower beginsWith: 'https://') ifTrue: [^true].
        ^false! !

Reply via email to