Re: Wonder CVS

2005-10-12 Thread Anjo Krank
that with XCode and I don't want to know :) I'm using svn from the command line as it is simple enough (far easier than CVS). Cheers, Anjo Am 12.10.2005 um 16:45 schrieb Arturo Perez: Anjo Krank wrote: My personal recommendation is to use the CVS head and put it into your own version control

Re: WO and MySQL

2005-10-16 Thread Anjo Krank
I'd recommend Postgres. It's a pretty feature-complete DB with a lot of power, a good license and runs under a lot of systems. And Project Wonder even has a very good PlugIn for it! Oops. You say you were using Postgres and have problems. My, I wonder what they were? You know, it's kinda

Re: Escape character question

2005-10-24 Thread Anjo Krank
He doesn't. You see that he has a plain JDBCExpression in the stack trace. Am 24.10.2005 um 21:37 schrieb David Teran: are you using the Postgresql plugin from project wonder? If so, which version (preferable the current cvs version). regards, David Am 24.10.2005 um 21:00 schrieb Ismael

Re: XHTML generation

2005-11-02 Thread Anjo Krank
There is no turning on because the support is just not there. Use Project Wonder and the ERXPatcher or wait for the next release. Am 02.11.2005 um 20:12 schrieb Hunter Hillegas: Yes, the 5.3 release notes claim XHTML support. I have not been able to figure out how to turn it on. It still

Re: Saving a D2W Query component?

2006-01-09 Thread Anjo Krank
If you just have plain values (no EOs) to search for, you could take a look at the ERD2WQueryPage in Project Wonder. Copy over the stuff you need into your subclass of D2WQueryPage or use it directly. Am 07.01.2006 um 23:45 schrieb James Cicenia: Hello - What is the best approach to

Re: D2WQuery Component Frustration

2006-01-30 Thread Anjo Krank
As far as I know, you wouldn´t have access to the embedded D2WQuery's displayGoup from your wrapping component. This is because what you get is the dataSource and not the display group... why not simply do things like I told you to: take a look at ERD2WQueryPage and have your subclass do

Re: D2WQuery Component Frustration

2006-01-31 Thread Anjo Krank
 I have finally decided to go the Wonder route. So I got the latest binary and linked it in, etc..  I then subclassed ERD2WQueryPage for my own component and then dropped in a ERD2WQuery component into it.Without reading the docs, it seems...   public void setPropertyKey(String propertyKey) {     

Re: Setting display name for entity in DirectToWeb

2006-02-16 Thread Anjo Krank
Instead of putting this in the d2w rules, you're probably easier off to add this in the entity's userInfo in EOModeler. But anyway: the value will only get picked up if you use templates that use it. Project Wonder has some, but you could also just dump the ones in D2W and extend them.

Re: Most efficient character parsing.

2006-02-19 Thread Anjo Krank
Uh, why don't you pre-compile the regex, pre-initialize the array (next time probably with a loop?) and measure more iterations? After all, a 0 millisecond result would suggest that the time needed is not actually measurable, while times larger could come from - say - the class loader, the

Re: Most efficient character parsing.

2006-02-20 Thread Anjo Krank
Am 20.02.2006 um 16:58 schrieb Eric Stewart: On 2/20/06, Anjo Krank [EMAIL PROTECTED] wrote: Uh, why don't you pre-compile the regex, pre-initialize the array (next time probably with a loop?) and measure more iterations? After all, a 0 millisecond result would suggest that the time needed

Re: Detecting a deleted object

2006-02-21 Thread Anjo Krank
This is currently fixed in the CVS (and has been for about a year), it's now the javadocs that are wrong. We'll fix these as soon as we clear this up. Cheers, Anjo Am 20.02.2006 um 14:30 schrieb Kieran Kelleher: Actually, I spoke too soon too early in the morning! You can follow

Re: alert pop-up

2006-03-05 Thread Anjo Krank
Am 05.03.2006 um 08:54 schrieb Loren Cahlander: Performance! If you have 200+ rows and have to validate which actions (possibly many) to allow, then the performance of the page can be very slow. There are times when you have to weigh performance vs UI completeness. I don't really

Re: Expanding Import

2006-03-07 Thread Anjo Krank
Am 07.03.2006 um 23:20 schrieb Chuck Hill: And the big question. . . 3) How do I check the database for an Entity and relate an object to it when there are potentially a million other objects related to it? I think, in a round about way, you have identified the problem. I will

Re: Generating reports in excel?

2006-03-14 Thread Anjo Krank
The idea behind ExcelGenerator ist that you can use - hopefully - the same HTML that you output anyway for your reporting tasks. In particular, you should be able to re-use DynaReporter HTML and you also need only a minimal amount of work to use D2W. Sometimes, you might need to apply some

Re: Site management strategies with Subversion

2006-03-14 Thread Anjo Krank
Am 14.03.2006 um 23:37 schrieb [EMAIL PROTECTED]: My concern has been that doing svn merge -r 60 will pull in every change that has been committed to the entire repository in versions 43-60, *to all files*, and that's almost never what I want. I don't understand why the Subversion folks

Re: Google Maps WOComponent anyone?

2006-03-23 Thread Anjo Krank
Sounds interesting... Is there an API for that? Am 23.03.2006 um 20:06 schrieb Kieran Kelleher: Anyone got a simple WOComponent for google maps yet (is this wishful thinking!) with bindings like latitude longitude or an NSArray of an NSKeyValueCoding object with latitude/longitude keys

Re: Customizing the EOSortOrdering

2006-03-27 Thread Anjo Krank
The sql is generated in the expression class of the the plugin for your db. You could for example generate the expression, get the statement, fix it and put it into the fetch spec as a hint, probably in a DBC delegate. Or you could write your own plugin by subclassing the oracle plugin

Re: Logout and localization problem

2006-04-11 Thread Anjo Krank
I think it's much easier to not use the default WO way of localization (English.lproj/Mycomponent.wo, German.lproj/ Mycomponent.wo) except for cases where you need to reorder items on the page like for date pickers and the like. It's far too much work to set these up and keep in sync. I'd

Re: Error Message:

2006-04-11 Thread Anjo Krank
Am 11.04.2006 um 20:48 schrieb Chuck Hill: On Apr 11, 2006, at 11:36 AM, Jeffrey Pearson wrote: Can someone tell me what this error means? I'd like to know what it actually means so I can learn to troubleshoot on my own and not have to coming running to you guys every time. Id appreciate

Re: Grouping and aggregating EOs like GROUP BY

2006-04-12 Thread Anjo Krank
Am 13.04.2006 um 00:09 schrieb John Huss: What is the best way to group and aggregate an array of EOs, essentially accomplishing the same thing as an SQL group by clause. I already see that using raw sql is usually not the best way. If not raw sql, then how is this accomplished? I've used

Re: Back Button Issues

2006-04-18 Thread Anjo Krank
Dunno if that is your problem but one of the most likely causes is having the underlying array of a WORepetition change between the time it rendered and the time the link was clicked (object inserted/ deleted, sort order changed, batch size changed etc). You have these options: - use

Re: WO Ajax

2006-04-24 Thread Anjo Krank
You need to get a servlet.jar and add it to your /Library/WebObjects/ Extensions. And you should be careful with that component. I haven't yet tested it, but it seems to me that if you bind up your page as the proxy object, you could call sth like page.application().terminate()... Cheers,

Re: WO Ajax

2006-04-25 Thread Anjo Krank
You're right. Trying this yields: TypeError - Value undefined (result of expression jason.wopage.application().terminate) is not object. Cheers, Anjo Am 25.04.2006 um 14:33 schrieb Jean-François Veillette: Le 06-04-25, à 00:47, Anjo Krank a écrit : You need to get a servlet.jar and add

Re: reproduction of mailing list posts

2006-04-26 Thread Anjo Krank
Did they actually annoy you with some mail from their legal dept or are you just cautious? Because otherwise I´d say just go ahead, as what you do is citation which should be well covered under any fair use laws. On the other hand: publish them in any way on any media in any form would

Re: reproduction of mailing list posts

2006-04-27 Thread Anjo Krank
Am 27.04.2006 um 10:14 schrieb Pierre Bernard: IANAL, but I would assume that the poster of a message retains copyright property. Thus if the original author grants permission to reproduce outside the mailing list all should be OK. I would anyway advocate an ask first approach. I for one

Re: Switch Component question...

2006-04-27 Thread Anjo Krank
This model work great when the wrapper is mostly static, or doesn't interact directly with the actual content shown. For these things, there is Wonder's ERXWOTemplate and ERXWOComponentContent. It kind of makes your head explode when you use it first, but with these you can have multiple

Re: Switch Component question...

2006-04-27 Thread Anjo Krank
Hi Jerry, Am 27.04.2006 um 16:13 schrieb Jerry W. Walker: This model work great when the wrapper is mostly static, or doesn't interact directly with the actual content shown. For these things, there is Wonder's ERXWOTemplate and ERXWOComponentContent. It kind of makes your head explode

Re: Problem loading the D2W assistant

2006-04-28 Thread Anjo Krank
to look at display changes on the fly with ERD2W? I am just rereading the WROX book now, so maybe the NetStruxr case study has some recommendations. Thanks, David On 27-Apr-06, at 10:12 PM, Anjo Krank wrote: least not link in ERD2W when running these assistants

Re: WWDC Sessions

2006-05-08 Thread Anjo Krank
Am 08.05.2006 um 20:59 schrieb Mike Schrag: WebObjects and Web 2.0 Oh wow... and who's gonna hold this? There isn't even an entry level WO session like in the last few years. Cheers, Anjo ___ Do not post admin requests to the list. They will be

Re: ERXInQualifier values 'converted' to NULL

2006-05-09 Thread Anjo Krank
Am 09.05.2006 um 09:25 schrieb philippe rero: I'm trying to use Project Wonder Extensions ERXInQualifier(). [snip] Does anyone have a cue about something I'am missing??? Or why are the string values converted to NULL??? Which version of Wonder? CVS or SF-Binary? Cheers, Anjo

Re: two databases from one application

2006-05-10 Thread Anjo Krank
WO application I am working on was pretty simple up to this point: one apache webserver and one database server serving data to it. The things turned more complicated now: In addition to the first database, we now want to add access to another database. Both of these databases have identical

Re: two databases from one application

2006-05-10 Thread Anjo Krank
Am 10.05.2006 um 22:42 schrieb Arturo Perez: The discussion been interesting and all but why not just set up some sort of replication scheme at the database level? I think all the RDBMs popular on this list can do that Heretic. The thing I'm doing is synching, not mere replication.

Re: WOUnitTest pattern?

2006-05-13 Thread Anjo Krank
OTTOMH, either move the actual methods to test elsewhere ie, don't do nextPage.setValue(context().stringFormValueForKey(foo)) but instead create a method that takes all needed info as parameters and test this, or (preferably) create a request with the URL parameters you want and create the

Re: WOUnitTest pattern?

2006-05-13 Thread Anjo Krank
Am 13.05.2006 um 17:36 schrieb Wolfram Stebel: Am 13.05.2006 16:54 Uhr schrieb Anjo Krank unter [EMAIL PROTECTED]: I intended to create requests and execute them. But i dont know how... pseudo code: Reading the docs should help... WORequest r = new WORequest(url, httpVersion,headers

Re: SQL error on saving changes

2006-05-17 Thread Anjo Krank
INSERT INTO PHOTO(CREATION_DATE, USER_ID, UNIQUE_NUMBER, THUMBNAIL, PHOTO_ID, IS_DELETED) VALUES (1.283486E+8, 2, 8, 'qraaa000', 16423, 0) Your creationDate seems to be a BigDecimal? How about printing it out? Cheers, Anjo ___ Do not post admin

Re: PK Generation in MySQL

2006-05-18 Thread Anjo Krank
Am 18.05.2006 um 20:24 schrieb Robert Walker: Generally PK generation is a function EOF not MySQL. There are plug-ins that support database native PK generation, as is the case with OpenBasePKPlugIn. but I'm not aware of anything similar for MySQL. In any case, unless you're using

Re: WO Web Services + Cocoa

2006-05-19 Thread Anjo Krank
These normally appear in the tag declaration as sometag xmlns:ns1=http://blabla;. It might be that they go away if you start your namespace with sth more sensible than http://;... Am 19.05.2006 um 15:49 schrieb Mike Schrag: Yes, I agree .. The ns1: sounds fishy, and I don't know WHY it is

Re: AJAX WebObjects Integration

2006-05-19 Thread Anjo Krank
Well said. And first and foremost, make sure what it is that you *actually* want to do. Doing Ajax just says nothing. Do you want some special widget? Call server side code? What for and why will that make your app better? Because if you haven't made sure that you know what you want is a

Re: Setting a Default toOne Relationship

2006-05-19 Thread Anjo Krank
Am 19.05.2006 um 17:11 schrieb Chuck Hill: On May 19, 2006, at 3:02 AM, David Avendasora wrote: Hi Ken, The objects must get inserted upon instantiation. What would the point be of having a context that you don't use until you save the information to the database? Might just as well do

Re: Explaining the power of Direct to Web

2006-05-21 Thread Anjo Krank
phrases Anjo Krank and Project Wonder to see the number of questions that have hit this list in which Anjo's answer was We've already done that in Project Wonder. Actually, the search phrase should be more along the line of bla Project Wonder bla. Though some of us may tire of hearing

Re: [Wonder-disc] Re: AJAX WebObjects Integration

2006-05-23 Thread Anjo Krank
Am 23.05.2006 um 08:25 schrieb Mike Schrag: I put up some initial docs on the components available in Wonder's Ajax framework to try to address some of the documentation gap. Brrr. What a pompous asshole... and to think I pointed him towards the iTunes store... I thought about writing

Re: [Wonder-disc] Re: AJAX WebObjects Integration

2006-05-23 Thread Anjo Krank
Am 23.05.2006 um 10:05 schrieb Anjo Krank: Am 23.05.2006 um 08:25 schrieb Mike Schrag: I put up some initial docs on the components available in Wonder's Ajax framework to try to address some of the documentation gap. Brrr. What a pompous asshole... and to think I pointed him towards

Re: validationFailedWithException not called for relationships

2006-06-02 Thread Anjo Krank
Whatever gave you the idea that validationFailedWithException() is called when you saveChanges()? It is only called by validateTakeValeForKeyPath() when it fails, so you need to catch the exception and call it yourself. My guess is that your mandatory property is not shown in the page?

Re: Postgresql and bracket expression

2006-06-14 Thread Anjo Krank
Using the PostgresqlPlugin from Wonder and using a queryOperator of *~ should do the trick. Or one of the selectors in PostgresqlExpression. Am 14.06.2006 um 01:54 schrieb Mac Dev: Dear WO-dev gurus, I am running into a problem and couldn't find any mention in the list archive or

Re: Relation oddity

2006-06-27 Thread Anjo Krank
If you are really interested, you can provide this by overriding public void propagateDeleteForObject(EOEnterpriseObject obj, EOEditingContext ec) in your EntityClassDescription class. Should be pretty straightforward to take the difference between toXXXRelationsshipKeys and

Re: [Wonder-disc] ERXLongPrimaryKeyFactory (long primary keys)

2006-06-30 Thread Anjo Krank
Am 30.06.2006 um 08:51 schrieb Guido Neitzer: Currently I'm working on a project where I really don't know how big some tables in a database may become (some of them may become really big), so I'm not sure whether I should go with integer primary keys (32 Bit) and I'm also not sure whether to go

Re: simple java question with WOComponent sub-classes

2006-07-07 Thread Anjo Krank
Depending on what your SecureComponent actually does, you might want to consider - just having it as a flagging interface and test for it for example in session.appendToResponse if context().page() implements it - move general functionality to static methods of some SecureUtilities class -

Re: Entity inheritance and sorting: Bug or my fault?

2006-07-09 Thread Anjo Krank
Am 09.07.2006 um 17:26 schrieb Guido Neitzer: So, I have to correct myself: For me this is a bug in EOF, because it should fail in BOTH cases because the attribute name is not reachable from ALL entities I want to fetch. It just shouldn't work. So you complain that EOF doesn't fail on

Re: Entity inheritance and sorting: Bug or my fault?

2006-07-09 Thread Anjo Krank
Am 10.07.2006 um 00:03 schrieb Guido Neitzer: On 09.07.2006, at 19:35 Uhr, Anjo Krank wrote: So you complain that EOF doesn't fail on your buggy code? Well... that's certainly one way to look at it :) You might think, I'm just stupid - but that's YOUR way of looking at it. Perhaps you can

Re: webobjects 5.3 and windows

2006-07-11 Thread Anjo Krank
This is funny! I was asked exactly the same question when I showed to to someone today! Cheers, Anjo Am 11.07.2006 um 19:34 schrieb Ken Anderson: That looks AWESOME Mike! Are you going to duplicate all the bugs too? :) On Jul 11, 2006, at 1:32 PM, Mike Schrag wrote: Chuck Thunder

Re: login security issue

2006-07-12 Thread Anjo Krank
Am 12.07.2006 um 22:31 schrieb Chuck Hill: If you set the headers to disallow caching it should prevent what Thomas is describing. However, if the user allowed the browser to save their password, there is nothing you can do. Sure you can: set the name of the username field to

Re: How to create an action binding?

2006-07-14 Thread Anjo Krank
Am 15.07.2006 um 00:12 schrieb Chuck Hill: Not unless the ever devious Anjo has something up his WOnderful sleeve. Which he often does. I did, but Pierce beat me to it :) But to make the direct actions appear, edit the .api file with an editor and edit it like: ... binding

Re: JDBCChannel method failed to update

2006-07-26 Thread Anjo Krank
Am 27.07.2006 um 04:31 schrieb Corin Lawson: I have removed locking from all but the primary key from the entity and this has remedied the problem. But I am concerned that this is not correct and may cause other problems. It is not possible for the this error to be handled by the user

Re: EO Model graphic schema question

2006-07-27 Thread Anjo Krank
OmniGraffle? But from my experience this ER view is only usable for a *very* small amount of entities in the first place. I´d rather use EOGenerator or the other thing from rubycode to create textual docs. Cheers, Anjo Am 27.07.2006 um 11:35 schrieb Amedeo Mantica: How to print it on paper

Re: Problem with EOModeler

2006-07-31 Thread Anjo Krank
Holey baloney, some people really don't know when to stop... Am 31.07.2006 um 20:48 schrieb Guido Neitzer: I don't know. That's for the myth of having a Java WO app generating the same SQL as the tools (we had this on the WOLips list today). Entity Modeler from Eclipse creates both

Re: [Off Topic ] WWDC Eclipse help ?

2006-08-08 Thread Anjo Krank
Wow, is it the 30s again? The street of San Francisco are lined with developers carrying signs Will work for food? Glad I don't have to see that. BTW: a halfway decent intro to Eclipse/WOLips, covering installation, updating, editing+debugging tips, project conversion, pitfalls,

XCode 3 WO version?

2006-08-08 Thread Anjo Krank
Hi, can anyone comment if the WO in XCode 3 is the same as for 2.4? If it is, are there release notes? I'd hate to start decompiling and diffing everything just to make up for missing release notes. The WO bundle says: keyCFBundleShortVersionString/key string5.3.2/string

Re: XCode 3 WO version?

2006-08-09 Thread Anjo Krank
I think with an apple.com address he knows what he's doing? Cheers, Anjo Am 09.08.2006 um 15:26 schrieb Robert Walker: Word of warning. Be very careful with your comments here. You are under NDA and the specifics of Xcode 3.0 are not to be discussed in open forum.

Re: XCode 3 WO version?

2006-08-09 Thread Anjo Krank
Thanks for the info (not that I understand how many threads can handle one request?). Is there any chance to made WO 1.5 or 1.6 compatible for the next release? AFAIK, it's only three lines in EOSQLExpression.formatValueForAttribute(), not using obj.toString() but obj.toPlainString() in

Re: XCode 3 WO version?

2006-08-09 Thread Anjo Krank
Uh, no. If I had to weigh the programming headaches of having a thread switched out from under me against some meager performance gain, I'd know what to chose. If your fetch takes a long time, then by all means spin it of into another thread and use a WOLongResponse. And you could do

Re: XCode 3 WO version?

2006-08-09 Thread Anjo Krank
No. Am 09.08.2006 um 21:36 schrieb Guido Neitzer: Anjo, do you think this may introduce problems with the ERXThreadStorage? ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

Re: Dynamic treeview style navigation model.. anyone?

2006-08-10 Thread Anjo Krank
eg. ERXNavigation from Project Wonder. Cheers, Anjo Am 10.08.2006 um 09:37 schrieb Q: Hi, I have been trying to determine how one would use WO to implement a dynamic, data driven, treeview style navigation for a web application (think EOModeler's tree view). Particularly how best to

[Ann] Wonder 3.0 Released

2006-08-10 Thread Anjo Krank
All, after over two years in the making, it is my pleasure to present a new release of Project Wonder, the largest open-source project for WebObjects. You can grab your copy at the SourceForge download page: http://sourceforge.net/project/showfiles.php?group_id=45176 As usual, there have

[Ann] Next Wocoa in Munich, Sep 30th

2006-08-10 Thread Anjo Krank
All, on behalf of my company, LogicUnited GmbH, it is my pleasure to announce the next Wocoa Pow Wow. It will be held in beautiful Munich on Sept 30th. The exact location will be determined shortly. For those that don't know, the Wocoa's are held semi-annual get- togethers of WebObjects

[Ann] Wonder 3.0 Released

2006-08-11 Thread Anjo Krank
All, after over two years in the making, it is my pleasure to present a new release of Project Wonder, the largest open-source project for WebObjects. You can grab your copy at the SourceForge download page: http://sourceforge.net/project/showfiles.php?group_id=45176 As usual, there have too

Re: D2W App and new tools...

2006-08-12 Thread Anjo Krank
would go and download it as I believe it has quite a bit to do with setting up a D2W app. Anjo Krank recently posted to the Project Wonder mailing list that RuleModeler 1.1 was available. Anyone know where I might download it? I've searched high and low (with Google) and the only thing

Re: WOProject/WOLips first impressions from an Xcode user

2006-08-12 Thread Anjo Krank
Am 12.08.2006 um 13:22 schrieb Mike Schrag: My feedback would be to a) join the list and make some official and specific requests for enhancements, b) contribute to the project and help fix some of these complaints you have, or c) don't use it. What he said, only not as nicely: While I

Re: WOProject/WOLips first impressions from an Xcode user

2006-08-12 Thread Anjo Krank
Am 12.08.2006 um 14:56 schrieb [EMAIL PROTECTED]: Well, a couple of hours ago I added my thoughts to Robert's blog. Frankly, this is a *mailing list* - if people have to say something valuable, they should say it, let us discuss it here, and not make us read and comment on that stuff

Re: WOProject/WOLips first impressions from an Xcode user

2006-08-12 Thread Anjo Krank
Am 12.08.2006 um 17:48 schrieb [EMAIL PROTECTED]: I'm not suggesting you run out and build this yourself, but I'd like to encourage those who like this functionality to consider it. Even if it only worked f or simple stuff, to be used as a teaching tool, I think it would be beneficial.

Re: WOProject/WOLips first impressions from an Xcode user

2006-08-12 Thread Anjo Krank
Am 12.08.2006 um 19:11 schrieb Timmy: I've fortunately received training from two Apple engineers. I was trained on XCode and WOBuilder. I understand the complaints about them - but they're home. I once installed Eclipse/WOLips because I was using Practical WebObjects as a reference. I

Re: WOProject/WOLips first impressions from an Xcode user

2006-08-12 Thread Anjo Krank
Am 12.08.2006 um 20:42 schrieb Chuck Hill: What?!!? You mean it has not been irrelevant for the last several years? Chuck, has anyone ever bothered to tell you that you are a cinic? Cheers, Anjo ___ Do not post admin requests to the list. They

Re: WOProject/WOLips first impressions from an Xcode user

2006-08-12 Thread Anjo Krank
Hi Mike, I'd really like to know why I didn't get the mail you were replying to. I have to check our mail admin on monday. Am 12.08.2006 um 21:28 schrieb Mike Schrag: I had a MUCH larger response to Robert's blog post carefully crafted this morning before I got on the plane, but decided

Re: Time out!

2006-08-12 Thread Anjo Krank
Am 12.08.2006 um 22:45 schrieb Deepak Nulu: I am not a fan of manually editing the wod files. I was impressed when I first saw drag-and-drop bindings in WOBuilder (even though I am used to it since Nextstep days with InterfaceBuilder; I just did not expect it for a web-based UI builder

Re: Time out!

2006-08-12 Thread Anjo Krank
Am 12.08.2006 um 23:03 schrieb Chuck Hill: An import point to consider here is that we are not limited to this traditional implementation. The only restriction that the WO frameworks place is that there is an implementation for public WOElement template() I have seen (I think it was

Re: Time out!

2006-08-12 Thread Anjo Krank
Am 13.08.2006 um 00:04 schrieb Thomas: A different problem is that Web-page-embedded WYSIWYG HTML editors can't handle the wotags. They either delete them or quote all the attributes or do other bad stuff. I've even considered being able to parse another form, eg {wotag wotype=WOString

Re: Time out!

2006-08-12 Thread Anjo Krank
The reason your own stuff kept to get messed up was that you need a way to distinguish between static and dynamic bindings. If you just leave the quotes out, then every reformat will break it. You could just as well only write eg, foo=!somebinding.path to signify that this is not a string.

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

2006-08-13 Thread Anjo Krank
Am 14.08.2006 um 01:22 schrieb Pascal Robert: That was just icing on the cake. And there was a lot of icing there this year. Or, as some one posited, all that beer was to soften us up for the early morning feedback session. :-P Now, I just can't imagine who would be so paranoid? Next

Re: Marketing WO

2006-08-13 Thread Anjo Krank
Am 14.08.2006 um 04:00 schrieb Ian Joyner: P.S. One final thought. Given that Apple is deprecating the tools, anyone want to guess how many WO developers at Apple use Xcode for WebObjects? ;-) You mean they have not been eating their own dog food? They may finally have realized that

Re: looking for PA ...

2006-08-14 Thread Anjo Krank
Am 14.08.2006 um 15:10 schrieb Gavin Eadie: I wonder if anyone on this list knows how to get in contact with PA (last seen on the Java list in June at [EMAIL PROTECTED]). I have cleaned up his file system EO adapter and before re- releasing it, I wanted to be sure that was OK with the

Re: secureWrapper, appendToResponse blueprint / sample code needed...

2006-08-14 Thread Anjo Krank
A way simpler solution is to make a page wrapper for all your components (which you should have anyway to get uniform header and footers), wrap the component content in a conditional bound to session.isLoggedIn and put the login form into another conditional with session.isLoggedIn

Re: Marketing WO

2006-08-14 Thread Anjo Krank
Oh yes. The number of hard core XCode fans will certainly stay the same. Cheers, Anjo Am 14.08.2006 um 19:28 schrieb Ken Anderson: I bet not for long!! :) On Aug 14, 2006, at 12:54 PM, Alan Ward wrote: On Aug 13, 2006, at 2:57 PM, Chuck Hill wrote: P.S. One final thought. Given that

Re: Marketing WO

2006-08-14 Thread Anjo Krank
Am 14.08.2006 um 20:11 schrieb Alan Ward: I wouldn't describe myself as a hard core XCode fan... I simply won't switch to any java IDE that makes me wait 3 minutes at startup before letting me do what I started it to do :-) Given that I for my part re-start Eclipse about as often as OSX,

Re: Eclipse startup speed

2006-08-14 Thread Anjo Krank
If your *really*, *really* needed that *and* minded the switch workspace times, you might as well start a few instances of Eclipse... but frankly, I have a hard time believing that you'd ever need to switch on a regular basis. So I'd like to hear more of this use case to maybe give better

Re: Time out!

2006-08-14 Thread Anjo Krank
I don't really agree with most of the proposed changes (bindings inline, yeech!), but the webobjects name=foo - span woid=foo or tr woid=foo might actually be useful for us. In particular, we could use the WST because IIRC, the main problem was that they choke on webobjects tags without

Re: Time out!

2006-08-14 Thread Anjo Krank
You have some misconception here: the div tag will get *changed* into the component in question. So if you need a div, your component would need to contain one otherwise it will be gone. Which in fact is some serious caution note: CSS styling can handle span span ol li { } If your code

Re: Getting a DIV's content and keeping page context

2006-08-15 Thread Anjo Krank
I deliberately did not answer Yann's question about the DIV, even though what he does would be pretty trivial with the Ajax framework just because I wanted to see if anyone would take a heart and does it for me. No, not you Mike! Anyone who has at least some understanding of WO and has

Re: WebObjects Foundation

2006-08-15 Thread Anjo Krank
Am 16.08.2006 um 03:10 schrieb Mike Schrag: The last time I looked at the WOLips code, it was, um, er, not very well commented. comments ... comments ... nope, haven't heard of em. And, frankly, I think the time would be better spent to document things that people actually use, as

Re: EOGenerator and takeStoredValueForKey dumb question

2006-08-22 Thread Anjo Krank
Am 22.08.2006 um 22:04 schrieb Chuck Hill: It is not supposed to. validateAddress is intended to be called _before_ setAddress is called. Right, wrong, or weird, that is how EOF is intended to work. Objects are permitted to be invalid and validity is checked during saveChanges().

Re: Reusable translated button

2006-08-22 Thread Anjo Krank
Am 22.08.2006 um 22:26 schrieb Mike Schrag: I am not sure really. Kieran had a Quick Start on his blog, not sure if I can still find it. This is a complaint that people often have about Wonder: there is not much in the way of documentation on how to get started and how to use it and

Re: Reusable translated button

2006-08-22 Thread Anjo Krank
Hi Jerry, I'll try to answer this really long post, even though it's full of words like trepidation (eech!) and it's totally late here. Am 23.08.2006 um 00:59 schrieb Jerry W. Walker: I'm now (finally) using Project Wonder primarily because a client wants AJAX features and PR seems to

Re: Reusable translated button

2006-08-22 Thread Anjo Krank
Am 23.08.2006 um 02:51 schrieb [EMAIL PROTECTED]: That may very well be. But you can't have it both ways - either it's for beginners, and therefore needs documenting, or it's for gurus and doesn't. Huh? Where does the both ways come from? I said (and meant): - you will have problems if

[ANN] Wocoa in Munich

2006-09-22 Thread Anjo Krank
All, this is a reminder on the Wocoa on Sat Sep 30th in Munich. It will be held at our place: Logic United GmbH Brecherspitzstrasse 8 81541 München and we'll start at about 11:00. Thanks a lot to everyone who has confirmed by now! And the undecided people should really make up their

Re: Log output using Wonder 3.0

2006-09-22 Thread Anjo Krank
-Dlog4j.category.erx.extensions.ERXExtensions=WARN in your launch args should do the trick. Cheers, Anjo Am 22.09.2006 um 12:00 schrieb Fredrik Lindgren: How do I turn this logging off? ___ Do not post admin requests to the list. They will be

Re: Who's got the button?

2006-09-22 Thread Anjo Krank
Am 22.09.2006 um 18:29 schrieb Kurt Werle: I have twice googled for and found a framework that implemented a button tag for WO. For the life of me, I can't seem to find it again. Anyone know where it's at, or of a good button implementation? IE just plain doesn't work correctly with

Re: WOServices: replacing Cocoa EOF

2006-10-06 Thread Anjo Krank
One of the main problems I had is that the WOHTTPIO doesn't parse chunked encoding, which is what Axis 1.2 uses by default. I have a patch in the works, but it's not finished. Cheers, Anjo Am 06.10.2006 um 22:18 schrieb [EMAIL PROTECTED]: This is something I have been working on as well.

Re: Interesting problem with instances

2006-12-14 Thread Anjo Krank
What happens when you don't set a key binding is that WO stores the image in the resource manager under it's own key and removes it when it is accessed. You could try to log the incoming requests and see if there are two for one such url... Cheers, Anjo Am 14.12.2006 um 15:09 schrieb

[Job opportunity] Munich, Germany

2007-02-16 Thread Anjo Krank
All, We have an opening for a WebObjects developer at Logic United in beautiful Munich, Germany. WE currently have 7 employees (3 highly talented, cool and good looking developers). We create, extend and maintain huge enterprise applications for our customers, with whom we have long-term

Re: WOWODC/WWDC 07 Beer Bash?

2007-04-18 Thread Anjo Krank
Am 18.04.2007 um 20:15 schrieb Chuck Hill: Now that Pascal has done all the hard work of organizing WOWODC '07 (Thank you Pascal!), is anyone interesting in organizing a beer bash (or whatever you like to drink) for the evening of Sunday June 10? You mean we actually have to *organize*

ANN: PDFGenerator 2.1 update coming

2007-06-04 Thread Anjo Krank
All, I have an update for the PDFGenerator from David Teran in the works. For those that are not familiar with it, PDFGenerator is a framework that generates PDF from WOs and HTML-like XML. It's very easy to create good looking PDFs with it, in particular the table and page handling is

Re: D2W and Direct Actions

2007-06-05 Thread Anjo Krank
Am 03.06.2007 um 10:29 schrieb Denis Frolov: Another idea is using one common session for all the spiders. It should be pretty easy to add a method to Browser object like isRobot() which checks user agent against a known list of spiders and use this method to feed one session to all the

  1   2   3   4   5   6   >