Re: JDK7 vulnerability

2012-08-31 Thread Michael Schmiedgen
How many people here are actually using JDK7? We are using JDK7 for development and OpenJDK7 for deployment. Michael -- ___ Michael Schmiedgen, BSc Senior Software Engineer Takwa GmbH Friedrich-List-Str. 36 99096 Erfurt GERMANY Tel +49 361 6534096 Fax +49 361

Question about ERPDFWrapper

2012-08-31 Thread Antoine Berry
Hello everybody! I'm a new Webobjects/Wonder developer. I'm currently working on a invoice application and I have a little problem with the ERPDFWrapper when I want to create my Invoice as PDF. My problem is that when I surround my html component with an ERPDFWrapper, the pdf which is generate

Re: WOInject: Injection in entities, good or bad things?

2012-08-31 Thread Joseph Pachod
BTW, speaking with some fellow EOFers, we spotted a bug in my wording. Indeed, we I say entities, in EOF context, it means EOEnterpriseObject, and not EOEntity. Maybe I should use enterprise object. Anyway, matter cleared, let's move on. ++ joseph 2012/8/29 Joseph Pachod jpac...@improve.fr: Hi

WOWODC 2012 recordings

2012-08-31 Thread Pascal Robert
Hello everyone, If you have a valid (and paid) WOCommunity Membership account, you can now access the WOWODC 2012 recordings! It includes the following presentations: - Apache FTP Server Integration - COScheduler in Depth - Dynamic Elements - WebObjects Optimization: EOF and Beyond - ERRest:

Re: Question about ERPDFWrapper

2012-08-31 Thread Bastian Triller
hello, you can alter the margins in your CSS with something like: @page { size: A4; margin: 37mm 1cm 35mm 25mm; } @PAGE:first { margin: 5cm 1cm 35mm 25mm; } Bastian Am Freitag, den 31.08.2012, 12:22 +0200 schrieb Antoine Berry: Hello everybody! I'm a new

mac os x 10.8.1 xcode 4.4 FAILED try to compile Web_Objects.so

2012-08-31 Thread Ron X
hi here is the output: bash-3.2$ make Makefile:52: ../Adaptor/make.postamble: No such file or directory make: *** No rule to make target `../Adaptor/make.postamble'. Stop. bash-3.2$ bash-3.2$ make cd Adaptor ; make rm -f make.preamble make.postamble for file in *.c; do \ echo ${file}:

Re: Question about ERPDFWrapper

2012-08-31 Thread Antoine Berry
Thank you a lot, that solved my problem! Le 31/08/12 16:58, Bastian Triller a écrit : hello, you can alter the margins in your CSS with something like: @page { size: A4; margin: 37mm 1cm 35mm 25mm; } @PAGE:first { margin: 5cm 1cm 35mm 25mm; } Bastian Am Freitag,

Re: Question about ERPDFWrapper

2012-08-31 Thread Theodore Petrosky
Antoine, did you check out Jasper reports? the pdfs it creates are fantastic. Albeit, it think more work thanERPDFWrapper. Ted --- On Fri, 8/31/12, Bastian Triller bastian.tril...@gmail.com wrote: From: Bastian Triller bastian.tril...@gmail.com Subject: Re: Question about ERPDFWrapper To:

Re: mac os x 10.8.1 xcode 4.4 FAILED try to compile Web_Objects.so

2012-08-31 Thread Bastian Triller
hello, haven't tried to build on MacOS yet, but i think something like $ cd $wonder/Utilities/Adaptors $ make ADAPTORS=Apache2.2 OS=MACOS APXS=/usr/sbin/apxs could work. Bastian Am Freitag, den 31.08.2012, 18:02 +0300 schrieb Ron X: hi here is the output: bash-3.2$ make Makefile:52:

Non-D2W component in a D2W app

2012-08-31 Thread Larry Mills-Gahl
I'm having difficulty calling a generic component from a wonder D2W app navigation bar. I want to use a not implemented yet page as a stub for features/sections that are not yet implemented. I have a NavigationMenu.plist entry [...] { name = users;

Re: Non-D2W component in a D2W app

2012-08-31 Thread Ramsey Gurley
An ERXComponent? public WOActionResults niyAction() { return pageWithName(NotImplementedYet); } No need to use the factory if it isn't a D2WComponent. Ramsey On Aug 31, 2012, at 12:11 PM, Larry Mills-Gahl wrote: I'm having difficulty calling a generic

Re: Non-D2W component in a D2W app

2012-08-31 Thread David Holt
Does your NotImplementedYet extend ERD2WInspectPageTemplate ? On 2012-08-31, at 12:11 PM, Larry Mills-Gahl l...@webfarm.com wrote: I'm having difficulty calling a generic component from a wonder D2W app navigation bar. I want to use a not implemented yet page as a stub for

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-08-31 Thread David Holt
Hi Markus, On 2012-08-31, at 3:18 PM, Markus Ruggiero wrote: 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

Re: Fancy D2WModern display question

2012-08-31 Thread Theodore Petrosky
I have thought of this hundreds of times and I always have the problem with my users quitting the browser. Yea, that's right make some edits, walk away, come back and quit the browser. same issue different take. Ted --- On Fri, 8/31/12, Markus Ruggiero mailingli...@kataputt.com wrote: From:

Re: Fancy D2WModern display question

2012-08-31 Thread Ramsey Gurley
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 the user that there are unsaved changes. Like ERDHasChangesMarker? :-)