Re: Mod_Rewrite

2011-03-23 Thread Martin Samm
Ken,

we use a number of short url forms and rewrite these to other URLs
(admitedly DAs only).

For example

RewriteCond ${lowercase:%{SERVER_NAME}} ^(.+)$
RewriteCond ${vhostapp:%1} ^(.+)$
RewriteRule ^/assignment/(.+)$ /aetopia/WebObjects/%1.woa/wa/e?e=$1

We're using some virtual hosts which is the reason for the %1 references;
the key bit is that we're regex-ing a certain short form and rewriting to
the DA long form.

Not sure if this helps you at all.

Martin

On 23 March 2011 06:54, Ken - Watermark Studios 
wrote:

> I know this is a topic that has been exhausted extensively, but I need some
> help finding resources that address my difficulty with mod_rewrite and wo.
>
> I notice that a number of tutorials explain how to mod_rewrite direct
> actions for shorter URLs, but is there a way to just generically remove the
> "cgi-bin/WebObjects/App.woa" portion of the URL? I don't mind the "wo/" or
> "wa/" part, but it would be nice to just have "
> www.mysite.com/wo/dynamic_stuff" or "www.mysite.com/wa/direct_action"
> especially for tracking purposes.
>
> I've read a number of articles about this, but either they only address the
> direct actions and require some application class imports or they just don't
> seem to work.
>
> Btw, I'm running Centos 5, WebObjects 5.4, and Apache2.
>
> Thanks,
>
> Ken Anderson
>
>  ___
> 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/martin.samm%40aetopia.com
>
> This email sent to martin.s...@aetopia.com
>



-- 
Martin Samm
Aetopia Ltd
+44 (0) 28 9099 8767

Aetopia Ltd is a limited company registered in Belfast, Northern Ireland,
with registration number NI053321, having its principal place of business
(and postal address) at ECIT Institute, Queens Road, BELFAST BT3 9DT
and registered office at 1, Lanyon Quay, BELFAST BT1 3LG
 ___
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

Error in Loading Images

2011-03-23 Thread pavan.jayam

Dear List,

i am getting a strange problem in loading images,
i am loading some images from apache server on a single page using 
WOResourseURL and javascript, the images loading inconsistently,  some 
times they load some times they don't, i am getting a javascript error..


Can any one please suggest what could be the problem.
--
Thanks&Regards,
*Pavan Jayam
*Software Trainee

*Prithvi Information Solutions Ltd*
10Q3A1, Cyber Towers
HITEC City, Madhapur
Hyderabad - 500 081

Desk: +091 - 040 - 66846019 XT:304
http://www.prithvisolutions.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: Mod_Rewrite

2011-03-23 Thread John Huss
In httpd.conf you have to load the rewrite module after the WO module:

LoadModule WebObjects_module
 /System/Library/WebObjects/Adaptors/Apache2.2/mod_WebObjects.so
LoadModule rewrite_module libexec/apache2/mod_rewrite.so

In your apache virtual hosts conf file:


RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* - [F]
RewriteRule ^/app(.*)$ /cgi-bin/WebObjects/MyApp.woa$1
[PT,L]
RewriteEngine On


In your app's Properties file:

# URL rewriting

er.extensions.ERXApplication.replaceApplicationPath.pattern=/cgi
-bin/WebObjects/MyApp.woa

er.extensions.ERXApplication.replaceApplicationPath.replace=/app


John


On Wed, Mar 23, 2011 at 1:54 AM, Ken - Watermark Studios <
k...@watermarkstudios.com> wrote:

> I know this is a topic that has been exhausted extensively, but I need some
> help finding resources that address my difficulty with mod_rewrite and wo.
>
> I notice that a number of tutorials explain how to mod_rewrite direct
> actions for shorter URLs, but is there a way to just generically remove the
> "cgi-bin/WebObjects/App.woa" portion of the URL? I don't mind the "wo/" or
> "wa/" part, but it would be nice to just have "
> www.mysite.com/wo/dynamic_stuff" or "www.mysite.com/wa/direct_action"
> especially for tracking purposes.
>
> I've read a number of articles about this, but either they only address the
> direct actions and require some application class imports or they just don't
> seem to work.
>
> Btw, I'm running Centos 5, WebObjects 5.4, and Apache2.
>
> Thanks,
>
> Ken Anderson
>
>  ___
> 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/johnthuss%40gmail.com
>
> This email sent to johnth...@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: EO inheritance + Oracle

2011-03-23 Thread Jon Nolan

Understood Ken.  Good point and I know you're right about performance 
trade-offs.  I've not given up just yet but I'll take your words to heart.

On 3/22/11 9:29 PM, Ken Anderson wrote:

Jon,

My point was that SQL optimizations are much easier to implement (I use Oracle 
too) without an inheritance hierarchy, since EOF is less involved in building 
queries to handle the structure.  I actually have a situation today where I 
regret using 2 levels of inheritance because I cannot tune the queries as 
needed, causing a significant degradation of performance.  This is especially 
true with 2 level hierarchies and batch faulting.  EOF is just unable to 
resolve the super-entities correctly.  When I tested changing it to a one level 
hierarchy, performance increased a thousand fold.

In any case, best of luck!

Ken

On Mar 22, 2011, at 11:04 PM, Jon Nolan wrote:


Hi Ken,

The inheritance is absolutely necessary and works a treat.  My example EO tree 
is just that, an example for the sake of simplicity.  The real model supports 
social network content types and is fairly esoteric (the example is easy to 
understand and is a valid representation).  While quite complicated our model 
supports our needs almost perfectly.  The differences in behavior between types 
can be substantial.

The behavior of the objects and the structure of the model isn't the problem.  
The problem is very much localized to data retrieval speed and is more an 
Oracle issue than a Web Objects one.  I'm trying to optimize it in various ways 
- some on the WO side and others on the DB side.  I'm not considering throwing 
away the substantial benefits of our model design.

The specific behavior I'm looking for is influencing Oracle's optimizer to NOT 
do full table scans when retrieving these objects.  Getting rid of big OR 
qualifiers, controlling the order of restricting v. non-restricting qualifiers, 
utilizing hints, using views, etc.  All in play.

Thanks,
Jon



On 3/22/11 8:18 PM, Ken Anderson wrote:

Not to put a crimp in your model, but is inheritance really necessary here?  
What actual behavior is different?

One level inheritance is hard to optimize - two levels, doubly so (at least!).  
If you could share more about what kind of behavior you're looking for from 
these objects it might be helpful to everyone on the list.

Ken

On Mar 22, 2011, at 7:31 PM, Jon Nolan wrote:


I have a fairly involved EO inheritance tree that works beautifully in every 
way but one.  Here's a quick example illustrating the structure I'm using:

Human
North American
American
Canadian
Mexican
European
German
Italian
Spaniard
Asian
Korean
Laotian

etc.  You get the idea.

So if I utilize European.fetchEuropeans(...) a qualifier is generated along the 
lines of HUMAN_TYPE = German or HUMAN_TYPE = Italian or HUMAN_TYPE = Spaniard.  
This would be fine except for the Oracle optimizer deciding not to use the 
HUMAN_TYPE_IDX index.  I've tried using hints but (a) it's difficult to get 
right for a query generated by a ERXBatchingDisplayGroup and (b) the JDBC 
adaptor disconnects me when I try.

There is another qualifier clause which happens to make it so that, in the 
European example, all the returned humans will indeed be German, Italian or 
Spaniard.  Is there any way to simply discard the OR'd HUMAN_TYPE qualifier?  
Any other suggestions?  Do I have something wrong in my model in the first 
place?

Thanks,
Jon
___
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/kenlists%40anderhome.com

This email sent tokenli...@anderhome.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: EO inheritance + Oracle

2011-03-23 Thread Mike Schrag
multiple levels of inheritance shouldn't really matter with respect to batch 
faulting for single table inheritance (which i assume he's using based on the 
restricting qualifier references) ... what DOES matter is if you refer to 
abstract entities, which requires tripping faults to know what type of java 
object to return to you. maybe i'm just not thinking of a particular bug, but i 
wouldn't think this should be a big problem.

also, if you wanted to REMOVE the big "OR" restricting qualifier off of 
single-table inheritance fetch, you can do it by overriding 
EOEntity._singleTableRestrictingQualifier(), but you can ONLY do this if the 
particular entity has no parent entity and if you KNOW (i.e., probably flag the 
entity in the model) that you have an onto (in the mathematical sense) map to 
your table with your restricting qualifiers.

ms

On Mar 23, 2011, at 11:05 AM, Jon Nolan wrote:

> Understood Ken.  Good point and I know you're right about performance 
> trade-offs.  I've not given up just yet but I'll take your words to heart.
> 
> On 3/22/11 9:29 PM, Ken Anderson wrote:
>> Jon,
>> 
>> My point was that SQL optimizations are much easier to implement (I use 
>> Oracle too) without an inheritance hierarchy, since EOF is less involved in 
>> building queries to handle the structure.  I actually have a situation today 
>> where I regret using 2 levels of inheritance because I cannot tune the 
>> queries as needed, causing a significant degradation of performance.  This 
>> is especially true with 2 level hierarchies and batch faulting.  EOF is just 
>> unable to resolve the super-entities correctly.  When I tested changing it 
>> to a one level hierarchy, performance increased a thousand fold.
>> 
>> In any case, best of luck!
>> 
>> Ken
>> 
>> On Mar 22, 2011, at 11:04 PM, Jon Nolan wrote:
>> 
>>> Hi Ken,
>>> 
>>> The inheritance is absolutely necessary and works a treat.  My example EO 
>>> tree is just that, an example for the sake of simplicity.  The real model 
>>> supports social network content types and is fairly esoteric (the example 
>>> is easy to understand and is a valid representation).  While quite 
>>> complicated our model supports our needs almost perfectly.  The differences 
>>> in behavior between types can be substantial.
>>> 
>>> The behavior of the objects and the structure of the model isn't the 
>>> problem.  The problem is very much localized to data retrieval speed and is 
>>> more an Oracle issue than a Web Objects one.  I'm trying to optimize it in 
>>> various ways - some on the WO side and others on the DB side.  I'm not 
>>> considering throwing away the substantial benefits of our model design.
>>> 
>>> The specific behavior I'm looking for is influencing Oracle's optimizer to 
>>> NOT do full table scans when retrieving these objects.  Getting rid of big 
>>> OR qualifiers, controlling the order of restricting v. non-restricting 
>>> qualifiers, utilizing hints, using views, etc.  All in play.
>>> 
>>> Thanks,
>>> Jon
>>> 
>>> 
>>> 
>>> On 3/22/11 8:18 PM, Ken Anderson wrote:
 Not to put a crimp in your model, but is inheritance really necessary 
 here?  What actual behavior is different?
 
 One level inheritance is hard to optimize - two levels, doubly so (at 
 least!).  If you could share more about what kind of behavior you're 
 looking for from these objects it might be helpful to everyone on the list.
 
 Ken
 
 On Mar 22, 2011, at 7:31 PM, Jon Nolan wrote:
 
> I have a fairly involved EO inheritance tree that works beautifully in 
> every way but one.  Here's a quick example illustrating the structure I'm 
> using:
> 
> Human
>North American
>American
>Canadian
>Mexican
>European
>German
>Italian
>Spaniard
>Asian
>Korean
>Laotian
> 
> etc.  You get the idea.
> 
> So if I utilize European.fetchEuropeans(...) a qualifier is generated 
> along the lines of HUMAN_TYPE = German or HUMAN_TYPE = Italian or 
> HUMAN_TYPE = Spaniard.  This would be fine except for the Oracle 
> optimizer deciding not to use the HUMAN_TYPE_IDX index.  I've tried using 
> hints but (a) it's difficult to get right for a query generated by a 
> ERXBatchingDisplayGroup and (b) the JDBC adaptor disconnects me when I 
> try.
> 
> There is another qualifier clause which happens to make it so that, in 
> the European example, all the returned humans will indeed be German, 
> Italian or Spaniard.  Is there any way to simply discard the OR'd 
> HUMAN_TYPE qualifier?  Any other suggestions?  Do I have something wrong 
> in my model in the first place?
> 
> Thanks,
> Jon
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-d

URGENT problem with D2W and PageWrapper.wo

2011-03-23 Thread Markus Ruggiero
I have an urgent and rather weird problem in a D2W application. I can put 
anything into PageWrapper.wo and it works - unless I put things into the 
head-section above . There is a webobjects D2WHead wrapping some style 
defs and a couple of meta infos. These do not make it into the generated page. 
So something is swallowing everything between  and  (tried with 
and without D2WHead). Everything gets replaced by 

   
   
   
  ec_admin: QueryAll 
   
(ec_admin being the app name).
Where is my stuff? What am I missing?

Thanks
---markus---

 ___
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: URGENT problem with D2W and PageWrapper.wo

2011-03-23 Thread Anjo Krank
I so love verbose bug descriptions... can't you simply post the relevant parts 
of your components, so as to not force everyone to make wild guesses?

Cheers, Ajo

Am 23.03.2011 um 16:40 schrieb Markus Ruggiero:

> I have an urgent and rather weird problem in a D2W application. I can put 
> anything into PageWrapper.wo and it works - unless I put things into the 
> head-section above . There is a webobjects D2WHead wrapping some style 
> defs and a couple of meta infos. These do not make it into the generated 
> page. So something is swallowing everything between  and  (tried 
> with and without D2WHead). Everything gets replaced by 
> 
>
>
>
>   ec_admin: QueryAll 
>
> 
> (ec_admin being the app name).
> Where is my stuff? What am I missing?
> 
> Thanks
> ---markus---
> 
> ___
> 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/anjo%40krank.net
> 
> This email sent to a...@krank.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


Fwd: URGENT problem with D2W and PageWrapper.wo

2011-03-23 Thread Ramsey Gurley
Oops, forgot to copy the list

Begin forwarded message:

> From: Ramsey Gurley 
> Date: March 23, 2011 9:20:39 AM MST
> To: Markus Ruggiero 
> Subject: Re: URGENT problem with D2W and PageWrapper.wo
> 
> D2WHead doesn't display component content.  ERD2WHead does.
> 
> Ramsey
> 
> On Mar 23, 2011, at 8:40 AM, Markus Ruggiero wrote:
> 
>> I have an urgent and rather weird problem in a D2W application. I can put 
>> anything into PageWrapper.wo and it works - unless I put things into the 
>> head-section above . There is a webobjects D2WHead wrapping some style 
>> defs and a couple of meta infos. These do not make it into the generated 
>> page. So something is swallowing everything between  and  
>> (tried with and without D2WHead). Everything gets replaced by 
>> 
>>
>>
>>
>>   ec_admin: QueryAll 
>>
>> (ec_admin being the app name).
>> Where is my stuff? What am I missing?
>> 
>> Thanks
>> ---markus---
>> 
>> ___
>> 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/rgurley%40smarthealth.com
>> 
>> This email sent to rgur...@smarthealth.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

possible speed up for Eclipse on Snow Leopard?

2011-03-23 Thread David Holt
Hugi tweeted this this morning and it seems to work for me. YMMV

http://www.inteist.com/2010/05/how-to-speed-up-eclipse-on-os-x-10-6-snow-leopard/

David ___
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: possible speed up for Eclipse on Snow Leopard?

2011-03-23 Thread Mike Schrag
@see my conversation with Scott Kovatch ... ends with 
http://twitter.com/skovatch/status/50611355920777217

ms

On Mar 23, 2011, at 1:34 PM, David Holt wrote:

> Hugi tweeted this this morning and it seems to work for me. YMMV
> 
> http://www.inteist.com/2010/05/how-to-speed-up-eclipse-on-os-x-10-6-snow-leopard/
> 
> David ___
> 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/archive%40mail-archive.com

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


Re: URGENT problem with D2W and PageWrapper.wo

2011-03-23 Thread Markus Ruggiero

On 23.03.2011, at 16:46, Anjo Krank wrote:

> I so love verbose bug descriptions... can't you simply post the relevant 
> parts of your components, so as to not force everyone to make wild guesses?
> 
> Cheers, Ajo
> 

Sorry, thought that was enough. It was for Ramsey Gurley. Thank you, you made 
my day!
---markus---



> Am 23.03.2011 um 16:40 schrieb Markus Ruggiero:
> 
>> I have an urgent and rather weird problem in a D2W application. I can put 
>> anything into PageWrapper.wo and it works - unless I put things into the 
>> head-section above . There is a webobjects D2WHead wrapping some style 
>> defs and a couple of meta infos. These do not make it into the generated 
>> page. So something is swallowing everything between  and  
>> (tried with and without D2WHead). Everything gets replaced by 
>> 
>>   
>>   
>>   
>>  ec_admin: QueryAll 
>>   
>> 
>> (ec_admin being the app name).
>> Where is my stuff? What am I missing?
>> 
>> Thanks
>> ---markus---
>> 
>> ___
>> 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/anjo%40krank.net
>> 
>> This email sent to a...@krank.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/mailinglists%40kataputt.com
> 
> This email sent to mailingli...@kataputt.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: possible speed up for Eclipse on Snow Leopard?

2011-03-23 Thread Hugi Thordarson
Weird - I'm running a relatively clean installation of 3.6.1 (64bit Cocoa). The 
parameter was in the original eclipse.ini and once changed, made a world of 
difference, as in 
"from-molasses-slow-to-rather-fast-definitely-not-a-placebo-effect"-difference.

I did quite a little googling trying to find out how and why this works, but 
without success. If you find out more, I'd be interested to hear about it.

Cheers,
- hugi



On 23.3.2011, at 17:36, Mike Schrag wrote:

> @see my conversation with Scott Kovatch ... ends with 
> http://twitter.com/skovatch/status/50611355920777217
> 
> ms
> 
> On Mar 23, 2011, at 1:34 PM, David Holt wrote:
> 
>> Hugi tweeted this this morning and it seems to work for me. YMMV
>> 
>> http://www.inteist.com/2010/05/how-to-speed-up-eclipse-on-os-x-10-6-snow-leopard/
>> 
>> David ___
>> 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/hugi%40karlmenn.is
> 
> This email sent to h...@karlmenn.is

 ___
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: Modelling boolean in D2W compliant way

2011-03-23 Thread Markus Ruggiero
Just to let you know what I ended up with:

I created my own EditYNBoolean and QueryYNBoolean property level component.

Using a custom read/write format on the attribute worked almost... The format 
is also being used in the where-clause against the database when the "use for 
locking" flag is set in the EOModel on that particular attribute. And in that 
case Oracle throws up. Oh well. 

Anyway my problem is solved and I am busy finding more things to do that I am 
going to ask here :-)))

Have a nice day
---markus---

On 19.03.2011, at 15:23, Ramsey Gurley wrote:

> I think either you could use an attribute read/write format
> 
> http://developer.apple.com/legacy/mac/library/#documentation/WebObjects/UsingEOModeler/4WorkingWithAttributes/WorkingWithAttributes.html%23//apple_ref/doc/uid/TP30001018-CH204-BABCHIIF
> 
> Or you could model a custom boolean prototype using ERAttributeExtension.
> 
> Ramsey
> 
> On Mar 19, 2011, at 5:44 AM, Markus Ruggiero wrote:
> 
>> 
>> On 16.03.2011, at 14:53, Markus Ruggiero wrote:
>> 
>>> I have a (Oracle) table where boolean attributes are defined as char(1) 
>>> with possible values "Y", "N", or NULL (is equivalent to "N"). Due to 3rd 
>>> party apps I cannot change the database to char(5) and use the standard 
>>> modelling technique of toString() and valueOf() with Strings "true" and 
>>> "false" in the DB. How can I model such an attribute  in a D2W compliant 
>>> way? I have tried the following: rename the attribute in EOModel to 
>>> "publishedYN" but leave the column name "published" and added published() 
>>> and setPublished() to the business logic. This works and I can e.g. use 
>>> ERD2WCustomeQueryBoolean in my query page configuration. However when I 
>>> click query I get the following exception:
>>> 
>>> java.lang.IllegalStateException: sqlStringForKeyValueQualifier: attempt to 
>>> generate SQL for com.webobjects.eocontrol.EOKeyValueQualifier (publish = 
>>> (java.lang.Boolean)'false') failed because attribute identified by key 
>>> 'publish' was not reachable from from entity 'TechdocType'
>>> 
>>> Yes, there is no such attribute and thus the crash makes sense. How can I 
>>> fix this? Any ideas? Unfortunately it is not possible to extend 
>>> java.lang.Boolean
>>> 
>> 
>> Nobody? Really? Someone must have had the same or a similar issue! How did 
>> you solve this?
>> 
>> Oh well, I seem to have found the ultimate not-yet-solved-issue(TM)
>> 
>> Fun to you and have a great weekend
>> ---markus---
>> 
>> ___
>> 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/ramseygurley%40gmail.com
>> 
>> This email sent to ramseygur...@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: possible speed up for Eclipse on Snow Leopard?

2011-03-23 Thread Tim Worman
My eclipse.ini file does not even have "-Dosgi.requiredJavaVersion=1.5" to 
begin with.

Tim Worman
UCLA GSE&IS


On Mar 23, 2011, at 11:19 AM, Hugi Thordarson wrote:

> Weird - I'm running a relatively clean installation of 3.6.1 (64bit Cocoa). 
> The parameter was in the original eclipse.ini and once changed, made a world 
> of difference, as in 
> "from-molasses-slow-to-rather-fast-definitely-not-a-placebo-effect"-difference.
> 
> I did quite a little googling trying to find out how and why this works, but 
> without success. If you find out more, I'd be interested to hear about it.
> 
> Cheers,
> - hugi
> 
> 
> 
> On 23.3.2011, at 17:36, Mike Schrag wrote:
> 
>> @see my conversation with Scott Kovatch ... ends with 
>> http://twitter.com/skovatch/status/50611355920777217
>> 
>> ms
>> 
>> On Mar 23, 2011, at 1:34 PM, David Holt wrote:
>> 
>>> Hugi tweeted this this morning and it seems to work for me. YMMV
>>> 
>>> http://www.inteist.com/2010/05/how-to-speed-up-eclipse-on-os-x-10-6-snow-leopard/
>>> 
>>> David ___
>>> 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/hugi%40karlmenn.is
>> 
>> This email sent to h...@karlmenn.is
> 
> ___
> 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: possible speed up for Eclipse on Snow Leopard?

2011-03-23 Thread Ramsey Gurley
Neither does mine and I didn't notice a significant change by adding it.  Maybe 
it is 1.6 already?

Ramsey

On Mar 23, 2011, at 12:52 PM, Tim Worman wrote:

> My eclipse.ini file does not even have "-Dosgi.requiredJavaVersion=1.5" to 
> begin with.
> 
> Tim Worman
> UCLA GSE&IS
> 
> 
> On Mar 23, 2011, at 11:19 AM, Hugi Thordarson wrote:
> 
>> Weird - I'm running a relatively clean installation of 3.6.1 (64bit Cocoa). 
>> The parameter was in the original eclipse.ini and once changed, made a world 
>> of difference, as in 
>> "from-molasses-slow-to-rather-fast-definitely-not-a-placebo-effect"-difference.
>> 
>> I did quite a little googling trying to find out how and why this works, but 
>> without success. If you find out more, I'd be interested to hear about it.
>> 
>> Cheers,
>> - hugi
>> 
>> 
>> 
>> On 23.3.2011, at 17:36, Mike Schrag wrote:
>> 
>>> @see my conversation with Scott Kovatch ... ends with 
>>> http://twitter.com/skovatch/status/50611355920777217
>>> 
>>> ms
>>> 
>>> On Mar 23, 2011, at 1:34 PM, David Holt wrote:
>>> 
 Hugi tweeted this this morning and it seems to work for me. YMMV
 
 http://www.inteist.com/2010/05/how-to-speed-up-eclipse-on-os-x-10-6-snow-leopard/
 
 David ___
 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/hugi%40karlmenn.is
>>> 
>>> This email sent to h...@karlmenn.is
>> 
>> ___
>> 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/rgurley%40smarthealth.com
> 
> This email sent to rgur...@smarthealth.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


Mimicking the J2EE filter chain

2011-03-23 Thread Michael Gargano
Hi all,

I'm using the Shiro security framework for the project I'm 
working on.  In the framework, the subject (basically the user) is bound to the 
thread and unbound through the J2EE filter chain.  My plan was to just shove 
this subject object into the Session, but the authors of the framework really 
suggest binding and unbinding this object to the request thread .  The problem 
is... I have no idea how that would be done in WO.  Would I have to override 
createRequest in Application?   I was thinking something like...

createRequest(params...) {

Subject.execute(new Callable() {
public Object call() throws Exception {
super.createRequest(params...);
}
}
}

Any other suggestions?  I'm not sure something like this would even work.

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: Mimicking the J2EE filter chain

2011-03-23 Thread John Huss
See ERXThreadStorage

On Wed, Mar 23, 2011 at 4:22 PM, Michael Gargano wrote:

> Hi all,
>
>
>
> I’m using the Shiro security framework for the project I’m
> working on.  In the framework, the subject (basically the user) is bound to
> the thread and unbound through the J2EE filter chain.  My plan was to just
> shove this subject object into the Session, but the authors of the framework
> really suggest binding and unbinding this object to the request thread .
> The problem is… I have no idea how that would be done in WO.  Would I have
> to override createRequest in Application?   I was thinking something like…
>
>
>
> createRequest(params…) {
>
>
>
> Subject.execute(new Callable() {
>
> public Object call() throws Exception {
>
>
> super.createRequest(params…);
>
> }
>
> }
>
> }
>
>
>
> Any other suggestions?  I’m not sure something like this would even work.
>
>
>
> 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/johnthuss%40gmail.com
>
> This email sent to johnth...@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: Mimicking the J2EE filter chain

2011-03-23 Thread Chuck Hill
Look at ERXThreadStorage in Wonder.  You can set the user in awake() and clear 
in sleep() in Session.


Chuck



On Mar 23, 2011, at 2:22 PM, Michael Gargano wrote:

> Hi all,
>  
> I’m using the Shiro security framework for the project I’m 
> working on.  In the framework, the subject (basically the user) is bound to 
> the thread and unbound through the J2EE filter chain.  My plan was to just 
> shove this subject object into the Session, but the authors of the framework 
> really suggest binding and unbinding this object to the request thread .  The 
> problem is… I have no idea how that would be done in WO.  Would I have to 
> override createRequest in Application?   I was thinking something like…
>  
> createRequest(params…) {
>  
> Subject.execute(new Callable() {
> public Object call() throws Exception {
> super.createRequest(params…);
> }
> }
> }
>  
> Any other suggestions?  I’m not sure something like this would even work.
>  
> 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

Urgent help required

2011-03-23 Thread vaibhav srivastava
Hello community ,

I have array of values need to be write in csv

array {(x0,y0,z0),(x1,y1,z1),(x2,y2,z2)}

then I have column header as (a,b,c)

now format, which I want my array to be written in csv is

a x0 y0 z0
b x1 y1 z1
c x2 y2 z2



Can anybody help me out with the logic to write in the csv in this format.


Regards
Vaibhav
 ___
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: Urgent help required

2011-03-23 Thread Mark Ritchie
Sounds like a homework assignment to me! ;-)
M.

On 23/Mar/2011, at 3:32 PM, vaibhav srivastava wrote:

> Hello community ,
> 
> I have array of values need to be write in csv 
> 
> array {(x0,y0,z0),(x1,y1,z1),(x2,y2,z2)}
> 
> then I have column header as (a,b,c)
> 
> now format, which I want my array to be written in csv is 
> 
> a x0 y0 z0
> b x1 y1 z1
> c x2 y2 z2 
> 
> 
> 
> Can anybody help me out with the logic to write in the csv in this format.
> 
> 
> Regards
> Vaibhav
> ___
> 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/mark.ritchie%40mac.com
> 
> This email sent to mark.ritc...@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: Urgent help required

2011-03-23 Thread Andrew Lindesay

Hello Vaibhav;

You could do it with a StringBuffer fairly simply -- just create a 
StringBuffer and use the ".append()" method to add the commas and values.


cheers.

On 24/03/11 11:32 AM, vaibhav srivastava wrote:

Hello community ,

I have array of values need to be write in csv

array {(x0,y0,z0),(x1,y1,z1),(x2,y2,z2)}

then I have column header as (a,b,c)

now format, which I want my array to be written in csv is

a x0 y0 z0
b x1 y1 z1
c x2 y2 z2

Can anybody help me out with the logic to write in the csv in this format.


--
Andrew Lindesay
www.silvereye.co.nz
___
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: Urgent help required

2011-03-23 Thread Travis Britt
http://opencsv.sourceforge.net/ if you want to get fancy or need to escape 
values and whatnot.

On Mar 23, 2011, at 6:32 PM, vaibhav srivastava wrote:
> Hello community ,
> 
> I have array of values need to be write in csv 
> 
> array {(x0,y0,z0),(x1,y1,z1),(x2,y2,z2)}
> 
> then I have column header as (a,b,c)
> 
> now format, which I want my array to be written in csv is 
> 
> a x0 y0 z0
> b x1 y1 z1
> c x2 y2 z2 

 ___
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: Urgent help required

2011-03-23 Thread vaibhav srivastava
That too , I Know 
Complexity lies in writing column headers as row and values starting from
same column .




On Wed, Mar 23, 2011 at 3:45 PM, Andrew Lindesay  wrote:

> Hello Vaibhav;
>
> You could do it with a StringBuffer fairly simply -- just create a
> StringBuffer and use the ".append()" method to add the commas and values.
>
> cheers.
>
>
> On 24/03/11 11:32 AM, vaibhav srivastava wrote:
>
>> Hello community ,
>>
>> I have array of values need to be write in csv
>>
>> array {(x0,y0,z0),(x1,y1,z1),(x2,y2,z2)}
>>
>> then I have column header as (a,b,c)
>>
>> now format, which I want my array to be written in csv is
>>
>> a x0 y0 z0
>> b x1 y1 z1
>> c x2 y2 z2
>>
>> Can anybody help me out with the logic to write in the csv in this format.
>>
>
> --
> Andrew Lindesay
> www.silvereye.co.nz
>
> ___
> 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/coolvibh.5951%40gmail.com
>
> This email sent to coolvibh.5...@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

D2W ERModernLook - login welcome page

2011-03-23 Thread Matthias Jakob
Hi list,
I've a small problem with ERModernLook and defaultPage.

I try to show a Welcome page after a  successfully login. But I don't know 
exactly how i can do that.
I've tryed to overwrite the defaultpage with no success  ;-(

I simply need my own small page width an localized welcome message ... thats 
all ... so how i can do that ... ?

Thank you all,
Matthias




 ___
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: D2W ERModernLook - login welcome page

2011-03-23 Thread David LeBer

On 2011-03-23, at 7:25 PM, Matthias Jakob wrote:

> Hi list,
> I've a small problem with ERModernLook and defaultPage.
> 
> I try to show a Welcome page after a  successfully login. But I don't know 
> exactly how i can do that.
> I've tryed to overwrite the defaultpage with no success  ;-(
> 
> I simply need my own small page width an localized welcome message ... thats 
> all ... so how i can do that ... ?

Change the loginAction in DirectAction to return your page upon successful 
login?

;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/archive%40mail-archive.com

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


Re: D2W ERModernLook - login welcome page

2011-03-23 Thread Matthias Jakob
Hi David,
1 thank you for ERModernLook ;-) !

Yes i ve done that but i don't know how to integrate header etc. so that it's 
an embedded page ... and also the right selected navigation -> home


Matthias



Am 24.03.2011 um 00:34 schrieb David LeBer:

> 
> On 2011-03-23, at 7:25 PM, Matthias Jakob wrote:
> 
>> Hi list,
>> I've a small problem with ERModernLook and defaultPage.
>> 
>> I try to show a Welcome page after a  successfully login. But I don't know 
>> exactly how i can do that.
>> I've tryed to overwrite the defaultpage with no success  ;-(
>> 
>> I simply need my own small page width an localized welcome message ... thats 
>> all ... so how i can do that ... ?
> 
> Change the loginAction in DirectAction to return your page upon successful 
> login?
> 
> ;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/archive%40mail-archive.com

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


Re: [Wonder-disc] D2W ERModernLook - login welcome page

2011-03-23 Thread David Holt
Hi Matthias,

I don't have time to expand on this previous message below, but for your 
welcome page you'll want to use a named pageConfiguration with the rules like 
David LeBer outlines in this message from last year. If you're still having 
issues let me/us know and I'll help you more tomorrow.

Replace "Foo" with "Welcome" and I think  you should be most of the way there 
:-)

David


> I want to create content (WOComponent) inside of the PageWrapper. The
> PageWrapper requires a bodyClass, d2wContext, etc. My WOComponent is
> not extending D2W, so I was wondering what was the informed opinion on
> how to do this correctly.

The current implementation of ERModernMoviesDemo (and the ERModern D2W 
Template) assumes that you are going to have a valid D2WContext for every page 
in the app. Yeah, I know, shoot me.

Given that a D2WContext really needs three things to display a page:

1. An Entity.
2. A task
3. The template for the task.

We can set up some rules to fudge this. Assuming we have a page named 
'MyFooPage.wo' that inherits from D2WPage (we won't use any of D2WPage's 
features, just it's D2WContext), and we want a Tab named "Foo" to trigger it.

1. Add Foo to the NavigationMenu.plist:
{ name = "Foo"; action = "session.navController.goToFooPage"; },

2. Add a goToFooPage method in the navigation controller:

   public WOComponent goToFooPage() {
return D2W.factory().pageForConfigurationNamed("DoThatFooThatYouDo", 
session());
   }

3. Add Foo to Localizable.strings

"Nav.Foo" = "Foo";

4. Add the rules to fudge this page:

100: pageConfiguration = 'DoThatFooThatYouDo' => entity = 
"AValidEntityFromYourModel" [EntityAssignment]*
100: pageConfiguration = 'DoThatFooThatYouDo' => task = "inspect" 
[Assignment]
100: pageConfiguration = 'DoThatFooThatYouDo' => 
templateNameForInspectPage = "MyFooPage" [Assignment]

5. Set the navigation state:

100: pageConfiguration = 'DoThatFooThatYouDo' => navigationState = 
"Foo" [Assignment]


* AValidEntityFromYourModel does not have to be an Entity you are going to use 
on your page, we just need it to make the D2WContext happy.

The css class of the body tag on your page will be "DoThatFooThatYouDoBody"






On 2011-03-23, at 4:59 PM, Matthias Jakob wrote:

> Hi David,
> 1 thank you for ERModernLook ;-) !
> 
> Yes i ve done that but i don't know how to integrate header etc. so that it's 
> an embedded page ... and also the right selected navigation -> home
> 
> 
> Matthias
> 
> 
> 
> Am 24.03.2011 um 00:34 schrieb David LeBer:
> 
>> 
>> On 2011-03-23, at 7:25 PM, Matthias Jakob wrote:
>> 
>>> Hi list,
>>> I've a small problem with ERModernLook and defaultPage.
>>> 
>>> I try to show a Welcome page after a  successfully login. But I don't know 
>>> exactly how i can do that.
>>> I've tryed to overwrite the defaultpage with no success  ;-(
>>> 
>>> I simply need my own small page width an localized welcome message ... 
>>> thats all ... so how i can do that ... ?
>> 
>> Change the loginAction in DirectAction to return your page upon successful 
>> login?
>> 
>> ;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
>> 
>> 
>> 
>> 
>> 
> 
> 
> --
> Enable your software for Intel(R) Active Management Technology to meet the
> growing manageability and security demands of your customers. Businesses
> are taking advantage of Intel(R) vPro (TM) technology - will your software 
> be a part of the solution? Download the Intel(R) Manageability Checker 
> today! http://p.sf.net/sfu/intel-dev2devmar
> ___
> Wonder-disc mailing list
> wonder-d...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wonder-disc

 ___
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: possible speed up for Eclipse on Snow Leopard?

2011-03-23 Thread Tim Worman
Same here - I'm thinking that's possible. Trying to remember back but I think I 
installed the 64-bit Cocoa. Maybe that was already set to use 1.6.

Tim Worman
UCLA GSE&IS


On Mar 23, 2011, at 2:18 PM, Ramsey Gurley wrote:

> Neither does mine and I didn't notice a significant change by adding it.  
> Maybe it is 1.6 already?
> 
> Ramsey
> 
> On Mar 23, 2011, at 12:52 PM, Tim Worman wrote:
> 
>> My eclipse.ini file does not even have "-Dosgi.requiredJavaVersion=1.5" to 
>> begin with.
>> 
>> Tim Worman
>> UCLA GSE&IS
>> 
>> 
>> On Mar 23, 2011, at 11:19 AM, Hugi Thordarson wrote:
>> 
>>> Weird - I'm running a relatively clean installation of 3.6.1 (64bit Cocoa). 
>>> The parameter was in the original eclipse.ini and once changed, made a 
>>> world of difference, as in 
>>> "from-molasses-slow-to-rather-fast-definitely-not-a-placebo-effect"-difference.
>>> 
>>> I did quite a little googling trying to find out how and why this works, 
>>> but without success. If you find out more, I'd be interested to hear about 
>>> it.
>>> 
>>> Cheers,
>>> - hugi
>>> 
>>> 
>>> 
>>> On 23.3.2011, at 17:36, Mike Schrag wrote:
>>> 
 @see my conversation with Scott Kovatch ... ends with 
 http://twitter.com/skovatch/status/50611355920777217
 
 ms
 
 On Mar 23, 2011, at 1:34 PM, David Holt wrote:
 
> Hugi tweeted this this morning and it seems to work for me. YMMV
> 
> http://www.inteist.com/2010/05/how-to-speed-up-eclipse-on-os-x-10-6-snow-leopard/
> 
> David ___
> 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/hugi%40karlmenn.is
 
 This email sent to h...@karlmenn.is
>>> 
>>> ___
>>> 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/rgurley%40smarthealth.com
>> 
>> This email sent to rgur...@smarthealth.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: possible speed up for Eclipse on Snow Leopard?

2011-03-23 Thread Mike Schrag
I'm pretty sure Snow Leopard ONLY has 1.6 (unless you've manually installed 
1.5). The "1.5" on Snow Leopard is just a symlink to 1.6. I think this setting 
is just bogus.

ms

On Mar 23, 2011, at 9:36 PM, Tim Worman wrote:

> Same here - I'm thinking that's possible. Trying to remember back but I think 
> I installed the 64-bit Cocoa. Maybe that was already set to use 1.6.
> 
> Tim Worman
> UCLA GSE&IS
> 
> 
> On Mar 23, 2011, at 2:18 PM, Ramsey Gurley wrote:
> 
>> Neither does mine and I didn't notice a significant change by adding it.  
>> Maybe it is 1.6 already?
>> 
>> Ramsey
>> 
>> On Mar 23, 2011, at 12:52 PM, Tim Worman wrote:
>> 
>>> My eclipse.ini file does not even have "-Dosgi.requiredJavaVersion=1.5" to 
>>> begin with.
>>> 
>>> Tim Worman
>>> UCLA GSE&IS
>>> 
>>> 
>>> On Mar 23, 2011, at 11:19 AM, Hugi Thordarson wrote:
>>> 
 Weird - I'm running a relatively clean installation of 3.6.1 (64bit 
 Cocoa). The parameter was in the original eclipse.ini and once changed, 
 made a world of difference, as in 
 "from-molasses-slow-to-rather-fast-definitely-not-a-placebo-effect"-difference.
 
 I did quite a little googling trying to find out how and why this works, 
 but without success. If you find out more, I'd be interested to hear about 
 it.
 
 Cheers,
 - hugi
 
 
 
 On 23.3.2011, at 17:36, Mike Schrag wrote:
 
> @see my conversation with Scott Kovatch ... ends with 
> http://twitter.com/skovatch/status/50611355920777217
> 
> ms
> 
> On Mar 23, 2011, at 1:34 PM, David Holt wrote:
> 
>> Hugi tweeted this this morning and it seems to work for me. YMMV
>> 
>> http://www.inteist.com/2010/05/how-to-speed-up-eclipse-on-os-x-10-6-snow-leopard/
>> 
>> David ___
>> 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/hugi%40karlmenn.is
> 
> This email sent to h...@karlmenn.is
 
 ___
 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/rgurley%40smarthealth.com
>>> 
>>> This email sent to rgur...@smarthealth.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/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/archive%40mail-archive.com

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


well, that explains the missing Chocolate

2011-03-23 Thread Joe Little
Story about Motorola's new WebOS-like solution to be used instead of
Android in some cases has various Apple and Adobe veterans at the
helm.

http://www.appleinsider.com/articles/11/03/23/motorola_hedging_android_bet_with_new_web_based_os.html

Well, one of the guys pointed out there is "Benoit Marchant,
identified a former manager of JavaScript development at Apple"...
hmm..
 ___
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