Re: ERAttachment... to-many and thumbs

2010-11-22 Thread Francesco Romano
> Are you actually going to display multiple photos for a Product?
> 
> Or are you displaying ... 
> 
> one thumbnail 
> or
> one big photo
> or
> one medium photo
> 
> David

What I want is the possibility to have many photos for a product. And i need 
one thumbnail (but I think I'll thumbnail every photos, otherwise it'l become a 
bit complex to manage everything..).. So in the list page I display the thumb, 
in the Inspect page I display all the photos (I don't know if every photo in 
the same moment, or just a sort of embedded gallery in the page with next and 
previous button..)

I'll try this morning creating a new project and a new db connection, to not 
destroy my old one, until I find the right migration 

On 23/nov/2010, at 06.41, Denis Frolov wrote:

> On Mon, Nov 22, 2010 at 11:27 PM, Francesco Romano
>  wrote:
>> Ok.. I'll try this for the thumbnail..
>> 
>> About D2W...
>> I have something like
>> 
>> Product <-->> ERAttachment for a photos property.
>> But.. i watched the tutorial of David and he created a many-to-many, so
>> Product <-->> ProductPhotos <<--> ERAttachment
>> Product has a "photos" property (so a NSArray of ERAttachment).
>> But.. I don't know how to manage this with the rules, both on Inspect and on 
>> Edit/Create configuration.
>> BTW: how can I select the first object of an array with a rule?
> 
> You could try "phot...@objectatindex.0" but I think a better way would
> be to add a cover method "thumbnail" to your Product.java returning
> the attachment you need and use it in rule.
> 
>> What I want to do is:
>> In ListProduct configuration I want to display the thumbnail
> 
> Cover method above would help you with this.

I'll go for the cover method

> 
>> In Edit/Create Product configuration I want to display all the photos in 
>> "maximum" size (i don't know yet the size.. I'll decide later)
> 
> We use our own custom component for this, but I think you could use
> ERDList or ERMDEditRelationship to display/edit the list of photos,
> e.g.:
> 
> entity.name = 'Product' and task = 'edit' and propertyKey = 'photos'
> => componentName = 'ERDList'
> 

I think I already tried something like that and it didn't work I'll try 
again..

Francesco

> Denis
> 
>> 
>> Thanks again for your answers
>> 
>> Francesco
>> 
>> On 22/nov/2010, at 21.05, Denis Frolov wrote:
>> 
>>> Hi,
>>> 
>>> In fact, the support for thumbnails is already there in the model of
>>> ERAttachment. Note the "parentAttachment"/"childrenAttachments"
>>> relationships and "thumbnail" attribute. Just create a new
>>> ERAttachment for thumbnail and add it to "childrenAttachments" of
>>> original attachment. You can use "thumbnail" attribute to specify the
>>> size of the thumbnail in case you need multiple thumbnails of
>>> different sizes. We use strings like "200x150" for "thumbnail"
>>> attribute.
>>> 
>>> As for the D2W, could you be more specific on what the problem is?
>>> 
>>> Denis
>>> 
>>> On Mon, Nov 22, 2010 at 7:49 PM, Francesco Romano
>>>  wrote:
 Hi.
 I have two questions about ERAttachment.
 1) Thumbnails are not available, yet, but.. what do I have to do to add 
 support to them? I don't understand how to implement them "inside" 
 erattachment
 2) I'd like to have a many-to-many relationship between my entity and 
 erattachment. I don't have problems in modeling, but.. how can I manage 
 them using D2W and rules? (I'm creating two apps: an admin app using D2W 
 Modern look, and a "front-end" app without D2W. I have problem in the D2W 
 side...)
 
 Thank for any help
 Francesco Romano
 
  ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/dfrolov%40demax.ru
 
 This email sent to dfro...@demax.ru
 
>> 
>>  ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>> Help/Unsubscribe/Update your Subscription:
>> http://lists.apple.com/mailman/options/webobjects-dev/dfrolov%40demax.ru
>> 
>> This email sent to dfro...@demax.ru
>> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: ERAttachment... to-many and thumbs

2010-11-22 Thread Denis Frolov
On Mon, Nov 22, 2010 at 11:27 PM, Francesco Romano
 wrote:
> Ok.. I'll try this for the thumbnail..
>
> About D2W...
> I have something like
>
> Product <-->> ERAttachment for a photos property.
> But.. i watched the tutorial of David and he created a many-to-many, so
> Product <-->> ProductPhotos <<--> ERAttachment
> Product has a "photos" property (so a NSArray of ERAttachment).
> But.. I don't know how to manage this with the rules, both on Inspect and on 
> Edit/Create configuration.
> BTW: how can I select the first object of an array with a rule?

You could try "phot...@objectatindex.0" but I think a better way would
be to add a cover method "thumbnail" to your Product.java returning
the attachment you need and use it in rule.

> What I want to do is:
> In ListProduct configuration I want to display the thumbnail

Cover method above would help you with this.

> In Edit/Create Product configuration I want to display all the photos in 
> "maximum" size (i don't know yet the size.. I'll decide later)

We use our own custom component for this, but I think you could use
ERDList or ERMDEditRelationship to display/edit the list of photos,
e.g.:

entity.name = 'Product' and task = 'edit' and propertyKey = 'photos'
=> componentName = 'ERDList'

Denis

>
> Thanks again for your answers
>
> Francesco
>
> On 22/nov/2010, at 21.05, Denis Frolov wrote:
>
>> Hi,
>>
>> In fact, the support for thumbnails is already there in the model of
>> ERAttachment. Note the "parentAttachment"/"childrenAttachments"
>> relationships and "thumbnail" attribute. Just create a new
>> ERAttachment for thumbnail and add it to "childrenAttachments" of
>> original attachment. You can use "thumbnail" attribute to specify the
>> size of the thumbnail in case you need multiple thumbnails of
>> different sizes. We use strings like "200x150" for "thumbnail"
>> attribute.
>>
>> As for the D2W, could you be more specific on what the problem is?
>>
>> Denis
>>
>> On Mon, Nov 22, 2010 at 7:49 PM, Francesco Romano
>>  wrote:
>>> Hi.
>>> I have two questions about ERAttachment.
>>> 1) Thumbnails are not available, yet, but.. what do I have to do to add 
>>> support to them? I don't understand how to implement them "inside" 
>>> erattachment
>>> 2) I'd like to have a many-to-many relationship between my entity and 
>>> erattachment. I don't have problems in modeling, but.. how can I manage 
>>> them using D2W and rules? (I'm creating two apps: an admin app using D2W 
>>> Modern look, and a "front-end" app without D2W. I have problem in the D2W 
>>> side...)
>>>
>>> Thank for any help
>>> Francesco Romano
>>>
>>>  ___
>>> Do not post admin requests to the list. They will be ignored.
>>> Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)
>>> Help/Unsubscribe/Update your Subscription:
>>> http://lists.apple.com/mailman/options/webobjects-dev/dfrolov%40demax.ru
>>>
>>> This email sent to dfro...@demax.ru
>>>
>
>  ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/dfrolov%40demax.ru
>
> This email sent to dfro...@demax.ru
>
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Wonder's Monitor

2010-11-22 Thread Tim Worman
+1, big thanks.

Tim Worman
UCLA GSE&IS

On Nov 22, 2010, at 4:28 PM, David Holt wrote:

> I'm not sure I'll be able to get used to this.
> 
> :-)
> 
> d
> 
> On 2010-11-22, at 3:38 PM, David LeBer wrote:
> 
>> Looks like poo ;-)
>> 
>> 
>> 
>> ;david
>> 
>> --
>> David LeBer
>> Codeferous Software
>> 'co-def-er-ous' adj. Literally 'code-bearing'
>> site:http://codeferous.com
>> blog:http://davidleber.net
>> profile: http://www.linkedin.com/in/davidleber
>> twitter: http://twitter.com/rebeld
>> --
>> Toronto Area Cocoa / WebObjects developers group:
>> http://tacow.org
>> 
>> 
>> 
>> 
>> ;david
>> 
>> --
>> David LeBer
>> Codeferous Software
>> 'co-def-er-ous' adj. Literally 'code-bearing'
>> site:http://codeferous.com
>> blog:http://davidleber.net
>> profile: http://www.linkedin.com/in/davidleber
>> twitter: http://twitter.com/rebeld
>> --
>> Toronto Area Cocoa / WebObjects developers group:
>> http://tacow.org
>> 
>> 
>> 
>> 
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>> Help/Unsubscribe/Update your Subscription:
>> http://lists.apple.com/mailman/options/webobjects-dev/programmingosx%40mac.com
>> 
>> This email sent to programming...@mac.com
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/lists%40thetimmy.com
> 
> This email sent to li...@thetimmy.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Wonder's Monitor

2010-11-22 Thread Farrukh Ijaz

On 2010-11-23, at 2:38 AM, David LeBer wrote:

> Looks like poo ;-)

That's pretty cool. When can we have it to replace the ugly looking predator?

Farrukh

> 
> 
> 
> ;david
> 
> --
> David LeBer
> Codeferous Software
> 'co-def-er-ous' adj. Literally 'code-bearing'
> site: http://codeferous.com
> blog: http://davidleber.net
> profile:  http://www.linkedin.com/in/davidleber
> twitter:  http://twitter.com/rebeld
> --
> Toronto Area Cocoa / WebObjects developers group:
> http://tacow.org
> 
> 
> 
> 
> ;david
> 
> --
> David LeBer
> Codeferous Software
> 'co-def-er-ous' adj. Literally 'code-bearing'
> site: http://codeferous.com
> blog: http://davidleber.net
> profile:  http://www.linkedin.com/in/davidleber
> twitter:  http://twitter.com/rebeld
> --
> Toronto Area Cocoa / WebObjects developers group:
> http://tacow.org
> 
> 
> 
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/farrukh.ijaz%40fuegodigitalmedia.com
> 
> This email sent to farrukh.i...@fuegodigitalmedia.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Wonder's Monitor

2010-11-22 Thread David Holt
I'm not sure I'll be able to get used to this.

:-)

d

On 2010-11-22, at 3:38 PM, David LeBer wrote:

> Looks like poo ;-)
> 
> 
> 
> ;david
> 
> --
> David LeBer
> Codeferous Software
> 'co-def-er-ous' adj. Literally 'code-bearing'
> site: http://codeferous.com
> blog: http://davidleber.net
> profile:  http://www.linkedin.com/in/davidleber
> twitter:  http://twitter.com/rebeld
> --
> Toronto Area Cocoa / WebObjects developers group:
> http://tacow.org
> 
> 
> 
> 
> ;david
> 
> --
> David LeBer
> Codeferous Software
> 'co-def-er-ous' adj. Literally 'code-bearing'
> site: http://codeferous.com
> blog: http://davidleber.net
> profile:  http://www.linkedin.com/in/davidleber
> twitter:  http://twitter.com/rebeld
> --
> Toronto Area Cocoa / WebObjects developers group:
> http://tacow.org
> 
> 
> 
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/programmingosx%40mac.com
> 
> This email sent to programming...@mac.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Wonder's Monitor

2010-11-22 Thread Simon
has that been committed to the trunk yet ? can't wait to test drive it...

Simon

On 22 November 2010 23:38, David LeBer  wrote:
> Looks like poo ;-)
>
>
>
>
>
> ;david
>
> --
> David LeBer
> Codeferous Software
> 'co-def-er-ous' adj. Literally 'code-bearing'
> site:   http://codeferous.com
> blog:   http://davidleber.net
> profile:        http://www.linkedin.com/in/davidleber
> twitter:        http://twitter.com/rebeld
> --
> Toronto Area Cocoa / WebObjects developers group:
> http://tacow.org
>
>
>
>
> ;david
>
> --
> David LeBer
> Codeferous Software
> 'co-def-er-ous' adj. Literally 'code-bearing'
> site:   http://codeferous.com
> blog:   http://davidleber.net
> profile:        http://www.linkedin.com/in/davidleber
> twitter:        http://twitter.com/rebeld
> --
> Toronto Area Cocoa / WebObjects developers group:
> http://tacow.org
>
>
>
>
>
>  ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/simon%40potwells.co.uk
>
> This email sent to si...@potwells.co.uk
>
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Wonder's Monitor

2010-11-22 Thread Pascal Robert
Ah, finally a Monitor for the 2010s :-) BTW, I think we should remove the 
Migrations tab, AFAIK that tab content is useless.

> Looks like poo ;-)
> 
> 
> 
> ;david
> 
> --
> David LeBer
> Codeferous Software
> 'co-def-er-ous' adj. Literally 'code-bearing'
> site: http://codeferous.com
> blog: http://davidleber.net
> profile:  http://www.linkedin.com/in/davidleber
> twitter:  http://twitter.com/rebeld
> --
> Toronto Area Cocoa / WebObjects developers group:
> http://tacow.org
> 
> 
> 
> 
> ;david
> 
> --
> David LeBer
> Codeferous Software
> 'co-def-er-ous' adj. Literally 'code-bearing'
> site: http://codeferous.com
> blog: http://davidleber.net
> profile:  http://www.linkedin.com/in/davidleber
> twitter:  http://twitter.com/rebeld
> --
> Toronto Area Cocoa / WebObjects developers group:
> http://tacow.org
> 
> 
> 
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
> 
> This email sent to prob...@macti.ca

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: ERAttachment... to-many and thumbs

2010-11-22 Thread David Holt

On 2010-11-22, at 12:27 PM, Francesco Romano wrote:

> Ok.. I'll try this for the thumbnail..
> 
> About D2W...
> I have something like
> 
> Product <-->> ERAttachment for a photos property.

Are you actually going to display multiple photos for a Product?

Or are you displaying ... 

one thumbnail 
or
one big photo
or
one medium photo

David

> But.. i watched the tutorial of David and he created a many-to-many, so
> Product <-->> ProductPhotos <<--> ERAttachment
> Product has a "photos" property (so a NSArray of ERAttachment).
> But.. I don't know how to manage this with the rules, both on Inspect and on 
> Edit/Create configuration.
> BTW: how can I select the first object of an array with a rule? 
> What I want to do is:
> In ListProduct configuration I want to display the thumbnail
> In Edit/Create Product configuration I want to display all the photos in 
> "maximum" size (i don't know yet the size.. I'll decide later)
> 
> Thanks again for your answers
> 
> Francesco
> 
> On 22/nov/2010, at 21.05, Denis Frolov wrote:
> 
>> Hi,
>> 
>> In fact, the support for thumbnails is already there in the model of
>> ERAttachment. Note the "parentAttachment"/"childrenAttachments"
>> relationships and "thumbnail" attribute. Just create a new
>> ERAttachment for thumbnail and add it to "childrenAttachments" of
>> original attachment. You can use "thumbnail" attribute to specify the
>> size of the thumbnail in case you need multiple thumbnails of
>> different sizes. We use strings like "200x150" for "thumbnail"
>> attribute.
>> 
>> As for the D2W, could you be more specific on what the problem is?
>> 
>> Denis
>> 
>> On Mon, Nov 22, 2010 at 7:49 PM, Francesco Romano
>>  wrote:
>>> Hi.
>>> I have two questions about ERAttachment.
>>> 1) Thumbnails are not available, yet, but.. what do I have to do to add 
>>> support to them? I don't understand how to implement them "inside" 
>>> erattachment
>>> 2) I'd like to have a many-to-many relationship between my entity and 
>>> erattachment. I don't have problems in modeling, but.. how can I manage 
>>> them using D2W and rules? (I'm creating two apps: an admin app using D2W 
>>> Modern look, and a "front-end" app without D2W. I have problem in the D2W 
>>> side...)
>>> 
>>> Thank for any help
>>> Francesco Romano
>>> 
>>> ___
>>> Do not post admin requests to the list. They will be ignored.
>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>>> Help/Unsubscribe/Update your Subscription:
>>> http://lists.apple.com/mailman/options/webobjects-dev/dfrolov%40demax.ru
>>> 
>>> This email sent to dfro...@demax.ru
>>> 
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/programmingosx%40mac.com
> 
> This email sent to programming...@mac.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: portals/security frameworks

2010-11-22 Thread Farrukh Ijaz

On 2010-11-22, at 6:53 PM, Michael Gargano wrote:

> Anyone using anything in terms of a portal or security framework (like acegi) 
> that integrates easily with WO?  is there maybe even something I don't know 
> about hidden in wonder?  (crosses fingers)

Not specifically acegi, but we have developed a complete framework that 
integrates with WO using custom properties, which provide LDAP and JDBC 
security realms. Furthermore, additional custom security realms can be defined. 
But this framework is not public :)
For portals, JSR-168 or JSR-286, both need J2EE container, most of the people 
use WO out side J2EE with Apache Web Server so I don't think there is any 
framework that support Portals (including hidden).

Farrukh

> 
> Thanks.
> -Mike
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/farrukh.ijaz%40fuegodigitalmedia.com
> 
> This email sent to farrukh.i...@fuegodigitalmedia.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: ERAttachment... to-many and thumbs

2010-11-22 Thread Francesco Romano
Ok.. I'll try this for the thumbnail..

About D2W...
I have something like

Product <-->> ERAttachment for a photos property.
But.. i watched the tutorial of David and he created a many-to-many, so
Product <-->> ProductPhotos <<--> ERAttachment
Product has a "photos" property (so a NSArray of ERAttachment).
But.. I don't know how to manage this with the rules, both on Inspect and on 
Edit/Create configuration.
BTW: how can I select the first object of an array with a rule? 
What I want to do is:
In ListProduct configuration I want to display the thumbnail
In Edit/Create Product configuration I want to display all the photos in 
"maximum" size (i don't know yet the size.. I'll decide later)

Thanks again for your answers

Francesco

On 22/nov/2010, at 21.05, Denis Frolov wrote:

> Hi,
> 
> In fact, the support for thumbnails is already there in the model of
> ERAttachment. Note the "parentAttachment"/"childrenAttachments"
> relationships and "thumbnail" attribute. Just create a new
> ERAttachment for thumbnail and add it to "childrenAttachments" of
> original attachment. You can use "thumbnail" attribute to specify the
> size of the thumbnail in case you need multiple thumbnails of
> different sizes. We use strings like "200x150" for "thumbnail"
> attribute.
> 
> As for the D2W, could you be more specific on what the problem is?
> 
> Denis
> 
> On Mon, Nov 22, 2010 at 7:49 PM, Francesco Romano
>  wrote:
>> Hi.
>> I have two questions about ERAttachment.
>> 1) Thumbnails are not available, yet, but.. what do I have to do to add 
>> support to them? I don't understand how to implement them "inside" 
>> erattachment
>> 2) I'd like to have a many-to-many relationship between my entity and 
>> erattachment. I don't have problems in modeling, but.. how can I manage them 
>> using D2W and rules? (I'm creating two apps: an admin app using D2W Modern 
>> look, and a "front-end" app without D2W. I have problem in the D2W side...)
>> 
>> Thank for any help
>> Francesco Romano
>> 
>>  ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>> Help/Unsubscribe/Update your Subscription:
>> http://lists.apple.com/mailman/options/webobjects-dev/dfrolov%40demax.ru
>> 
>> This email sent to dfro...@demax.ru
>> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: portals/security frameworks

2010-11-22 Thread David Holt
Along these lines, has anyone done PGP encryption client-side so that even 
programmers/database analysts wouldn't know the content? 

I know that we could set up GnuPG on client machines to encrypt the clipboard 
and get them to paste it into text boxes, but that seems a little beyond most 
end-users. 

The FireFox plugin called FireGPG looked promising (allows encryption of 
browser text areas and integration with Gmail) but it appears to have been 
discontinued.

Thanks,

David


On 2010-11-22, at 7:53 AM, Michael Gargano wrote:

> Anyone using anything in terms of a portal or security framework (like acegi) 
> that integrates easily with WO?  is there maybe even something I don't know 
> about hidden in wonder?  (crosses fingers)
> 
> Thanks.
> -Mike
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/programmingosx%40mac.com
> 
> This email sent to programming...@mac.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: ERAttachment... to-many and thumbs

2010-11-22 Thread Denis Frolov
Hi,

In fact, the support for thumbnails is already there in the model of
ERAttachment. Note the "parentAttachment"/"childrenAttachments"
relationships and "thumbnail" attribute. Just create a new
ERAttachment for thumbnail and add it to "childrenAttachments" of
original attachment. You can use "thumbnail" attribute to specify the
size of the thumbnail in case you need multiple thumbnails of
different sizes. We use strings like "200x150" for "thumbnail"
attribute.

As for the D2W, could you be more specific on what the problem is?

Denis

On Mon, Nov 22, 2010 at 7:49 PM, Francesco Romano
 wrote:
> Hi.
> I have two questions about ERAttachment.
> 1) Thumbnails are not available, yet, but.. what do I have to do to add 
> support to them? I don't understand how to implement them "inside" 
> erattachment
> 2) I'd like to have a many-to-many relationship between my entity and 
> erattachment. I don't have problems in modeling, but.. how can I manage them 
> using D2W and rules? (I'm creating two apps: an admin app using D2W Modern 
> look, and a "front-end" app without D2W. I have problem in the D2W side...)
>
> Thank for any help
> Francesco Romano
>
>  ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/dfrolov%40demax.ru
>
> This email sent to dfro...@demax.ru
>
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Ajax Requests and Session Timeouts

2010-11-22 Thread Chuck Hill
I use something like this:

public WOResponse handlePageRestorationErrorInContext(WOContext aContext)
{
WOComponent errorPage = pageWithName(pageRestorationErrorPageName(), 
aContext);
WOResponse response = null;
if (AjaxUtils.isAjaxRequest(aContext.request()))
{
AjaxUtils.redirectTo(errorPage);
response = errorPage.context().response();
aContext.session().savePage(errorPage);
}
else
{
response = errorPage.generateResponse();
}

response.setStatus(500);
return response;
}



On Nov 22, 2010, at 11:35 AM, Johnny Miller wrote:

> Hi,
> 
> I'm sure this is discussed somewhere but I'm unable to find it. 
> 
> If a session timeouts between ajax requests how do you handle the response?  
> I assume it is a combination of WOApplication's 
> handleSessionRestorationErrorInContext and AjaxUtil.isAjaxRequest methods.
> 
> Do you just return a javascript method in the response that redirects to a 
> direct action?  I can also see from wocontext that you may be able to 
> triangulate which page the request originated from.
> 
> Anyway, any advice would be greatly appreciated!
> 
> Johnny Miller
> Kahalawai Media Corp
> http://www.kahalawai.com
> 
> 
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village.net
> 
> This email sent to ch...@global-village.net

-- 
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their overall 
knowledge of WebObjects or who are trying to solve specific problems.
http://www.global-village.net/products/practical_webobjects









smime.p7s
Description: S/MIME cryptographic signature
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Ajax framework's future

2010-11-22 Thread Chuck Hill

On Nov 22, 2010, at 4:35 AM, Pascal Robert wrote:

> You need ERExtensions, ERJars and ERRest. Your Application class also have to 
> extend from ERXApplication, at least so that WORequest become ERXRequest.

You can achieve that with less worry by  overriding the createRequest* methods 
in Application.


> 
>> Hi Pascal,
>> 
>> can you can you suggested me some docs about installing and using ERRest ? I 
>> have loked at 
>> http://wiki.objectstyle.org/confluence/display/WO/Project+Wonder and I don't 
>> see it
>> 
>> In the past I have had bad experiences with Wonder and  now I don't use 
>> Wonder in my applications and I'd like to understand the framework 
>> dependencies in case of using ERRest
>> 
>> Regards 
>> 
>> Paolo
>> 
>> 
>> 
>> Il giorno 19/nov/2010, alle ore 00.54, Pascal Robert ha scritto:
>> 
>>> Use ERRest and Dojo's JSONRestStore :-)
>>> 
 Hi Mike,
 
 why not dojo support ? I think it's very powerful
 
 Regards
 
 Paolo
 
 
 
 Il giorno 19/nov/2010, alle ore 00.26, Mike Schrag ha scritto:
 
> jQuery is the most likely future. It's on the task list, but nothing is 
> particularly driving it. At one point I thought about making a pluggable 
> impl but decided it wasn't worth the complexity for something that might 
> only change every 4 years. jQuery seems to have most of the mineshare at 
> this point and seems like a good choice. If I do it I'll probably make a 
> new framework and copy everything over so it doesn't break people that 
> have big investments in prototype.
> 
> Sent from my iPhone
> 
> On Nov 18, 2010, at 5:58 PM, Michael Gargano  
> wrote:
> 
>> I was playing with the Ajax framework today (really cool btw) and I was 
>> wondering about where it's going.  I know right now it's based off 
>> prototype.js and scriptaculous, but there's a large kickback in the 
>> prototype community because the framework extends the DOM.  Prototype 2 
>> is going to fix this, but requires fairly major rewrites.  Just 
>> wondering if the framework would just be updated for prototype 2 or if 
>> that would be taken as an opportunity to move to something else like 
>> jQuery.
>> 
>> -Mike
>> 
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>> Help/Unsubscribe/Update your Subscription:
>> http://lists.apple.com/mailman/options/webobjects-dev/mschrag%40pobox.com
>> 
>> This email sent to msch...@pobox.com
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/psomma%40jpaso.com
> 
> This email sent to pso...@jpaso.com
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
 
 This email sent to prob...@macti.ca
>>> 
>>> 
>>> -- 
>>> This message has been scanned for viruses and 
>>> dangerous content by MailScanner, and is 
>>> believed to be clean.
>> 
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village.net
> 
> This email sent to ch...@global-village.net

-- 
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their overall 
knowledge of WebObjects or who are trying to solve specific problems.
http://www.global-village.net/products/practical_webobjects









smime.p7s
Description: S/MIME cryptographic signature
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Ajax Requests and Session Timeouts

2010-11-22 Thread Johnny Miller
Hi,

I'm sure this is discussed somewhere but I'm unable to find it. 

If a session timeouts between ajax requests how do you handle the response?  I 
assume it is a combination of WOApplication's 
handleSessionRestorationErrorInContext and AjaxUtil.isAjaxRequest methods.

Do you just return a javascript method in the response that redirects to a 
direct action?  I can also see from wocontext that you may be able to 
triangulate which page the request originated from.

Anyway, any advice would be greatly appreciated!

Johnny Miller
Kahalawai Media Corp
http://www.kahalawai.com



 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: ERAttachment... to-many and thumbs

2010-11-22 Thread David Holt
Hi Francesco,

On 2010-11-22, at 8:49 AM, Francesco Romano wrote:

> Hi.
> I have two questions about ERAttachment.
> 1) Thumbnails are not available, yet, but.. what do I have to do to add 
> support to them? I don't understand how to implement them "inside" 
> erattachment

Model two ERAttachments - one for the thumbnail and one for the actual picture.

OR You might be able to process the the actual picture into a thumbnail on the 
fly and display that as the thumbnail, but I am not sure. 

> 2) I'd like to have a many-to-many relationship between my entity and 
> erattachment. I don't have problems in modeling, but.. how can I manage them 
> using D2W and rules? (I'm creating two apps: an admin app using D2W Modern 
> look, and a "front-end" app without D2W. I have problem in the D2W side...)

Did you get a chance to look at the little tutorial I put together? Maybe 
something in there could help?

http://wiki.objectstyle.org/confluence/display/WONDER/ERAttachment+Framework

I made a couple of notes related to D2W and ERAttachment here:

http://wiki.objectstyle.org/confluence/display/WO/ERModernLook

If that's not enough to get you going, please let me know,

David


> 
> Thank for any help
> Francesco Romano
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/programmingosx%40mac.com
> 
> This email sent to programming...@mac.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: ERAttachment... to-many and thumbs

2010-11-22 Thread Kieran Kelleher
Rather than working directly with ERAttachment, just make your own attachment 
wrapper entity (MyAttachment) with relationships to original ERAttachment and a 
thumbnail attachment.


MyAttachment --- original > ERAttachment
MyAttachment --- thumbnail > ERAttachment  (fits in say 160 x 160 px bounds)

You can even have a third one for "Large Screen Display", especially if 
originals are very resolution pics typical of modern digital cameras
MyAttachment --- large > ERAttachment   (fits in say 1024 x 768 px bounds)


You can trigger the thumbnail addition and/or update in willInsert and/or 
willUpdate of the MyAttachment entity.

Make you own thumbnail using the utility methods in ERAttachmentProcessor class.

Of course if the original is not an image, then thumbnail and large don't need 
to be created ... you can check for that by seeing if the mime type of the 
original matches "image/*" pattern (where * is any group of characters)


HTH, Kieran





On Nov 22, 2010, at 11:49 AM, Francesco Romano wrote:

> Hi.
> I have two questions about ERAttachment.
> 1) Thumbnails are not available, yet, but.. what do I have to do to add 
> support to them? I don't understand how to implement them "inside" 
> erattachment
> 2) I'd like to have a many-to-many relationship between my entity and 
> erattachment. I don't have problems in modeling, but.. how can I manage them 
> using D2W and rules? (I'm creating two apps: an admin app using D2W Modern 
> look, and a "front-end" app without D2W. I have problem in the D2W side...)
> 
> Thank for any help
> Francesco Romano
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/kelleherk%40gmail.com
> 
> This email sent to kelleh...@gmail.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: portals/security frameworks

2010-11-22 Thread Michael Gargano
Extremely granular authorization capability and a plug-able, multiple 
simultaneous method authentication model.

-Mike

On Nov 22, 2010, at 12:50 PM, Chuck Hill wrote:

> What exactly do you want from such a framework?
> 
> 
> On Nov 22, 2010, at 7:53 AM, Michael Gargano wrote:
> 
>> Anyone using anything in terms of a portal or security framework (like 
>> acegi) that integrates easily with WO?  is there maybe even something I 
>> don't know about hidden in wonder?  (crosses fingers)
>> 
>> Thanks.
>> -Mike
>> 
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>> Help/Unsubscribe/Update your Subscription:
>> http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village.net
>> 
>> This email sent to ch...@global-village.net
> 
> -- 
> Chuck Hill Senior Consultant / VP Development
> 
> Practical WebObjects - for developers who want to increase their overall 
> knowledge of WebObjects or who are trying to solve specific problems.
> http://www.global-village.net/products/practical_webobjects
> 
> 
> 
> 
> 
> 
> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: portals/security frameworks

2010-11-22 Thread Michael Gargano
Thanks.

Ki was on my list, I didn't realize they renamed it again.  I was 
worried too because the Ki website is outdated.  :)

-Mike

On Nov 22, 2010, at 12:06 PM, Henrique Prange wrote:

> Hi Mike,
> 
> Apache Shiro [1] is a nice Java security framework. Not too tied to any 
> specific technology. You can easily integrate it with WebObjects applications.
> 
> [1]http://shiro.apache.org/
> 
> Cheers,
> 
> Henrique
> 
> On 22/11/2010, at 13:53, Michael Gargano wrote:
> 
>> Anyone using anything in terms of a portal or security framework (like 
>> acegi) that integrates easily with WO?  is there maybe even something I 
>> don't know about hidden in wonder?  (crosses fingers)
>> 
>> Thanks.
>> -Mike
>> 
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>> Help/Unsubscribe/Update your Subscription:
>> http://lists.apple.com/mailman/options/webobjects-dev/hprange%40gmail.com
>> 
>> This email sent to hpra...@gmail.com
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/mgargano%40escholar.com
> 
> This email sent to mgarg...@escholar.com
> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: portals/security frameworks

2010-11-22 Thread Chuck Hill
What exactly do you want from such a framework?


On Nov 22, 2010, at 7:53 AM, Michael Gargano wrote:

> Anyone using anything in terms of a portal or security framework (like acegi) 
> that integrates easily with WO?  is there maybe even something I don't know 
> about hidden in wonder?  (crosses fingers)
> 
> Thanks.
> -Mike
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village.net
> 
> This email sent to ch...@global-village.net

-- 
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their overall 
knowledge of WebObjects or who are trying to solve specific problems.
http://www.global-village.net/products/practical_webobjects









smime.p7s
Description: S/MIME cryptographic signature
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: portals/security frameworks

2010-11-22 Thread Henrique Prange
Hi Mike,

Apache Shiro [1] is a nice Java security framework. Not too tied to any 
specific technology. You can easily integrate it with WebObjects applications.

[1]http://shiro.apache.org/

Cheers,

Henrique

On 22/11/2010, at 13:53, Michael Gargano wrote:

> Anyone using anything in terms of a portal or security framework (like acegi) 
> that integrates easily with WO?  is there maybe even something I don't know 
> about hidden in wonder?  (crosses fingers)
> 
> Thanks.
> -Mike
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/hprange%40gmail.com
> 
> This email sent to hpra...@gmail.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


ERAttachment... to-many and thumbs

2010-11-22 Thread Francesco Romano
Hi.
I have two questions about ERAttachment.
1) Thumbnails are not available, yet, but.. what do I have to do to add support 
to them? I don't understand how to implement them "inside" erattachment
2) I'd like to have a many-to-many relationship between my entity and 
erattachment. I don't have problems in modeling, but.. how can I manage them 
using D2W and rules? (I'm creating two apps: an admin app using D2W Modern 
look, and a "front-end" app without D2W. I have problem in the D2W side...)

Thank for any help
Francesco Romano

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


portals/security frameworks

2010-11-22 Thread Michael Gargano
Anyone using anything in terms of a portal or security framework (like acegi) 
that integrates easily with WO?  is there maybe even something I don't know 
about hidden in wonder?  (crosses fingers)

Thanks.
-Mike

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: it claims the class is missing

2010-11-22 Thread Jérémy DE ROYER
Yes, the behavior I have are :
- same one : the class for AjaxSubmitButton is either missing or does not 
extend WOElement
- validation for wocomponent crashes eclipse

If I :
- open the "bad" component,
- type a space char
- save
The error is away.

I didn't have these behaviors on my previous macbook pro (Core 2 Duo) running 
10.6 but did a fresh install on my brand new macbook pro (Core i5) running 10.6 
too...

Don't know why ? But I fear a crash each time I save a component.

Jérémy

Le 22 nov. 2010 à 16:03, Theodore Petrosky a écrit :

> eclipse 3.6.1
> wolips 3.6.6211
> 
> 10% of the time I launch eclipse, I open my project and I see all these red 
> Xs on some of the components.
> 
> 
> when I roll over a line with an X I see a warning:
> The class for AjaxSubmitButton is either missing or does not extend WOElement.
> 
> So I clean the project and it still lists this problem. Closing and quitting 
> eclipse then relaunch usually fixes the issue.
> 
> Has anyone else seen this behavior? Is there some preference file I can throw 
> away and recreate to make it (the problem) go away?
> 
> Ted
> 
> 
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/jeremy.deroyer%40ingencys.net
> 
> This email sent to jeremy.dero...@ingencys.net



 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Reminder: WOWODC 2011 survey

2010-11-22 Thread Pascal Robert
Hi guys,

Don't forget to answer the WOWODC 2011 survey so that we can find the best
dates for the next event!

  https://www.survs.com/survey/CJK2IN8808
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

it claims the class is missing

2010-11-22 Thread Theodore Petrosky
eclipse 3.6.1
wolips 3.6.6211

10% of the time I launch eclipse, I open my project and I see all these red Xs 
on some of the components.


when I roll over a line with an X I see a warning:
The class for AjaxSubmitButton is either missing or does not extend WOElement.

So I clean the project and it still lists this problem. Closing and quitting 
eclipse then relaunch usually fixes the issue.

Has anyone else seen this behavior? Is there some preference file I can throw 
away and recreate to make it (the problem) go away?

Ted


  
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Eclipse failed to launch an app [was Re: New error about er.javamail ..]

2010-11-22 Thread Mark Ritchie
On 22/Nov/2010, at 9:42 AM, James Cicenia wrote:
> How did you debug the conflict with language extensions? Where did you see 
> that?

Well, I worked for 1 day messing about with svn versions of the code base and 
was able to isolate the check in which broke Eclipse.  However I was unable to 
figure out why it would not compile.  For me, the symptom was an Eclipse 
internal null pointer exception on a Java file which would otherwise compile 
using a command line ant build.  When that file was removed from the build, 
another file showed the same null pointer exception when the incremental 
builder ran.  I gave up at this point in less then mild frustration.  A 
colleague of mine looked at it and noticed that whenever the eclipse hit the 
internal exception, the first java file in the project was blamed for the 
problem.  Using a combination of google foo and eclipse debugging skills, he 
determined that it was a bug with the Eclipse implementation of annotations 
that was masking the real problem.  He removed all annotations from all new 
java files and was then able to see the real problem, a classpath was out of 
date.  Once the classpath was fixed, the annotations could be put back and 
Eclipse was working again.  2 days lost but at least we were back in business.  
This was a very specific problem and I certainly hope that you are not facing 
something this nasty.  ;-)   One thing was clear though, more then one 
developer's installation of Eclipse (similar version, similar configuration) 
would break the same way.  That at least let me know early on that it was not 
the configuration of a single machine which was causing the problem.  YMMV.

Good luck!
M.

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Getting the client timezone

2010-11-22 Thread Ricardo J. Parada
After testing with Internet Explorer I had to use different JavaScript to be 
able to extract the client time zone ID.  Now the code is something like this:

[ .html ]




  
 $('clientTimeZoneID').value = new Date().toString().match(/:\d\d 
\w+/)[0].split(' ')[1]
  
  
 $('clientTimeZoneID').value = new 
Date().toString().match(/\50\w+\51/)[0].match(/\w+/);
  


[ .wod ]

HiddenField: WOHiddenField {
id = "clientTimeZoneID";
value = clientTimeZoneID;
}

[ .java ]

public ERXBrowser requestBrowser() {
ERXRequest erxRequest = (ERXRequest) context().request();
return erxRequest.browser();
}


On Nov 13, 2010, at 11:52 AM, Ricardo J. Parada wrote:

> 
> 
> Just sharing what I'm doing...
> 
> It looks like getting the GMT offset and using that to create a time zone 
> does not give me an object that knows about daylight savings.
> 
> So I created a different approach which I've tested in Safari/Chrome/FireFox. 
>  The JavaScript is like this:
> 
> 
> 
> 
> $('clientTimeZoneID').value = new 
> Date().toString().match(/\50\w+\51/)[0].match(/\w+/);
> 
> 
> This JavaScript gets you the ID of the timezone that appears in parenthesis 
> when converting a Date object to a string.  This returns something like 
> "EST", or "MST", or "PST", or "CST".  
> 
> Then from Java I can create a time zone object using the ID:
> 
>   TimeZone clientTimeZone = TimeZone.getTimeZone(clientTimeZoneID);
> 
> Using the ID is deprecated because CST could be confused with China Standard 
> Time (instead of Central Standard Time).  But I guess that's okay for us 
> because our clients are all US-based.  :-)
> 
> The TimeZone object created using this ID knows about daylight savings and 
> makes it useful for date/time input in the client time zone.  And I can then 
> know exactly what the equivalent is in my app's time zone.
> 
> P.S. I still have to test in Internet Explorer.
> 
> 
>  
> On Nov 12, 2010, at 12:37 AM, Travis Britt wrote:
> 
>> Yeah I do this by using javascript get the GMT offset reported by the 
>> browser on login, and store that in the session. Then use the offset to 
>> create a java.util.TimeZone and use that in a formatter to display all your 
>> time stamps in the user's expected time zone.
>> 
>> tb
>> 
>> On Nov 11, 2010, at 2:30 PM, Ricardo J. Parada wrote:
>> 
>>> Thanks... That should get me going.
>>> 
>>> 
>>> 
>>> On Nov 11, 2010, at 4:43 PM, Johann Werner wrote:
>>> 
 Hi Ricardo,
 
 have a look at 
 http://josephscott.org/archives/2009/08/detecting-client-side-time-zone-offset-via-javascript/
 So you could put the presented script snippet in your login form and 
 extract the GMT offset of the client from the request form values.
 
 jw
 
 Am 11.11.2010 um 22:25 schrieb Ricardo J. Parada:
 
> 
> What are you all doing to find out the timezone from the browser?  I'm 
> guessing there is a header in the request containing this info.  
> 
> Thanks,
> Ricardo
 
 
>>> 
>>> ___
>>> Do not post admin requests to the list. They will be ignored.
>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>>> Help/Unsubscribe/Update your Subscription:
>>> http://lists.apple.com/mailman/options/webobjects-dev/tbritt%40phigment.org
>>> 
>>> This email sent to tbr...@phigment.org
>> 
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/rparada%40mac.com
> 
> This email sent to rpar...@mac.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Eclipse failed to launch an app [was Re: New error about er.javamail ..]

2010-11-22 Thread James Cicenia
A good buddy has the laptop. He is well versed in unix, class paths, eclipse, 
etc.
As of late last night he was frustrated too .. and he, like me was using file 
diffs, everything.

And, it is a new, stock MacBookPro.

How did you debug the conflict with language extensions? Where did you see that?

Thanks

- James

On Nov 22, 2010, at 8:33 AM, Mark Ritchie wrote:

> Good Morning,
> 
> On 22/Nov/2010, at 7:59 AM, James Cicenia wrote:
>> I can build. I can deploy. But nothing and I mean nothing will allow it to 
>> run via eclipse.
> 
> Frustrating... I've been there.
> What usually helps for me is to have someone else look over my shoulder and 
> tell me what I'm missing.  Typical for development type problems but it's a 
> fact of life that we sometimes don't see what's in front of us.  OTOH, we 
> just had a case at work where java files created by another IDE caused 
> Eclipse to break internally due to a bug with language extensions...  2 of us 
> wasted 2 days figuring out that one and in the end we only ended up with a 
> heuristic not a complete solution as to how to fix the problem...
> 
> Wrt your specific case, what happening when you try to launch the application 
> with eclipse now?
> 
> Good luck in your quest.  
> M.
> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Eclipse failed to launch an app [was Re: New error about er.javamail ..]

2010-11-22 Thread Mark Ritchie
Good Morning,

On 22/Nov/2010, at 7:59 AM, James Cicenia wrote:
> I can build. I can deploy. But nothing and I mean nothing will allow it to 
> run via eclipse.

Frustrating... I've been there.
What usually helps for me is to have someone else look over my shoulder and 
tell me what I'm missing.  Typical for development type problems but it's a 
fact of life that we sometimes don't see what's in front of us.  OTOH, we just 
had a case at work where java files created by another IDE caused Eclipse to 
break internally due to a bug with language extensions...  2 of us wasted 2 
days figuring out that one and in the end we only ended up with a heuristic not 
a complete solution as to how to fix the problem...

Wrt your specific case, what happening when you try to launch the application 
with eclipse now?

Good luck in your quest.  
M.

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Ajax framework's future

2010-11-22 Thread Jérémy DE ROYER
Hi,

Wo do use both : jQuery and Ajax framework.So we have to use fixes to use both.

Using jQuery could make things easier.

Jérémy

Le 22 nov. 2010 à 13:35, Pascal Robert a écrit :

> You need ERExtensions, ERJars and ERRest. Your Application class also have to 
> extend from ERXApplication, at least so that WORequest become ERXRequest.
> 
>> Hi Pascal,
>> 
>> can you can you suggested me some docs about installing and using ERRest ? I 
>> have loked at 
>> http://wiki.objectstyle.org/confluence/display/WO/Project+Wonder and I don't 
>> see it
>> 
>> In the past I have had bad experiences with Wonder and  now I don't use 
>> Wonder in my applications and I'd like to understand the framework 
>> dependencies in case of using ERRest
>> 
>> Regards 
>> 
>> Paolo
>> 
>> 
>> 
>> Il giorno 19/nov/2010, alle ore 00.54, Pascal Robert ha scritto:
>> 
>>> Use ERRest and Dojo's JSONRestStore :-)
>>> 
 Hi Mike,
 
 why not dojo support ? I think it's very powerful
 
 Regards
 
 Paolo
 
 
 
 Il giorno 19/nov/2010, alle ore 00.26, Mike Schrag ha scritto:
 
> jQuery is the most likely future. It's on the task list, but nothing is 
> particularly driving it. At one point I thought about making a pluggable 
> impl but decided it wasn't worth the complexity for something that might 
> only change every 4 years. jQuery seems to have most of the mineshare at 
> this point and seems like a good choice. If I do it I'll probably make a 
> new framework and copy everything over so it doesn't break people that 
> have big investments in prototype.
> 
> Sent from my iPhone
> 
> On Nov 18, 2010, at 5:58 PM, Michael Gargano  
> wrote:
> 
>> I was playing with the Ajax framework today (really cool btw) and I was 
>> wondering about where it's going.  I know right now it's based off 
>> prototype.js and scriptaculous, but there's a large kickback in the 
>> prototype community because the framework extends the DOM.  Prototype 2 
>> is going to fix this, but requires fairly major rewrites.  Just 
>> wondering if the framework would just be updated for prototype 2 or if 
>> that would be taken as an opportunity to move to something else like 
>> jQuery.
>> 
>> -Mike
>> 
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>> Help/Unsubscribe/Update your Subscription:
>> http://lists.apple.com/mailman/options/webobjects-dev/mschrag%40pobox.com
>> 
>> This email sent to msch...@pobox.com
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/psomma%40jpaso.com
> 
> This email sent to pso...@jpaso.com
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
 
 This email sent to prob...@macti.ca
>>> 
>>> 
>>> -- 
>>> This message has been scanned for viruses and 
>>> dangerous content by MailScanner, and is 
>>> believed to be clean.
>> 
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/jeremy.deroyer%40ingencys.net
> 
> This email sent to jeremy.dero...@ingencys.net

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: New error about er.javamail ..

2010-11-22 Thread James Cicenia
Ok - 

6 computers.
4 can run my app via Eclipse.
2 can't. I gave up on one as it wasn't needed.

I can build. I can deploy. But nothing and I mean nothing will allow it to run 
via eclipse.

I have checked every f...@#king path, list, switch, and more. I have given it 
to a friend with 
much experience in servers, java, paths, etc. And we are still SOL.

Does anybody have any other ... I don't care how stupid the suggestion is ... 
suggestions?

In fact, I will ship the computer overnight and pay someone money if they can 
1) Get it working
and more importantly...
2) Tell me what the problem was.

Regards,
James ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Ajax framework's future

2010-11-22 Thread Pascal Robert
You need ERExtensions, ERJars and ERRest. Your Application class also have to 
extend from ERXApplication, at least so that WORequest become ERXRequest.

> Hi Pascal,
> 
> can you can you suggested me some docs about installing and using ERRest ? I 
> have loked at 
> http://wiki.objectstyle.org/confluence/display/WO/Project+Wonder and I don't 
> see it
> 
> In the past I have had bad experiences with Wonder and  now I don't use 
> Wonder in my applications and I'd like to understand the framework 
> dependencies in case of using ERRest
> 
> Regards 
> 
> Paolo
> 
> 
> 
> Il giorno 19/nov/2010, alle ore 00.54, Pascal Robert ha scritto:
> 
>> Use ERRest and Dojo's JSONRestStore :-)
>> 
>>> Hi Mike,
>>> 
>>> why not dojo support ? I think it's very powerful
>>> 
>>> Regards
>>> 
>>> Paolo
>>> 
>>> 
>>> 
>>> Il giorno 19/nov/2010, alle ore 00.26, Mike Schrag ha scritto:
>>> 
 jQuery is the most likely future. It's on the task list, but nothing is 
 particularly driving it. At one point I thought about making a pluggable 
 impl but decided it wasn't worth the complexity for something that might 
 only change every 4 years. jQuery seems to have most of the mineshare at 
 this point and seems like a good choice. If I do it I'll probably make a 
 new framework and copy everything over so it doesn't break people that 
 have big investments in prototype.
 
 Sent from my iPhone
 
 On Nov 18, 2010, at 5:58 PM, Michael Gargano  wrote:
 
> I was playing with the Ajax framework today (really cool btw) and I was 
> wondering about where it's going.  I know right now it's based off 
> prototype.js and scriptaculous, but there's a large kickback in the 
> prototype community because the framework extends the DOM.  Prototype 2 
> is going to fix this, but requires fairly major rewrites.  Just wondering 
> if the framework would just be updated for prototype 2 or if that would 
> be taken as an opportunity to move to something else like jQuery.
> 
> -Mike
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/mschrag%40pobox.com
> 
> This email sent to msch...@pobox.com
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/psomma%40jpaso.com
 
 This email sent to pso...@jpaso.com
>>> 
>>> ___
>>> Do not post admin requests to the list. They will be ignored.
>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>>> Help/Unsubscribe/Update your Subscription:
>>> http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
>>> 
>>> This email sent to prob...@macti.ca
>> 
>> 
>> -- 
>> This message has been scanned for viruses and 
>> dangerous content by MailScanner, and is 
>> believed to be clean.
> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Ajax framework's future

2010-11-22 Thread Paul D Yu
Paole

If you use Eclipse with latest WOLips, and select create Project Wonder 
Framework, and then Application, WOLips will create the proper framework 
dependencies for you.
http://wiki.objectstyle.org/confluence/display/WONDER/ERRest+Framework

Also install the Ken Ishimoto Safari plugin which will give you easy access to 
WO and Wonder documentations.

ERRest podcast is at 
feed://www.wocommunity.org/podcasts/wopodcasts.xml

Paul
 
On Nov 22, 2010, at 6:15 AM, Paolo Sommaruga wrote:

> Hi Pascal,
> 
> can you can you suggested me some docs about installing and using ERRest ? I 
> have loked at 
> http://wiki.objectstyle.org/confluence/display/WO/Project+Wonder and I don't 
> see it
> 
> In the past I have had bad experiences with Wonder and  now I don't use 
> Wonder in my applications and I'd like to understand the framework 
> dependencies in case of using ERRest
> 
> Regards 
> 
> Paolo
> 
> 
> 
> Il giorno 19/nov/2010, alle ore 00.54, Pascal Robert ha scritto:
> 
>> Use ERRest and Dojo's JSONRestStore :-)
>> 
>>> Hi Mike,
>>> 
>>> why not dojo support ? I think it's very powerful
>>> 
>>> Regards
>>> 
>>> Paolo
>>> 
>>> 
>>> 
>>> Il giorno 19/nov/2010, alle ore 00.26, Mike Schrag ha scritto:
>>> 
 jQuery is the most likely future. It's on the task list, but nothing is 
 particularly driving it. At one point I thought about making a pluggable 
 impl but decided it wasn't worth the complexity for something that might 
 only change every 4 years. jQuery seems to have most of the mineshare at 
 this point and seems like a good choice. If I do it I'll probably make a 
 new framework and copy everything over so it doesn't break people that 
 have big investments in prototype.
 
 Sent from my iPhone
 
 On Nov 18, 2010, at 5:58 PM, Michael Gargano  wrote:
 
> I was playing with the Ajax framework today (really cool btw) and I was 
> wondering about where it's going.  I know right now it's based off 
> prototype.js and scriptaculous, but there's a large kickback in the 
> prototype community because the framework extends the DOM.  Prototype 2 
> is going to fix this, but requires fairly major rewrites.  Just wondering 
> if the framework would just be updated for prototype 2 or if that would 
> be taken as an opportunity to move to something else like jQuery.
> 
> -Mike
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/mschrag%40pobox.com
> 
> This email sent to msch...@pobox.com
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/psomma%40jpaso.com
 
 This email sent to pso...@jpaso.com
>>> 
>>> ___
>>> Do not post admin requests to the list. They will be ignored.
>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>>> Help/Unsubscribe/Update your Subscription:
>>> http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
>>> 
>>> This email sent to prob...@macti.ca
>> 
>> 
>> -- 
>> This message has been scanned for viruses and 
>> dangerous content by MailScanner, and is 
>> believed to be clean.
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/pyu%40mac.com
> 
> This email sent to p...@mac.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: Ajax framework's future

2010-11-22 Thread Paolo Sommaruga
Hi Pascal,

can you can you suggested me some docs about installing and using ERRest ? I 
have loked at http://wiki.objectstyle.org/confluence/display/WO/Project+Wonder 
and I don't see it

In the past I have had bad experiences with Wonder and  now I don't use Wonder 
in my applications and I'd like to understand the framework dependencies in 
case of using ERRest

Regards 

Paolo



Il giorno 19/nov/2010, alle ore 00.54, Pascal Robert ha scritto:

> Use ERRest and Dojo's JSONRestStore :-)
> 
>> Hi Mike,
>> 
>> why not dojo support ? I think it's very powerful
>> 
>> Regards
>> 
>> Paolo
>> 
>> 
>> 
>> Il giorno 19/nov/2010, alle ore 00.26, Mike Schrag ha scritto:
>> 
>>> jQuery is the most likely future. It's on the task list, but nothing is 
>>> particularly driving it. At one point I thought about making a pluggable 
>>> impl but decided it wasn't worth the complexity for something that might 
>>> only change every 4 years. jQuery seems to have most of the mineshare at 
>>> this point and seems like a good choice. If I do it I'll probably make a 
>>> new framework and copy everything over so it doesn't break people that have 
>>> big investments in prototype.
>>> 
>>> Sent from my iPhone
>>> 
>>> On Nov 18, 2010, at 5:58 PM, Michael Gargano  wrote:
>>> 
 I was playing with the Ajax framework today (really cool btw) and I was 
 wondering about where it's going.  I know right now it's based off 
 prototype.js and scriptaculous, but there's a large kickback in the 
 prototype community because the framework extends the DOM.  Prototype 2 is 
 going to fix this, but requires fairly major rewrites.  Just wondering if 
 the framework would just be updated for prototype 2 or if that would be 
 taken as an opportunity to move to something else like jQuery.
 
 -Mike
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/mschrag%40pobox.com
 
 This email sent to msch...@pobox.com
>>> ___
>>> Do not post admin requests to the list. They will be ignored.
>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>>> Help/Unsubscribe/Update your Subscription:
>>> http://lists.apple.com/mailman/options/webobjects-dev/psomma%40jpaso.com
>>> 
>>> This email sent to pso...@jpaso.com
>> 
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>> Help/Unsubscribe/Update your Subscription:
>> http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
>> 
>> This email sent to prob...@macti.ca
> 
> 
> -- 
> This message has been scanned for viruses and 
> dangerous content by MailScanner, and is 
> believed to be clean.

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com