Re: Un-install procedure for WO

2005-10-11 Thread David LeBer
to uninstall WO 5.2.4. It was suggested I would find it in the Receipts directory but I couldn't see anything appropriate. Any clues? Cheers Pete You don't have a /Applications/Utilities/WO52Uninstall.app? As far as I know that *should* work for WO5.2.4. -- ;david -- David LeBer I am

Re: Set String methods for Flattened Relationship Attributes

2005-10-20 Thread David LeBer
On 20-Oct-05, at 11:59 AM, Janice Cheung wrote: Hi David! Thanks for your input. I really appreciate your advice! David LeBer wrote: My head hurts. I wrote out a great long-winded email about flattened attributes and relationships an setter and getter method names. But I think

Re: Implementing google like search

2005-11-08 Thread David LeBer
Full-Text Search. -- ;david -- David LeBer I am codeferous! Codeferous Software site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME cryptographic signature ___ Do not post admin requests to the list

Re: conditional link

2005-11-14 Thread David LeBer
, ec.revert(), blah setEditFlag(false); return this.context().page(); } I also make great use of Paul Suh's SwitchableStrings http:// www.goodeast.com/ -- ;david -- David LeBer I am codeferous! Codeferous Software site: http://www.codeferous.com blog: http://david.codeferous.com

Re: EOGenerator

2005-11-15 Thread David LeBer
in Xcode. Have you tried running EOGenerator from the command line to see if it gives you any errors? Time to move to Eclipse now :-) -- ;david -- David LeBer I am codeferous! Codeferous Software site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME

Re: WebObjects 5.3.1 Redirect bug?

2005-11-16 Thread David LeBer
;, ) on the url before I hand it off to the WORedirect. Yuck. -- ;david -- David LeBer I am codeferous! Codeferous Software site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME cryptographic signature ___ Do

Re: EOModeler 5.3 (Xcode2.2) many-to-many SQL generation bug

2005-11-16 Thread David LeBer
/C1837526061/E1908382110/ index.html -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME cryptographic signature

Re: EOModeler 5.3 (Xcode2.2) many-to-many SQL generation bug

2005-11-16 Thread David LeBer
and that worked too. For generating the join table, this is what EOModeler would generate: CREATE TABLE r_join (c_id INT NOT NULL, c_id1 INT NOT NULL); ALTER TABLE r_join ADD PRIMARY KEY (c_id, c_id1); Alternately you could use something like CocoaMySQL. -- ;david -- David LeBer Codeferous

Re: Newbie question - Return Date from Calendar

2005-11-22 Thread David LeBer
app? I usually try and avoid this kind of UI if I can help it. So I don't have any pointers. -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME

Re: newbie q: multiple fields insertion?

2005-11-24 Thread David LeBer
, you can look at other options but things get a little more complex (creating new ECs to allow for user discards, or using dummy value dictionaries). Let me know if that makes sense. -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http

Re: WODisplayGroup advice needed

2005-11-24 Thread David LeBer
displayGroup.allObjects. Even if I stash 'em in an instance variable when the page is first displayed. Could just be there's something simple and obvious I'm overlooking. Sure hope so :-) HTH -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http

Re: WODisplayGroup advice needed

2005-11-24 Thread David LeBer
On 24-Nov-05, at 12:43 PM, Rick Innis wrote: On Nov 24, 2005, at 12:19, David LeBer wrote: Because you are using a WORepetion you really don't need to worry about he WODisplayGroup at all at this point. You should already have a reference to the Object you need. Assuming the 'item

Re: more popup fun

2005-11-28 Thread David LeBer
. What type is testTypeEnumerator, and what type is the testType attribute of the Test entity? -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME

Re: How to install JavaMail

2005-12-08 Thread David LeBer
, but no - there is no error on that (t.i. on import javax.mail.*). I simply can't create new session for JavaMail. What could be done wrong? Both JavaMail and WO have a Session object. Be explicit with which one you want. -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing

Re: Accessing a string from a display group.

2006-01-12 Thread David LeBer
it to yourDisplayGroupName.allObjects.count it should give you the count of all of your objects. -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME

Re: PostgreSQL and Wonder

2006-01-23 Thread David LeBer
://www.mdimension.com/~wonder/ (Thank you Mike!) And yes Wonder is being used. I don't use Postgres but others do, so you might have better luck with the Project Wonder list: https://lists.sourceforge.net/lists/listinfo/wonder-disc -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj

Re: Frontbase Synchronize Schema in EOModeler

2006-02-07 Thread David LeBer
scratch. I'm using WebObjects 5.3 and FrontBase 4.0. Synchronize schema has *never* worked for me. On any database. Every. I don't even try anymore. sniff! -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog

Re: EOGenerator Inheritance

2006-02-10 Thread David LeBer
$$classNameWithoutPackage$ extends $if hasParentEntity$$javaParentClassName$$else $EOGenericRecord$endif$ -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME cryptographic

Re: Number

2006-02-21 Thread David LeBer
; i ++; Works fine in WO and in Java. Your problem is that you are working with and Object (Number) not a primitive (int). Integer myNumber; (assume exists). int i = myNumber.intValue(); i ++; myNumber = new Integer(i); hth, -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj

Re: How to focus on a text field on loading?

2006-03-06 Thread David LeBer
On 6-Mar-06, at 9:09 PM, Jim Wong wrote: How do i have the cursor focus on a particular text field upon loading the page? That's a Javascript question Jim. I suggest you google for: javascript onLoad focus You should be able to find all the answers you need. -- ;david -- David LeBer

Re: Thanks and Comments

2006-03-22 Thread David LeBer
. Xcode == Targets == Evil. I, like Chuck, also prefer Eclipse, though I might not wish it on a complete beginner unless I was around to mentor. -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http

Re: Thanks and Comments

2006-03-23 Thread David LeBer
tools and gain a massive increase in coding productivity (without the joys of Targets and Indexes :-). -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S

Re: EOGenerator/EOModeler Question

2006-04-10 Thread David LeBer
in the class. Is it supposed to? I haven't used the default EOGenerator templates in a long time (they're a little too anemic for my tastes), but make sure that the templates you are using has this line before the imports: $foreach package classPackage do$package $package$; -- ;david -- David

Re: OT: Is used WO 5.3.1 in production (deployment)?

2006-04-23 Thread David LeBer
-- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME cryptographic signature ___ Do not post admin requests

Re: WO Ajax

2006-04-24 Thread David LeBer
the AjaxSlider that roundtrips values to the server on a slider change for a demo at the last tacow meeting and it was a lot of fun to do. -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http

Re: Bug in WOContext.directActionURLForActionNamed() when using query dictionary

2006-04-26 Thread David LeBer
On 26-Apr-06, at 8:32 PM, Mike Schrag wrote: David LeBer, Nov 15 2005 says a quick Mail search ... This teeters on a religious debate I believe :) It comes down to how you are using the result of that method. If you use it inside of an a href = .. then it's SUPPOSED to be escaped

Re: What is the best way and where to create my array...

2006-05-03 Thread David LeBer
DisplayGroups. thanks James James, I've used the lazy init pattern quite successfully with DisplayGroups. Take a look at these two articles and let me know if they answer your questions: http://david.codeferous.com/index.php?s=displaygroupsubmit=Search -- ;david -- David LeBer Codeferous

Re: What is the best way and where to create my array...

2006-05-03 Thread David LeBer
for the DisplayGroup in the components .woo? That may be conflicting with your attempts to set the objectArray manually. - James On May 3, 2006, at 10:23 AM, David LeBer wrote: On 3-May-06, at 11:12 AM, James Cicenia wrote: Ok -- I have tried Awake, however, since I am using a display group

Re: Want to iterate over items in EditingContext for validation before save

2006-05-03 Thread David LeBer
://lists.apple.com/mailman/options/webobjects-dev/dleber% 40codeferous.com This email sent to [EMAIL PROTECTED] -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S

Re: Creating helper classes for code pages

2006-05-04 Thread David LeBer
to Web, which does all of this grunt work for you :-) -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME cryptographic signature

Re: WWDC Sessions

2006-05-08 Thread David LeBer
perhaps? WebObjects Deployment on Mac OS X Server -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME cryptographic signature

Re: Class Generation in Xcode 2.2.1 using Modeler plugin

2006-05-10 Thread David LeBer
with eogenerator is the way to go. -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME cryptographic signature ___ Do

Re: Foreign Key Constraints

2006-05-10 Thread David LeBer
to torment those who had not learned better. :-) -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME cryptographic signature

Re: Is it possible to get a WebObjects demo?

2006-05-16 Thread David LeBer
(Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/webobjects-dev/dleber% 40codeferous.com This email sent to [EMAIL PROTECTED] -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site

Re: AJAX WebObjects Integration

2006-05-18 Thread David LeBer
is available on WOCode.com. http://wocode.com/cgi-bin/WebObjects/WOCode.woa/1/wa/ShareCodeItem? itemId=450 I posted a small demo app that I used to demo the Ajax.Framework at the last tacow meeting. http://www.tacow.org/?p=20 -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing

Re: Problems with WOAction in WO 5.3.1

2006-05-26 Thread David LeBer
; directActionName = refreshReminder; queryDictionary = refreshQueryDictionary; } public NSDictionary getRefreshQueryDictionary(){ return new NSDictionary(getReminderIterator().getId(), id); } -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing

Re: Problem with webobject attributes in WOBuilder

2006-06-02 Thread David LeBer
those components as being fragile, and only edit them in source view or using an alternate (text) editor. This is using WOBuilder Version 5.3.1 (680) on OS/X. This is nothing new. -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http

Re: State of WebObjects

2006-06-28 Thread David LeBer
, and I'm glad to see a new well designed framework on the field. But it is still very young and has a long way to go before it equals the richness of WO. -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http

Re: State of WebObjects

2006-06-28 Thread David LeBer
On 28-Jun-06, at 5:08 PM, Miguel Arroz wrote: Hi! On 2006/06/28, at 21:31, David LeBer wrote: 2. Shrinking list of development options What do you mean? Sorry, sloppy composition, my bad. I'm typing without the use of my right hand right now (separated shoulder due to a bicycle

Re: WWDC WO Meet

2006-07-05 Thread David LeBer
sure would be interested. Though you should be warned, not all of us are house broken. -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME

Re: WWDC WO Meet

2006-07-05 Thread David LeBer
-- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com smime.p7s Description: S/MIME cryptographic signature ___ Do not post admin requests to the list

Re: WWDC WO Meet

2006-07-05 Thread David LeBer
). True, but many of us do not solely develop in WO. Wednesday would be my first choice followed by Monday - if I remember correctly, the opening party doesn't last that long. -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http

Re: WWDC WO Meet

2006-07-07 Thread David LeBer
/ poweredbywebobjects_lrg.jpg http://fadis.library.utoronto.ca/PoweredByWebObjects.gif ms Chuck Hill suggested branding the ProjectWONDER Ajax framework WOJax - Who loves ya Baby! with the logo being a 3D EO on a lollypop stick... Just a thought. :-) -- ;david -- David LeBer Codeferous Software 'co-defer

Re: WWDC WO Meet

2006-07-11 Thread David LeBer
for currently about 40+ people (estimated, not counted ... ;-))? cug -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects developers group: http://www.tacow.org

Re: WWDC WO Meet

2006-07-13 Thread David LeBer
. I, for one, am already booked on the Sunday night (if that is what you were asking). -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects developers

Re: Direct Action vs. Component Action...

2006-07-27 Thread David LeBer
, a Session is an easy way to do that and for most applications that's where it ends. -- ;david -- David LeBer Codeferous Software 'co-defer-ous' adj. producing or containing code site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects developers group

Re: Event update ; notice

2006-08-03 Thread David LeBer
On 3-Aug-06, at 5:04 PM, Jerry W. Walker wrote:Hi, David,tacow = Toronto Area Cocoa Objects Web?Perhaps it should have been tawoc!  :-)Toronto Area Cocoa / WebObjectsPoetic license and all that. - pronounces 'taco' (we're open to logo ideas :-) --;david--David LeBerCodeferous

Re: WWDC WO Meetup

2006-08-05 Thread David LeBer
at 93 attendees. If I understand correctly, that means there are 7 slots before we hit the cutoff of 100. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects

Re: A change I noticed in Xcode 2.4

2006-08-08 Thread David LeBer
is clear at this point. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects developers group: http://www.tacow.org smime.p7s Description: S/MIME

Re: [Off Topic ] WWDC Eclipse help ?

2006-08-09 Thread David LeBer
for tomorrow's session. Can I just say that on a 1.2ghz g4, 1GB ram, it kinda blows? :) Definitely good for selling new mac laptops. At least Eclipse 3.2 is universal.. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog

Re: How about a WWWODC?

2006-08-09 Thread David LeBer
. Maybe a mix of 50% presentation by the various WO folks and the rest in useful labs or collaborative bug fixing, or group development of tools? I am sure that we could fill a week up with useful and interesting sessions. Chuck -- ;david -- David LeBer Codeferous Software 'co-def-er

Re: General List Disclosure of WWDC WO info

2006-08-10 Thread David LeBer
sooner rather than later -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects developers group: http://www.tacow.org smime.p7s Description: S/MIME

Re: Marketing WO

2006-08-13 Thread David LeBer
Subscription: http://lists.apple.com/mailman/options/webobjects-dev/dleber% 40codeferous.com This email sent to [EMAIL PROTECTED] -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com

Project WONDER api now online (Was: Reusable translated button)

2006-08-23 Thread David LeBer
On 23-Aug-06, at 7:00 AM, Mike Schrag wrote: http://www.mdimension.com/~wonder/api http://www.mdimension.com/~wonder/Wonder-latest-Documentation.tar.gz ms Thanks Mike. This alone should help greatly reduce the 'trepidation' to PW adoption. :-) -- ;david -- David LeBer Codeferous

Re: Xcode 2.4 Deprecation Announcements

2006-08-25 Thread David LeBer
(In Eclipse/WOLips) - Text editor - Build your own editor -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects developers group: http://www.tacow.org

Re: Webobjects-dev Digest, Vol 3, Issue 603

2006-08-25 Thread David LeBer
-- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects developers group: http://www.tacow.org smime.p7s Description: S/MIME cryptographic signature

Re: Looks like ThinkSecret got some of the scoop on WO from WWDC'06

2006-08-26 Thread David LeBer
information, feel free to dismiss it if you wish. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects developers group: http://www.tacow.org smime.p7s

Re: EO/Java class default Values

2006-09-27 Thread David LeBer
=198 -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects developers group: http://www.tacow.org smime.p7s Description: S/MIME cryptographic signature

Re: EO/Java class default Values

2006-09-27 Thread David LeBer
://developer.apple.com/documentation/WebObjects/Reference/API/ com/webobjects/eocontrol/EOCustomObject.html#awakeFromInsertion (com.webobjects.eocontrol.EOEditingContext) -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com

Re: Saving WOCheckboxes in a Repetition into a database

2006-10-05 Thread David LeBer
on it? If so, that's never going to work (code optimization or not) and your going to want to look at reducing that number drastically (paging, searching, or filtering, or something). If I've misinterpreted, let me know. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally

Re: Saving WOCheckboxes in a Repetition into a database

2006-10-05 Thread David LeBer
: http://en.wikibooks.org/wiki/Programming:WebObjects/EOF/Using_EOF/ Memory_Management#Relationships_from_Enumerated_Types_to_other_EO.27s -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http

Re: WORepetition, checked attribute question

2006-10-25 Thread David LeBer
-- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects developers group: http://www.tacow.org smime.p7s Description: S/MIME cryptographic signature

Re: Loading images in WO application

2006-10-27 Thread David LeBer
not given us a lot to go on here. Can you outline specifically how you envision this work-flow working? -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects

Re: Flash/WebObjects

2006-11-10 Thread David LeBer
with XML containing all of the values necessary for the UI. 3. On submit from the Flash component it fired off another directAction request to the WO App with XML containing all of the changes. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site

Re: Flash/WebObjects

2006-11-14 Thread David LeBer
messages, each contained the SessionID as an attribute. However we could have just appended the SessionID to the DirectAction URL as a parameter and that would have worked as well (see the bottom of this post http://david.codeferous.com/?p=77). Hope that helps. -- ;david -- David LeBer

Re: Direct action question

2006-11-17 Thread David LeBer
); return dict; } .wod --- Hyperlink1: WOHyperlink { actionClass = DirectAction; directActionName = hyper; queryDictionary = hyperDictionary; } On Nov 17, 2006, at 9:48 AM, David LeBer wrote: Hyperlink1: WOHyperlink { name = david; actionClass

Re: How to check if a session is still valid?

2006-12-14 Thread David LeBer
-- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects developers group: http://www.tacow.org smime.p7s Description: S/MIME cryptographic signature

Re: WOBuilder in the future of WO?

2007-01-21 Thread David LeBer
new swanky digs Pierre! -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects developers group: http://www.tacow.org

Re: WOBuilder in the future of WO?

2007-01-22 Thread David LeBer
got to go, and maybe now would be a good time to drag that old app into the Project WOnder universe, and while I'm here I might as well gut the kitchen and put in a new bathroom... Before I know it I'm missed another episode of Heroes. -- ;david -- David LeBer Codeferous Software 'co-def

Re: WOBuilder in the future of WO?

2007-01-25 Thread David LeBer
. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects developers group: http://www.tacow.org ___ Do not post

Re: Can you add additional html attributes to WOTextField?

2007-02-26 Thread David LeBer
click and select add binding. Give the binding the name of the attribute: style and a value: margin-left:3px;, rinse, repeat. That should do it. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http

Re: nice error messages

2007-03-21 Thread David LeBer
On 21-Mar-07, at 11:32 AM, Jerry W. Walker wrote: Oh, WO is you! Aaargh! -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects developers group: http

Re: Session and Array Filtering Problem

2007-03-27 Thread David LeBer
a different NSArray of those same objects to be filtered as well?? Could we see some code? -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com -- Toronto Area Cocoa / WebObjects

Re: Object Store

2007-04-11 Thread David LeBer
-- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com profile: http://www.linkedin.com/in/davidleber -- Toronto Area Cocoa / WebObjects developers group: http://www.tacow.org smime.p7s Description: S/MIME

Re: Object Store

2007-04-11 Thread David LeBer
, and not really something I'd jump into on a whim. Be prepared to spend some serious quality time with it. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com profile: http://www.linkedin.com

Re: WOWODC/WWDC 07 Beer Bash?

2007-04-18 Thread David LeBer
of libations, can that really be considered aimless? 'Cause it actually sounds like a pretty well defined aim to me. Anyway, I'll be arriving in SF in time for some libation driven wandering, so count me in. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code

Re: Apple's Support of WebObjects

2007-05-04 Thread David LeBer
is wonky? The biggest complaint I've heard is that text selection (specifically triple clicking) doesn't work as expected for a Mac app. Though, personally, I could care less. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http

Re: WOHyperlink, Direct Action and session id

2007-05-22 Thread David LeBer
your Subscription: http://lists.apple.com/mailman/options/webobjects-dev/dleber% 40codeferous.com This email sent to [EMAIL PROTECTED] -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com

Re: [OT] JS/AJAX toolkits evaluation

2007-05-23 Thread David LeBer
-- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://www.codeferous.com blog: http://david.codeferous.com profile: http://www.linkedin.com/in/davidleber -- Toronto Area Cocoa / WebObjects developers group: http://www.tacow.org

Re: InsertObject

2007-05-30 Thread David LeBer
disposable action so your users can walk away without penalty and *always* insert your EOs right away. -- ;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

Re: Making a WO app look pretty

2007-06-04 Thread David LeBer
any sort of documentation on how this should be done. I'm still searching, but thought I would also ask for pointers here. What's the best practice for a simple app? Use CSS? -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http

Re: Visual QuickProject Guide

2007-06-06 Thread David LeBer
, it looks like that book fell off the planet. Too bad. But honestly if you want a copy, I'll sell you mine. Cover the shipping and it's yours. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://codeferous.com blog: http://davidleber.net profile

Re: Visual QuickProject Guide

2007-06-06 Thread David LeBer
online and they've got 3 copies. So it'd be worth a try. -- ;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 -- Toronto Area Cocoa / WebObjects

Re: WOHyperLink and form submit

2007-06-07 Thread David LeBer
item in my list dans submit the form after Check wocode wocode.com for HWOSubmitLink -- ;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 -- Toronto Area

Re: Type casting in WOComponents

2007-06-08 Thread David LeBer
that you have an Admin rather than a User, the easiest path to this would be to add a method to your component: or use Wonder's ERXInstanceOfConditional... Cheers, Anjo -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://codeferous.com blog

Re: [Wonder-disc] OT: Avoid automatic registration with Image Code

2007-06-08 Thread David LeBer
; -- ;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 -- Toronto Area Cocoa / WebObjects developers group: http://tacow.org

Re: URGENT!!! Downgrade WebObjects 5.3.* to 5.2.4 as well Java 1.5.* to 1.4.2_09

2007-06-08 Thread David LeBer
and August. It was 29˚C today and muggy, two nights ago it was 5˚C with a frost warning. -- ;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 -- Toronto Area

Getting Started With WO site

2007-06-14 Thread David LeBer
) is welcome and appreciated. -- ;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 -- Toronto Area Cocoa / WebObjects developers group: http://tacow.org

Re: Getting Started With WO site

2007-06-14 Thread David LeBer
that is with sites that compete with the other frameworks vying for this mind share (ie: Rails, Django, TurboGears, etc). -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://codeferous.com blog: http://davidleber.net profile: http

irc channel

2007-06-17 Thread David LeBer
Hello all, I just registered a WebObjects irc channel: #webo on irc.freenode.net. I figure all the cool kids are doing it... -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://codeferous.com blog: http://davidleber.net profile: http

Re: WOPopUpButton

2007-06-21 Thread David LeBer
.wod would look something like this: CourseDescPopup: WOPopupButton { list = allCourseDescription; item = courseDescriptionItem; displayString = courseDescription Item.name; selection = selectedCourseDescription; } -- ;david -- David LeBer Codeferous

Re: WOPopUpButton

2007-06-22 Thread David LeBer
On 22-Jun-07, at 8:56 AM, Ken Anderson wrote: I always type 2 spaces after a period. I thought everyone did! The Mac is not a typewriter: http://www.amazon.com/Mac-Not- Typewriter-Professional-Level-Macintosh/dp/0938151312 ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj

Re: EOCopyable Problems

2007-07-04 Thread David LeBer
On 4-Jul-07, at 12:40 PM, Chuck Hill wrote: Chuck Hill is best. Best what? I think you are leaving yourself open for abuse here. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://codeferous.com blog: http://davidleber.net profile

Re: Webobjects XCode

2007-07-04 Thread David LeBer
to be. -- ;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 -- Toronto Area Cocoa / WebObjects developers group: http://tacow.org

Re: WOBuilder Replacement

2007-07-04 Thread David LeBer
editor actually encourages you to write better components. 4. The look-ahead typing for bindings in the wod editor does pretty much all I need for entity/attribute/action discovery and it works for inline bindings as well. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj

Re: DirectAction: NSDictionary of the form values

2007-07-05 Thread David LeBer
return a single value. Calling valueForKey on the dictionary or formValuesForKey on the request will return an array. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://codeferous.com blog: http://davidleber.net profile: http

Re: WOBuilder Replacement

2007-07-06 Thread David LeBer
, and a generate missing bindings in java file tool, and a pony... but mostly the pony. -- ;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 -- Toronto

Re: WOBuilder Replacement

2007-07-06 Thread David LeBer
you rollover the gutter. Picture 2.png I should have known :-) -- ;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 -- Toronto Area Cocoa

Re: WOBuilder Replacement

2007-07-06 Thread David LeBer
On 6-Jul-07, at 3:22 PM, Mike Schrag wrote: Oh, and while I'm asking, a re-factor into subcomponent tool would be nice http://issues.objectstyle.org/jira/browse/WOL-459 Notice the Reporter. This WILL exist. And the pony? I specifically asked for a pony! -- ;david -- David LeBer

Re: WOLips Survey

2007-07-06 Thread David LeBer
-Survey.pdf Can be useful to collect all answers inside your organization before answering online. I just tried it, but only got the last two questions. Is it personal? It was the pony joke wasn't it? -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site

  1   2   3   4   5   6   7   8   9   >