Re: EnterpriseObjects in a regular Java application

2006-02-09 Thread Markus Ruggiero
Sorry if I'm late (and the answer already given)The simplest way to create a command line app is to overload application.run() like this:In file Application.java write the following methodpublic void run() {    // when the framework finally calls this method everything is properly set up    //

Re: EO/Java class default Values

2006-09-27 Thread Markus Ruggiero
On 27.09.2006, at 06:40, Tarun Reddy wrote:Sorry if this is dirt simply but I seem to be missing something that every google search, as well as page 170 in Joshua Marker's book suggest should work.I have a small app where there is an WOHyperlink called "Submit new idea" that calls a method that

[OT] The omnigroup does not like me anymore

2006-11-08 Thread Markus Ruggiero
Sorry for the OT posting. I am subscribed to various WO/EOF/Apple related mailing list from the omni group. For the last couple of days I have not received one mail from them. What I have done so far: Used the web interface to the listmanager to try and check my subscription. However as

Re: Perform Parent Action from within a WORepetition in the subcomponent

2007-01-19 Thread Markus Ruggiero
/options/webobjects-dev/markus% 40ruggiero.ch This email sent to [EMAIL PROTECTED] Don't miss my latest project at http://blindpromo.com Markus Ruggiero rucotec consulting and technologiesemail mailto:[EMAIL PROTECTED] rucotec GmbH web http

Old D2W Project Builder projects to new world?

2010-12-28 Thread Markus Ruggiero
Hi, after some 3 years of absence from WO I have a customer asking me to teach an old D2W application some new things and port it to the new world. The app is currently maintained on WindowsXP with WO 5.2 and the old Project Builder and tools. Some time ago I have done Eclipse/WOlips things on

Inserting quote char into generated output

2011-02-17 Thread Markus Ruggiero
Hi wo-gurus, I have the following problem: I want to generate XML and need to put literal and char into the output. The wo parser however fails and I do not know how to effectively solve this. Let me give an example: Desired output: value name=ABCD/value ABCD comes from the database.

Problem with unicode support

2011-02-23 Thread Markus Ruggiero
Hi, I am currently fighting with a ERD2W application and unicode character support. Some chars simply do not make it into the browser display. One example is → (right arrow). DB is Oracle 9 running on WinNT, development on Snow Leo I can copy/paste that particular char from an Excel table

D2W Question

2011-03-02 Thread Markus Ruggiero
Hi WO Developers, I need help with D2W, I want to provide a Download as Excel link on each list page. What is the best way to accomplish this? I know I can freeze a list page and modify it but this decouples me from the rule system. This is a plain out-of-the-box WonderD2W app. Thanks a lot

Re: D2W Question

2011-03-02 Thread Markus Ruggiero
: Markus Dave Leber provided a very simple way to generating Excel files. See his blog here. http://davidleber.net/?p=369 Paul On Mar 2, 2011, at 6:53 AM, Markus Ruggiero wrote: Hi WO Developers, I need help with D2W, I want to provide a Download as Excel link on each list page

Re: D2W Question

2011-03-02 Thread Markus Ruggiero
to a property in your list just so it has a column etc. On Mar 2, 2011, at 9:34 AM, Markus Ruggiero wrote: Paul, Thanks, I already know how to create the Excel file. The problem I face is that I have several D2W list pages (user going from query to list for any entity) and I want to add

Re: D2W Question

2011-03-03 Thread Markus Ruggiero
://lists.apple.com/mailman/options/webobjects-dev/programmingosx%40mac.com This email sent to programming...@mac.com Markus Ruggiero Gartenstrasse 71jmailto:mar...@ruggiero.ch CH-4132 Muttenz http://www.ruggiero.ch Switzerland mobile/GSM+41 (0)79 508 47 01

Re: D2W Question

2011-03-05 Thread Markus Ruggiero
by the controller. If you want actual individual buttons, then I believe the ERDActionBar is what you're going to want instead.\ Dave On Mar 4, 2011, at 7:50 AM, Markus Ruggiero wrote: Hi David, After going through the mentioned wiki pages I am kind of more confused than before :-( If you

Re: D2W Question

2011-03-07 Thread Markus Ruggiero
Anjo, That's what I already tried but it does not work :-( I found that the app always fires the rule: 100: (pageConfiguration = 'ListExcelTextblock') = excelFileName = Textblock.xls [com.webobjects.directtoweb.Assignment] when it is there. When I remove this rule I always get the default

Intercept submitAction in generated D2W Edit Page

2011-03-07 Thread Markus Ruggiero
I have a nicely generated ERD2WInspectPage for an entity (task = edit). Now I need to take special action after this entity has been successfully saved. I must automatically generate a PDF from the saved data and put it into some predefined location in the file system. How can I do this? I know

Example needed for ERD2WEditToOneRelationshipWithFilter

2011-03-09 Thread Markus Ruggiero
Could someone please give me a short example for the use of ERD2WEditToOneRelationshipWithFilter? The minimalist documentation is (to me) of not much help. Lets say I need to create a toOneRelationship to entity TechnicalDoc where the attribute isReady is true. Relationship to technical docs

Re: Example needed for ERD2WEditToOneRelationshipWithFilter

2011-03-09 Thread Markus Ruggiero
On 09.03.2011, at 12:00, Markus Ruggiero wrote: Could someone please give me a short example for the use of ERD2WEditToOneRelationshipWithFilter? The minimalist documentation is (to me) of not much help. Lets say I need to create a toOneRelationship to entity TechnicalDoc where

Re: [Q] D2W sorting lists with property level custom component

2011-03-16 Thread Markus Ruggiero
On 14.03.2011, at 19:24, Markus Ruggiero wrote: More D2W problems here: I have a simple D2W list page with a couple of attributes. All the columns have the sort icon and sorting works. One of the attributes is a very large string. So I created a CollapsibleLargeString property level

Modelling boolean in D2W compliant way

2011-03-16 Thread Markus Ruggiero
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

Re: Modelling boolean in D2W compliant way

2011-03-19 Thread Markus Ruggiero
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

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 body. There is a webobjects D2WHead wrapping some style defs and a couple of meta infos. These do not make it into the generated

Re: URGENT problem with D2W and PageWrapper.wo

2011-03-23 Thread Markus Ruggiero
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 body. There is a webobjects D2WHead wrapping some style

Re: Modelling boolean in D2W compliant way

2011-03-23 Thread Markus Ruggiero
. 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

Weird NullPointerException

2011-03-25 Thread Markus Ruggiero
I have an EO that has business logic for creating an PDF file. There is a WOComponent that generates an XML which is then fed to ApacheFOP. Following code is in the EO: GeneratedDocument.java public void generatePDF(WOComponent sender) { if (sender == null) {

Re: Weird NullPointerException

2011-03-28 Thread Markus Ruggiero
Thanks Chuck, you made my day. Cheers ---markus--- On 25.03.2011, at 18:47, Chuck Hill wrote: Hi Markus, On Mar 25, 2011, at 3:41 AM, Markus Ruggiero wrote: I have an EO that has business logic for creating an PDF file. There is a WOComponent that generates an XML which is then fed

Excel download question

2011-04-04 Thread Markus Ruggiero
Just a quick question regarding ERExcelListPage: How can I add a line break inside one Excel cell? I have a toMany relationship where the customer wants the values of a destination key put into one Excel cell as a single multi line value. How can I do this? I already have a simple custom

D2W master-detail handling question

2011-04-06 Thread Markus Ruggiero
I have a one-2-many relationship from master to detail. The user selects a detail from a ListDetail page configuration, then clicks edit on a given detail. In page configuration EditDetail I have a ERD2WEditToOneRelationship as a popup for the toMaster relationship. Now the user thinks/wants to

Re: D2W master-detail handling question

2011-04-07 Thread Markus Ruggiero
--- On 06.04.2011, at 19:01, David Holt wrote: Hi Markus, On 2011-04-05, at 11:14 PM, Markus Ruggiero wrote: I have a one-2-many relationship from master to detail. The user selects a detail from a ListDetail page configuration, then clicks edit on a given detail. In page configuration

Confused with delete rules in EntityModeler

2011-04-26 Thread Markus Ruggiero
Hi, I have a fairly complex structure of several entities (actually this is not so complex after all). Eventually when I try to delete an ElectronicDocument (this is a pure ERD2W app, no custom delete() stuff) my application throws up with java.lang.IllegalStateException: A valid global ID

Re: Confused with delete rules in EntityModeler

2011-04-26 Thread Markus Ruggiero
Here is the model: ElectronicDocument --TextblockReference--Textblock. TextblockReference is more than a simple m:n join table. However I have a flattened m:n relationship between ElectronicDocument (called textblocks) and Textblock (called documents) across TextblockReference. There are

Re: D2W editRelationship displays PageWrapper???

2011-06-23 Thread Markus Ruggiero
Ruggiero mailingli...@kataputt.com Cc: webobjects-dev@lists.apple.com Dev Apple webobjects-dev@lists.apple.com Subject: Re: D2W editRelationship displays PageWrapper??? On Mar 19, 2011, at 5:39 AM, Markus Ruggiero wrote: Hi, I must be overlooking something... When D2W performs

Excel Generation in D2W

2011-08-05 Thread Markus Ruggiero
Hi list, Some months ago I have asked for help with generation of Excel from inside a D2W app. This has worked perfectly. But now the customer wants more - and I have no idea how to solve this. I have a model that goes like this (simplified): Document -- Textblock (simple one to many). Each

Trapping SQLException in D2W

2011-08-24 Thread Markus Ruggiero
Folks, I have the following requirement: I need a unique constraint on the combination of 2 attributes. As I have learned from some postings about a year back the distinct index in EOModeler does not work (and it surely does not for me). Or should it? This is Oracle 9 and WO54, Eclipse Ganymed

D2W many-to-many and ExcelExport help needed

2011-08-29 Thread Markus Ruggiero
I have a product entity and an industry entity. These are joined by a m:n table (which is more than a simple join table, there is a comments field that is important) product--prodindustry--industry Having an EditProduct pageConfiguration I can with a custom property level component display

Prevent NEW in D2W?

2011-08-29 Thread Markus Ruggiero
Quick D2W question: isEntityEditable, isEntityDeletable, isEntityInspectable are all fine, but is there something like isEntityNewable? In other words: I have an entity with exactly one record that contains some global parameters to my app. The user must be able to update that one record but

Need conceptual help with weird data model

2011-08-29 Thread Markus Ruggiero
Hi, I am working with a legacy database that I am not allowed to change because other apps access the db and they cannot be changed. Fortunately those apps access the DB in a read-only way, so I can add tables and attributes to existing tables. There is one area that the developers in the

Re: Prevent NEW in D2W?

2011-08-29 Thread Markus Ruggiero
, Markus Ruggiero wrote: Quick D2W question: isEntityEditable, isEntityDeletable, isEntityInspectable are all fine, but is there something like isEntityNewable? In other words: I have an entity with exactly one record that contains some global parameters to my app. The user must be able

WOCollapsibleComponentContent broken?

2011-08-31 Thread Markus Ruggiero
I have a weird thing going on here. Custom property level component in an out-of-the-box ERD2W NEUtral app (page config is CreateMyEntity or EditMyEntity). This custom component has a WOCollapsibleComponentContent that hides/reveals additional optional fields. no binding for submitActionName:

Re: WOCollapsibleComponentContent broken?

2011-09-02 Thread Markus Ruggiero
! My MacBook Pro sits there and I can just edit a rule or two and when the customer is done explaining what he needs Ok, it's already done. Is this what you want? :-))) On 31.08.2011, at 13:31, Markus Ruggiero wrote: I have a weird thing going on here. Custom property level component

Beware of long Strings

2011-10-03 Thread Markus Ruggiero
Folks, I had a very troubling experience. Just wanted to know if I am seeing ghosts. Very simple standard to-one relationship. Many entity is Product, one entity is Status. Relationship is modeled via numeric attribute statusId. The one-entity has a plain attribute with following settings:

D2W and rule controlled visibleEntityNames

2011-11-08 Thread Markus Ruggiero
I am trying to control the list of visible entities through a rule file. That works as expected. However the same app is deployed in several regions. Each region has its own requirements for the visibleEntityNames. So I create a key region in the D2WContext and use this in various places

Re: D2W and rule controlled visibleEntityNames

2011-11-09 Thread Markus Ruggiero
---markus--- On Nov 8, 2011, at 3:22 AM, Markus Ruggiero wrote: I am trying to control the list of visible entities through a rule file. That works as expected. However the same app is deployed in several regions. Each region has its own requirements for the visibleEntityNames. So I create

D2W Finding duplicate rules

2011-11-16 Thread Markus Ruggiero
Hi all, after a long (weeks!) on and off debugging session between my development environment and the customer's deployment I finally found the issue. This might interest others here and then I have a related question. D2W application with one rule file with some 600+ rules, development on

D2W Can I access Object property values from the rule system?

2011-11-28 Thread Markus Ruggiero
I need a rule like the following (pseudo code): pageConfiguration='EditMyEntity' and {the MyEntityObject has a value of 'SOMETHING' in its KIND-attribute} = displayPropertyKeys = Background: I have dozens of ElectronicDocuments. Each has a to-one reference to a DocumentType (there are

Re: D2W Can I access Object property values from the rule system?

2011-11-28 Thread Markus Ruggiero
: How do I put it there? Please some hand holding :-( ---markus--- On 2011-11-28, at 8:24 AM, Markus Ruggiero wrote: I need a rule like the following (pseudo code): pageConfiguration='EditMyEntity' and {the MyEntityObject has a value of 'SOMETHING' in its KIND-attribute

Re: D2W Can I access Object property values from the rule system?

2011-11-28 Thread Markus Ruggiero
On 28.11.2011, at 19:52, David Holt wrote: Then when you want to select the Entity you would do something like this (here I have a custom select component in a ListProject configuration) and I return a page with the list of activities that are associated with the selected project. You'll

Re: D2W Can I access Object property values from the rule system?

2011-12-01 Thread Markus Ruggiero
: On Nov 28, 2011, at 9:24 AM, Markus Ruggiero wrote: I need a rule like the following (pseudo code): pageConfiguration='EditMyEntity' and {the MyEntityObject has a value of 'SOMETHING' in its KIND-attribute} = displayPropertyKeys = Background: I have dozens of ElectronicDocuments

WOLips on Windows

2011-12-19 Thread Markus Ruggiero
Folks, I am trying to install WO/WOLips on an Win7 system. WOInstaller.jar worked fine and created the C:\Apple directory structure. But as golipse.app is a Mac application, I tried to install WOLips manually. Downloaded Eclipse Indigo (3.7) and copied the update site

Re: Probably a silly question

2011-12-19 Thread Markus Ruggiero
On 19.12.2011, at 11:51, Gino Pacitti wrote: Hi... In the Wonder examples there are variables with underscore... public NSData _data; public AjaxUploadProgress _uploadProgress; public AjaxProgress _progress; Any significance??? Hi Gino, as far as I know from the

Re: WOLips on Windows

2011-12-19 Thread Markus Ruggiero
Thanks, I found it in the mean time. ---markus--- On 19.12.2011, at 12:10, Pascal Robert wrote: Hi Markus, Try this instead for the update site: http://webobjects.mdimension.com/hudson/job/WOLips37Current/lastSuccessfulBuild/artifact/site/ Folks, I am trying to install

Move of Wiki and state of documentation

2011-12-19 Thread Markus Ruggiero
Pascal Roberts just sent the following message to the list: Good morning everyone, We are moving the wiki to the wocommunity.org server very soon (this Friday morning!) and we will close Jira at the same time. If you still have non-resolved issues on Jira, please recreate them on GitHub.

Why I teach WebObjects

2011-12-19 Thread Markus Ruggiero
and a lot to discover every day. ---markus--- On Dec 19, 2011, at 3:02 AM, Markus Ruggiero wrote: Need this for teaching WO (yeah!). Many folks come with their Macs but not everyone does. Some students have only Win notebooks. So I must be able to have development on Windows as well

ERD2W qualifying restrictingFetchSpecification

2012-01-24 Thread Markus Ruggiero
Can I qualify dynamically a restrictingFetchSpecification? I have the following model: Category one-2-many Group one-2-many Statement For pageConfiguration EditStatement I have displayPropertyKeys = (group.category.name, group.name, and others) group.category.name is displayString, group.name

ERD2W ListExcel* with child records question

2012-01-26 Thread Markus Ruggiero
Question about Excel Listings and how to get the data into them Model: StatementGroup -one-2-many- Statements Customer wants on pageConfiguration = ListStatementGroup an Excel link to download a group listing. That is easy, I have this kind of thing working all over my app. But now the

Re: D2W, EditingContext, WORequest

2012-01-30 Thread Markus Ruggiero
Help, this is urgent, please could someone have a look. I am at a loss here. Probably my concept is wrong but I do not see how to fix it. A nudge into the right direction (or a kick into the bu**) might be all I need. Thank you very much ---markus--- On 27.01.2012, at 15:35, mailinglists

Re: D2W, EditingContext, WORequest

2012-01-30 Thread Markus Ruggiero
, except the wrapper is what FOP wants. Paul Sent from my iPad On Jan 30, 2012, at 4:58 AM, Markus Ruggiero mailingli...@kataputt.com wrote: Help, this is urgent, please could someone have a look. I am at a loss here. Probably my concept is wrong but I do not see how to fix

Re: D2W, EditingContext, WORequest

2012-01-30 Thread Markus Ruggiero
is also created and then the editing context saved again. Good luck, Best wishes, Mark On 30 January 2012 14:59, Markus Ruggiero mailingli...@kataputt.com wrote: Yes, Paul, I know this - and I do not want to mix. BUT: the required functionality is so, that when a textblock is edited

Re: D2W, EditingContext, WORequest

2012-02-01 Thread Markus Ruggiero
that it is appropriate to handle it. If the pdf generation takes time, consider trying something like ERXAsyncQueue to handle in the background. D -- David LeBer Codeferous Software On 2012-01-30, at 9:59 AM, Markus Ruggiero wrote: Yes, Paul, I know this - and I do not want to mix. BUT: the required

Need help with complex D2W query

2012-03-27 Thread Markus Ruggiero
At the moment I probably do not see the forest for the trees anymore. I have the following model: edoc -- ref -- param params is a fixed pool of given objects A, B, C, etc out of which an edoc can reference any number of them. When such a reference is established the user must add some comment

Need help with ERD2WWizardCreationPage

2012-04-02 Thread Markus Ruggiero
This is my first try with ERD2WWizardCreationPage. I can show a wizard with 3 tabs and the correct propertyKeys. However I have the requirement that the value of a field from step 1 is a limiting qualifier for a ERD2WEditToOneRelationship (shown as a popup) in a later step. How can I achieve

Re: Need help with ERD2WWizardCreationPage

2012-04-03 Thread Markus Ruggiero
if the restrictingFetchSpecification key is to ... restricting :-) Ramsey On Apr 2, 2012, at 11:52 AM, Markus Ruggiero wrote: This is my first try with ERD2WWizardCreationPage. I can show a wizard with 3 tabs and the correct propertyKeys. However I have the requirement that the value

Quick Question about ListExcel*

2012-04-09 Thread Markus Ruggiero
Hi, I have Excel listings working in my D2W app. How can I specify the default column width? I have not found anything helpful yet. Could this be done in ExcelStyles.plist? How? Thanks for your help ---markus--- ___ Do not post admin requests to

I am going to write a WO book

2012-06-08 Thread Markus Ruggiero
Folks, after a lot of thinking back and forth I finally decided that the world needs another book about WebObjects. And for this I need your input/feedback. But first let me give some background on why I would do this I am a part time teacher and author of course books besides doing

Re: I am going to write a WO book

2012-06-18 Thread Markus Ruggiero
promote WO. I am looking forward do meeting you in person and talk things through. See you there, in the meantime have fun ---markus--- On 08.06.2012, at 14:48, Markus Ruggiero wrote: Folks, after a lot of thinking back and forth I finally decided that the world needs another book about

Installing Tools and Framework is a mess

2012-07-17 Thread Markus Ruggiero
Contents: - Hot tip - Rant - Suggestions for a Solution Yesterday a new intern started and we set out to set up a WO development system. This was a virgin Lion 10.7.3. Fortunately I know what to do but my intern would have given up half way through, even with the latest docs from the wiki.

Startup in deployment hangs

2012-08-03 Thread Markus Ruggiero
Hi, I have a simple ERD2W application that is in ongoing development. For the customer to be able to see progress I decided to set up an out-of-the-box Mac Mini with Lion Server 10.7.4 and make a preliminary version of the app available. Absolute minimum configured, installed wotaskd and

Re: Startup in deployment hangs

2012-08-06 Thread Markus Ruggiero
) ? Thanks for any tips ---markus--- On 03.08.2012, at 12:55, Markus Ruggiero mailingli...@kataputt.com wrote: Hi, I have a simple ERD2W application that is in ongoing development. For the customer to be able to see progress I decided to set up an out-of-the-box Mac Mini with Lion Server 10.7.4

Re: Startup in deployment hangs

2012-08-09 Thread Markus Ruggiero
there (and what's wrong with -WOHost) ? Thanks for any tips ---markus--- On 03.08.2012, at 12:55, Markus Ruggiero mailingli...@kataputt.com wrote: Hi, I have a simple ERD2W application that is in ongoing development. For the customer to be able to see progress I decided to set up an out

Re: Problem getting D2W rule firing log

2012-08-10 Thread Markus Ruggiero
...@smarthealth.com wrote: Watch the updated walkthrough I posted here. http://wiki.wocommunity.org/display/documentation/How+to+debug+a+D2W+application Ramsey On Aug 9, 2012, at 6:26 AM, Markus Ruggiero wrote: I have created a new ERModel D2W app and no matter what I do I cannot get rule

test

2012-08-15 Thread Markus Ruggiero
TEST please ignore (have not received anything from the apple list server for two days) ___ 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

Re: WOComponent

2012-08-17 Thread Markus Ruggiero
On 17.08.2012, at 11:26, Ron X ron.x.by...@gmail.com wrote: hi everybody! i want to see in plain text (like curl utility) what is in the wocomponent (wopage) how can i do this? then why not just use curl? Copy/paste the URL from the browser into a terminal session and hit return Or

Re: WOComponent

2012-08-18 Thread Markus Ruggiero
On 18.08.2012, at 17:55, Ron X ron.x.by...@gmail.com wrote: hi, i described the behaviour, but i want to see what is in the component (page) in debug-mode, before the page-component will go to the responce. for example i work with email - Emailer class - and i consumes a component;

ERD2WEditToOneRelationship popup issue with umlauts

2012-08-20 Thread Markus Ruggiero
Hi, I seem to have a problem with umlauts and ERD2WEditToOneRelationship with displayStyle = popup. One of the selections has an umlaut in the name (Zürich). The generated code looks like this: select _componentname=er.extensions.components.ERXToOneRelationship

D2W modern problem specifying display width for text fields

2012-08-23 Thread Markus Ruggiero
Folks,I am struggling to specify display widths for text fields in a modern wonder D2W app. All fields always have the same width in the browser. No matter what keys I try, width, size, length, cols, columnCount, whatever. Here is an example of ERD2WEditLargeString. From the screenshot it is

Re: D2W modern problem specifying display width for text fields

2012-08-23 Thread Markus Ruggiero
-- David LeBer Codeferous Software On 2012-08-23, at 10:06 AM, Markus Ruggiero mailingli...@kataputt.com wrote: Folks, I am struggling to specify display widths for text fields in a modern wonder D2W app. All fields always have the same width in the browser. No matter what keys I try

Re: ERD2WEditToOneRelationship popup issue with umlauts

2012-08-29 Thread Markus Ruggiero
On 20.08.2012, at 18:08, Chuck Hill ch...@global-village.net wrote: Hi Markus, On 2012-08-20, at 12:46 AM, Markus Ruggiero wrote: I seem to have a problem with umlauts and ERD2WEditToOneRelationship with displayStyle = popup. One of the selections has an umlaut in the name (Zürich

Re: ERD2WEditToOneRelationship popup issue with umlauts

2012-08-30 Thread Markus Ruggiero
Thanks all, setting property er.extensions.ERXApplication.DefaultEncoding=UTF-8 fixed things. have fun ---markus--- PS Why is this not default? Would make a lot of sense. On 20.08.2012, at 09:46, Markus Ruggiero mailingli...@kataputt.com wrote: Hi, I seem to have a problem with umlauts

Fancy D2WModern display question

2012-08-31 Thread Markus Ruggiero
Playing with ERD2WModern is fun. As I tried various things with Stylesheets two related questions have come to mind and I wonder wether and how this could be achieved. A customer of mine had the problem that an embedded editor page (e.g. for relationships) has a Save button and when pressed

Re: Fancy D2WModern display question

2012-09-01 Thread Markus Ruggiero
On 01.09.2012, at 01:53, Ramsey Gurley rgur...@smarthealth.com wrote: On Aug 31, 2012, at 3:18 PM, Markus Ruggiero wrote: As long as the outermost EC hasChanges() a key in d2wcontext should be available so that some kind of mark/graphic/text/whatever can be shown conditionally alerting

D2W Displaying (running) totals underneath lists

2012-09-05 Thread Markus Ruggiero
Hi listers, In a modern D2W app I want to display a row of totals underneath a list. How could I do this? The list might be batched. What if I wanted to have batch totals and total totals? Thanks ---markus--- ___ Do not post admin requests to the

Re: D2W Displaying (running) totals underneath lists

2012-09-06 Thread Markus Ruggiero
On 05.09.2012, at 09:20, Markus Ruggiero mailingli...@kataputt.com wrote: Hi listers, In a modern D2W app I want to display a row of totals underneath a list. How could I do this? The list might be batched. What if I wanted to have batch totals and total totals? Nobody ever had

Re: Trouble Shooting Mountain Lion

2012-09-11 Thread Markus Ruggiero
On 11.09.2012, at 06:09, Jeffrey Schmitz j...@netbrackets.com wrote: Am having this same problem myself after upgrading to mountain lion server: The requested URL /cgi-bin/WebObjects/netBrackets.woa was not found on this server. but I do have the ScriptAlias in my

Re: Community bounties

2012-09-11 Thread Markus Ruggiero
On 10.09.2012, at 18:37, Pascal Robert prob...@macti.ca wrote: Ok, like we said here: Ça va faire le niaisage! So we need people who can: - Make something like Golipse that will install not only Eclipse (current stable version, so 3.7 or 3.8 for now), but also WOLips, Rule Modeler,

Re: Project Wonder cookbook

2012-09-11 Thread Markus Ruggiero
On 10.09.2012, at 19:53, Pascal Robert prob...@macti.ca wrote: Ok, so one of the objectives of WOCommunity for this year is to write a Project Wonder Cookbook. If you ever bought a O'Reilly Cookbook, you know what I'm talking about. If not, those books have a really simple purpose: to

Correct spelling of Wonder and WOlips? How do we want to call things?

2012-09-18 Thread Markus Ruggiero
What is the agreed correct spelling of the following: - Wonder / WOnder ? - WOlips / WOLips ? As the first chapters of my book near completion I want to make sure that everything is spelled properly. Additionally as far as I remember we try not to talk about WebObjects any more but use the

Need idea for modal overlaid page in D2WNeutral app

2012-11-22 Thread Markus Ruggiero
Folks, I have a Wonder based D2W neutral look app (quite a large thing) where one component has become very large. It shows a hierarchy of 5 levels. Each level has some 5 attributes. I have already wrapped all hierarch levels in D2WCollapsibleComponentContent but when the user opens several

Update on the new Wonder beginners book

2012-11-27 Thread Markus Ruggiero
and Windows. You can download the PDF from here . Provided you keep the copyright notice (copyright by Markus Ruggiero) and do not alter the contents you can distribute the PDF in any way you like. The final book will be payware but I do not yet know exactly how it will be distributed

Re: Hello World Project - Installation Development

2013-01-14 Thread Markus Ruggiero
This email sent to mailingli...@kataputt.com Markus Ruggiero mailingli...@kataputt.com Check out the new book about Project Wonder and WebObjects on http://www.kataputt.com/ ___ Do not post admin requests to the list. They will be ignored

Re: help with D2W target

2013-01-18 Thread Markus Ruggiero
Theodore, I was having the very same issue. See thread Why does the rule not fire??? from 30. August 2012. I could not get any formatter to work. I ended up writing my most simple custom component for dates and numbers to use in these circumstances. Should have tried do debug but there was no

2dim excel for 1:m relationship problem

2013-02-06 Thread Markus Ruggiero
Folks, I need some good ideas. I have basically the following model: PRODUCT (code, name, some other attrs) -- STATEMENTREF (status) -- STATEMENT(text) STATEMENTREF is a join table that has one attribute (so it is not a simple m:n join). The customer wants an excel file looking like this

Re: 2dim excel for 1:m relationship problem

2013-02-07 Thread Markus Ruggiero
them open that in excel. This may be the easiest route. probably the best idea. Thanks Ramsey (and hey, your name is masculine enough...) ---markus--- Ramsey On Feb 6, 2013, at 10:13 AM, Markus Ruggiero wrote: Folks, I need some good ideas. I have basically the following model: PRODUCT

Re: WOCommunity membership and goals

2013-02-07 Thread Markus Ruggiero
On 07.02.2013, at 13:59, Pascal Robert prob...@macti.ca wrote: Hello everyone, Based on the feedback we have so far in the surveys (if you haven't answered the 2013 surveys, please do it in the next 7 days), we established a list of goals for 2013: - We need a jQuery framework.

Re: Any interest in WOWODC recordings on DVDs?

2013-02-13 Thread Markus Ruggiero
://lists.apple.com/mailman/options/webobjects-dev/mailinglists%40kataputt.com This email sent to mailingli...@kataputt.com Markus Ruggiero mailingli...@kataputt.com Check out the new book about Project Wonder and WebObjects on http://www.kataputt.com

Re: Any interest in WOWODC recordings on DVDs?

2013-02-14 Thread Markus Ruggiero
On 13.02.2013, at 19:06, prob...@macti.ca wrote: We can ship the recordings as ASCII on a Vax 750. Does it include the VMS/VAX license for the operating system? If yes, I'd take it. However what about shipping cost? ---markus--- Envoyé de mon iPhone Le 2013-02-13 à 13:05, Chuck Hill

Sending POST request to external host

2013-03-08 Thread Markus Ruggiero
Hi, I have a component that generates some XML data. Works fine. Now I need to upload that XML data via a POST to some remote server. How would I do that? Here is the code I use, but somehow the remote server chokes with the contents I send it. When I let the frameworks return the XML to my

Detailed HOWTO Deploy on Mountain Lion

2013-04-05 Thread Markus Ruggiero
welcome! Have fun ---markus--- Markus Ruggiero mailingli...@kataputt.com Check out the new book about Project Wonder and WebObjects on http://www.kataputt.com/ ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing

Re: Relationship many-to-many issue

2013-04-05 Thread Markus Ruggiero
/mailinglists%40kataputt.com This email sent to mailingli...@kataputt.com Markus Ruggiero mailingli...@kataputt.com Check out the new book about Project Wonder and WebObjects on http://www.kataputt.com/ ___ Do not post admin requests to the list

override qualifier from EOModel

2013-04-10 Thread Markus Ruggiero
Folks, I have an entity Product with an attribute isVisible. Throughout my application I only work with products that are visible. So I have specified a qualifier visible='Y' right in the model. This qualifier is automatically AND-added to each and every query agains Product. Fine, I am happy

Re: override qualifier from EOModel

2013-04-10 Thread Markus Ruggiero
:52, Markus Ruggiero mailingli...@kataputt.com wrote: Folks, I have an entity Product with an attribute isVisible. Throughout my application I only work with products that are visible. So I have specified a qualifier visible='Y' right in the model. This qualifier is automatically AND-added

Re: override qualifier from EOModel

2013-04-10 Thread Markus Ruggiero
On 10.04.2013, at 19:50, Chuck Hill ch...@global-village.net wrote: On 2013-04-10, at 10:29 AM, Markus Ruggiero wrote: Thanks for all your suggestions so far, but I think none is what can really help me. Let me explain a bit more. Cleanup does not only mean delete the Product from

Re: OT - Share our experience moving from WO

2013-04-22 Thread Markus Ruggiero
On 22.04.2013, at 01:50, Daniel Mejia mej...@evol-tech.com wrote: Hi all, I would like to share my experience after decided to move from WO. This decision took some years but finally we have to make it. After some years developing with Java and WO we started a migration to what our

  1   2   3   >