« Return to Thread: NiftyCornersCube (typo corrected)

Re: NiftyCornersCube (typo corrected)

by Keithy :: Rate this Message:

Reply to Author | View in Thread


> You can found it in squeaksource.com as jQuery project. You can also use
> installer for this:
>
> (Installer monticello http: 'www.squeaksource.com/jQuery' user: ''
> password: '')
> install: 'jQuery';
> install: 'SUExtensions';   "this are mine extensions to
> scriptaculous I think they are required"
> install: 'CurvyCorners';
> yourself.
>  
FYI:

Installer has a number of preconfigured urls.. this could be re-written as:

Installer squeaksource project: 'jQuery';
    install: 'jQuery;
    install: 'SUExtensions';
    install: 'CurvyCorners';
    yourself.

What are the SUExtensions required for? jQuery, or CurvyCorners?

I have added this into the Sake/Packages - Web Development - category

So..

Installer install: 'Packages'.
Installer sake addPackage: 'jQuery-CurvyCorners; install

regards

Keith

===========

PackagesAllVersions>>jQueryCurvyCorners

    self name: 'jQuery-CurvyCorners'.
    info category: 'Web Development'.
    info description:
'CurvyCornersCube Javascript library for use with Seaside, uses jQuery
framework'.
    info maintainer: 'Sebastian Sastre <ssastre@...>'.
    info homepage: 'http://www.squeaksource.com/jQuery.html'.

    info version: '6+'.

    self provides: #().

    self dependsOn: #('Seaside' 'jQuery').

    self load: [
        Installer squeaksource project:'jQuery' ; install: 'CurvyCorners'.
    ].

    self unloadDependsOn: { self taskUnloadDependants }.
    self unload: [
        Installer unload: 'CurvyCorners'.
    ].


_______________________________________________
seaside mailing list
seaside@...
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

 « Return to Thread: NiftyCornersCube (typo corrected)