NiftyCornersCube (typo corrected)

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
9 messages Options
Reply | Threaded
Open this post in threaded view
|

NiftyCornersCube (typo corrected)

keith1y
I have adapted the latest NiftyCorners into an easy to use Seaside Library.

http://www.html.it/articoli/niftycube/index.html

To Load:

Installer squeaksource
    project: 'Jetsam';
    install: 'Seaside28Jetsam-NiftyCorners'.

enjoy

Keith

p.s. this is a standalone package and does not need the rest of the
Seaside28Jetsam addons.


_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: NiftyCornersCube (typo corrected)

tblanchard
Those are nice - although you realize that its just going to be a style in CSS3 and is already available as such in Safari and Latest Firefox.

-webkit-border-radius: 6px;
-moz-border-radius: 6px;

I use this extensively on http://audiofreakshow.com (Drupal based Ubercart site I'm doing).  I started with a js solution (forget which one) and found it too slow.  I don't mind that only Safari and new Firefox work because my audience is Mac based musicians and that's all they're likely to have.
-Todd Blanchard
On Apr 21, 2008, at 4:19 PM, Keith Hodges wrote:
I have adapted the latest NiftyCorners into an easy to use Seaside Library.

http://www.html.it/articoli/niftycube/index.html

To Load:

Installer squeaksource
  project: 'Jetsam';
  install: 'Seaside28Jetsam-NiftyCorners'.

enjoy

Keith

p.s. this is a standalone package and does not need the rest of the
Seaside28Jetsam addons.


_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside


_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

RE: NiftyCornersCube (typo corrected)

Sebastian Sastre-2
If you need a *cross browser* solution for this you can alternatively use the
jQuery curvy corners. Here, in examples, you can see a demo:
http://www.curvycorners.net/

1. Is based on jQuery library.
2. I've wrapped a basic fundation to use it (I also want to use Flot but didn't
much about it yet).
3. The usability of the code is exactly the same as scriptaculous from Seaside
point of view.
4. jQuery today has a catalog of about 700 plugins so you have lots of resources
to choose there.
5. It has elegant code (perhaps more than Prototype).
6. You can use it concurrently with Prototype without any conflicts
(http://docs.jquery.com/Using_jQuery_with_Other_Libraries).  

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.

The wiki of jQuery project at squeaksource.com has pointers to make a div with
curvy corners.

        Cheers,

Sebastian

 


________________________________

        De: [hidden email]
[mailto:[hidden email]] En nombre de Todd Blanchard
        Enviado el: Martes, 22 de Abril de 2008 06:45
        Para: Seaside - general discussion
        Asunto: Re: [Seaside] NiftyCornersCube (typo corrected)
       
       
        Those are nice - although you realize that its just going to be a style
in CSS3 and is already available as such in Safari and Latest Firefox.

        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;

        I use this extensively on http://audiofreakshow.com (Drupal based
Ubercart site I'm doing).  I started with a js solution (forget which one) and
found it too slow.  I don't mind that only Safari and new Firefox work because
my audience is Mac based musicians and that's all they're likely to have.
        -Todd Blanchard
        On Apr 21, 2008, at 4:19 PM, Keith Hodges wrote:
       

                I have adapted the latest NiftyCorners into an easy to use
Seaside Library.
               
                http://www.html.it/articoli/niftycube/index.html
               
                To Load:
               
                Installer squeaksource
                  project: 'Jetsam';
                  install: 'Seaside28Jetsam-NiftyCorners'.
               
                enjoy
               
                Keith
               
                p.s. this is a standalone package and does not need the rest of
the
                Seaside28Jetsam addons.
               
               
                _______________________________________________
                seaside mailing list
                [hidden email]
       
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
               



_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: NiftyCornersCube (typo corrected)

keith1y
In reply to this post by tblanchard
Todd Blanchard wrote:
> Those are nice - although you realize that its just going to be a
> style in CSS3 and is already available as such in Safari and Latest
> Firefox.
>
> -webkit-border-radius: 6px;
> -moz-border-radius: 6px;
>
Unfortunately I am looking forward to the day when IE6 supports CSS3... ;-)

Keith

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: NiftyCornersCube (typo corrected)

keith1y
In reply to this post by Sebastian Sastre-2

> 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 <[hidden email]>'.
    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
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: NiftyCornersCube (typo corrected)

tblanchard
In reply to this post by Sebastian Sastre-2
I used that initially - it added a full ten seconds to the page  
rendering in the above site.
Thats when I decided to just use the experimental styles

On Apr 22, 2008, at 4:29 AM, Sebastian Sastre wrote:

> If you need a *cross browser* solution for this you can  
> alternatively use the
> jQuery curvy corners. Here, in examples, you can see a demo:
> http://www.curvycorners.net/
>
> 1. Is based on jQuery library.
> 2. I've wrapped a basic fundation to use it (I also want to use Flot  
> but didn't
> much about it yet).
> 3. The usability of the code is exactly the same as scriptaculous  
> from Seaside
> point of view.
> 4. jQuery today has a catalog of about 700 plugins so you have lots  
> of resources
> to choose there.
> 5. It has elegant code (perhaps more than Prototype).
> 6. You can use it concurrently with Prototype without any conflicts
> (http://docs.jquery.com/Using_jQuery_with_Other_Libraries).
>
> 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.
>
> The wiki of jQuery project at squeaksource.com has pointers to make  
> a div with
> curvy corners.
>
> Cheers,
>
> Sebastian
>
>
>
>
> ________________________________
>
> De: [hidden email]
> [mailto:[hidden email]] En nombre de  
> Todd Blanchard
> Enviado el: Martes, 22 de Abril de 2008 06:45
> Para: Seaside - general discussion
> Asunto: Re: [Seaside] NiftyCornersCube (typo corrected)
>
>
> Those are nice - although you realize that its just going to be a  
> style
> in CSS3 and is already available as such in Safari and Latest Firefox.
>
> -webkit-border-radius: 6px;
> -moz-border-radius: 6px;
>
> I use this extensively on http://audiofreakshow.com (Drupal based
> Ubercart site I'm doing).  I started with a js solution (forget  
> which one) and
> found it too slow.  I don't mind that only Safari and new Firefox  
> work because
> my audience is Mac based musicians and that's all they're likely to  
> have.
> -Todd Blanchard
> On Apr 21, 2008, at 4:19 PM, Keith Hodges wrote:
>
>
> I have adapted the latest NiftyCorners into an easy to use
> Seaside Library.
>
> http://www.html.it/articoli/niftycube/index.html
>
> To Load:
>
> Installer squeaksource
>  project: 'Jetsam';
>  install: 'Seaside28Jetsam-NiftyCorners'.
>
> enjoy
>
> Keith
>
> p.s. this is a standalone package and does not need the rest of
> the
> Seaside28Jetsam addons.
>
>
> _______________________________________________
> seaside mailing list
> [hidden email]
>
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>
>
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: NiftyCornersCube (typo corrected)

tblanchard
In reply to this post by keith1y
Ah, see, I refuse to even talk to those people.   Its a little luxury  
I enjoy from time to time. :-)

On Apr 22, 2008, at 7:31 AM, Keith Hodges wrote:

> Todd Blanchard wrote:
>> Those are nice - although you realize that its just going to be a  
>> style in CSS3 and is already available as such in Safari and Latest  
>> Firefox.
>>
>> -webkit-border-radius: 6px;
>> -moz-border-radius: 6px;
>>
> Unfortunately I am looking forward to the day when IE6 supports  
> CSS3... ;-)
>
> Keith
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: NiftyCornersCube (typo corrected)

Boris Popov, DeepCove Labs (SNN)
In reply to this post by keith1y
Re: [Seaside] NiftyCornersCube (typo corrected)

What about all existing browsers?

Cheers!

-Boris (via BlackBerry)

----- Original Message -----
From: [hidden email] <[hidden email]>
To: Seaside - general discussion <[hidden email]>
Sent: Tue Apr 22 11:45:44 2008
Subject: Re: [Seaside] NiftyCornersCube (typo corrected)

I used that initially - it added a full ten seconds to the page 
rendering in the above site.
Thats when I decided to just use the experimental styles

On Apr 22, 2008, at 4:29 AM, Sebastian Sastre wrote:

> If you need a *cross browser* solution for this you can 
> alternatively use the
> jQuery curvy corners. Here, in examples, you can see a demo:
> http://www.curvycorners.net/
>
> 1. Is based on jQuery library.
> 2. I've wrapped a basic fundation to use it (I also want to use Flot 
> but didn't
> much about it yet).
> 3. The usability of the code is exactly the same as scriptaculous 
> from Seaside
> point of view.
> 4. jQuery today has a catalog of about 700 plugins so you have lots 
> of resources
> to choose there.
> 5. It has elegant code (perhaps more than Prototype).
> 6. You can use it concurrently with Prototype without any conflicts
> (http://docs.jquery.com/Using_jQuery_with_Other_Libraries).
>
> 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.
>
> The wiki of jQuery project at squeaksource.com has pointers to make 
> a div with
> curvy corners.
>
>       Cheers,
>
> Sebastian
>
>
>
>
> ________________________________
>
>       De: [hidden email]
> [[hidden email]] En nombre de 
> Todd Blanchard
>       Enviado el: Martes, 22 de Abril de 2008 06:45
>       Para: Seaside - general discussion
>       Asunto: Re: [Seaside] NiftyCornersCube (typo corrected)
>      
>      
>       Those are nice - although you realize that its just going to be a 
> style
> in CSS3 and is already available as such in Safari and Latest Firefox.
>
>       -webkit-border-radius: 6px;
>       -moz-border-radius: 6px;
>
>       I use this extensively on http://audiofreakshow.com (Drupal based
> Ubercart site I'm doing).  I started with a js solution (forget 
> which one) and
> found it too slow.  I don't mind that only Safari and new Firefox 
> work because
> my audience is Mac based musicians and that's all they're likely to 
> have.
>       -Todd Blanchard
>       On Apr 21, 2008, at 4:19 PM, Keith Hodges wrote:
>      
>
>               I have adapted the latest NiftyCorners into an easy to use
> Seaside Library.
>              
>               http://www.html.it/articoli/niftycube/index.html
>              
>               To Load:
>              
>               Installer squeaksource
>                 project: 'Jetsam';
>                 install: 'Seaside28Jetsam-NiftyCorners'.
>              
>               enjoy
>              
>               Keith
>              
>               p.s. this is a standalone package and does not need the rest of
> the
>               Seaside28Jetsam addons.
>              
>              
>               _______________________________________________
>               seaside mailing list
>               [hidden email]
>      
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>              
>
>
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside


_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: NiftyCornersCube (typo corrected)

Philippe Marschall
In reply to this post by tblanchard
Duh, people with the license to print money use IE 6 or older.

2008/4/22, Todd Blanchard <[hidden email]>:

> Ah, see, I refuse to even talk to those people.   Its a little luxury I
> enjoy from time to time. :-)
>
>
>  On Apr 22, 2008, at 7:31 AM, Keith Hodges wrote:
>
>
> > Todd Blanchard wrote:
> >
> > > Those are nice - although you realize that its just going to be a style
> in CSS3 and is already available as such in Safari and Latest Firefox.
> > >
> > > -webkit-border-radius: 6px;
> > > -moz-border-radius: 6px;
> > >
> > >
> > Unfortunately I am looking forward to the day when IE6 supports CSS3...
> ;-)
> >
> > Keith
> >
> > _______________________________________________
> > seaside mailing list
> > [hidden email]
> >
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> >
>
>  _______________________________________________
>  seaside mailing list
>  [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside