Tapestry 5 XML tag(s)

2007-07-04 Thread Ryan Cuprak
Hello, With Tapestry 5 - where can I find information on how the new xml tags work - like etc? I have done quite a bit of work with 4 and am a little disoriented without the jwcids etc. Not sure what I can put instead of 'pagelink'. I interpret entries on the component reference as attri

Multiple 'hidden' fields for the same "for" loop

2006-11-11 Thread Ryan Cuprak
Hello, Just was curious if the multiple entries for 'prompts' was a cause for concern? 'prompts' is the id of a For loop. I am puzzled why it would appear twice. I am using Tapestry 4.1 downloaded October 15th or so. Thanks, -Ryan ---

Tapestry 4.1.1 & Dojo (startup question)

2006-10-14 Thread Ryan Cuprak
Hello, Quick question with tapestry 4.1.1 - is there a default border component or do I still have to write my own? Using my existing border component which worked with Tapestry 4.0.x and Dojo I now get: FATAL: Could not load 'dojo.logging.Logger'; last tried '__package__.js' FATAL: C

Instructions for building 4.1

2006-10-10 Thread Ryan Cuprak
Hello, Just curious if there are instructions for building Tapestry 4.1 from source/version control? I did find http://tapestry.apache.org/tapestry4.1/download.html but I am not quiet sure what I need setup. I have begun looking into maven but it is a bit tangential to tapestry 4.1. Than

Re: [OT] Tapestry + IDEA

2006-09-18 Thread Ryan Cuprak
start tomcat using catalina.sh jpda start and connect using IDEA remotely. Tomcat usually detects my changes to classes file and reloads them. Hope that helps! -Ryan On Sep 18, 2006, at 2:14 PM, Kevin Menard wrote: Ryan Cuprak wrote: Hello, Have you tried: export JAVA_OPTS

Re: [OT] Tapestry + IDEA

2006-09-18 Thread Ryan Cuprak
Hello, Have you tried: export JAVA_OPTS="-Dorg.apache.tapestry.disable-caching=true" (then start tomcat) This disables page caching so that you can see changes immediately. -Ryan On Sep 18, 2006, at 1:34 PM, Kevin Menard wrote: Sorry for the OT question, but I figured this was about as

Re: Quick Contrib:Table question (how to get an ExpressionEvaluator?)

2006-08-16 Thread Ryan Cuprak
D'oh was a simple fix, use service: @InjectObject("service:tapestry.ognl.ExpressionEvaluator") On Wednesday, August 16, 2006, at 07:54AM, Ryan Cuprak <[EMAIL PROTECTED]> wrote: > > Thanks, > That is much simpler! > For the ExpressionTableColumn I need

Re: Quick Contrib:Table question (how to get an ExpressionEvaluator?)

2006-08-16 Thread Ryan Cuprak
er="Call Point H"; >//not that the root of your ognl expression is the current row obj. >String ognlExpression = "callPoinH"; >boolean sortable=true; > ret.add(new >ExpressionTableColumn(columnId,columnHeeader,ognlExpression,sortable); >retu

Quick Contrib:Table question

2006-08-16 Thread Ryan Cuprak
Hello, I am working creating a table for which the number of columns is dynamic (user can control which columns they want displayed). What is the proper approach for implementing the behavior? Thus far I created an implementation of ITableColumnModel which then returns the custom set of co

Re: PermGen space - Caching is ON

2006-07-26 Thread Ryan Cuprak
Hello, I just ran into a problem related to this thread. I have a class with 30 unit tests which tests a HiveMind service used by my Tapestry pages. About midway through execution I get a : java.lang.OutOfMemoryError: Java heap space. I guess I am doing something wrong. I know just enough a

Using an Application state object in a service

2006-07-20 Thread Ryan Cuprak
Hello, I have defined a custom service to generate images on fly. I need to inject an application state object into my service. Normally I would use @InjectState("XXXList") in a page implementation. However this time I need to make a setter and use the or element in hivemodule.xml. C

Workbench example - File System Tree

2006-07-14 Thread Ryan Cuprak
Hello, I've been tinkering with the Workbench File System Tree example. First I downloaded a working war from https://tapestrywebcomponentexamples.dev.java.net/ and deployed it in tomcat to see how it looked (earlier email with a link saved me some time!). Next I extracted the source files fro

Tapestry website?

2006-07-06 Thread Ryan Cuprak
Hello, What happened to the Tapestry website? Is it just me or are quiet a few things missing? (http://tapestry.apache.org) Thanks, Ryan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL P

RE: File download - LinkFactory not being set (statup exception now)

2006-06-29 Thread Ryan Cuprak
.ApplicationServices"> > > > >jeff >-----Original Message- >From: Ryan Cuprak [mailto:[EMAIL PROTECTED] >Sent: Thursday, June 29, 2006 1:47 PM >To: Tapestry users >Subject: Re: File download - LinkFactory not being set (statup exception >now) > &

Re: File download - LinkFactory not being set (statup exception now)

2006-06-29 Thread Ryan Cuprak
work. Any pointers on what I am missing? -Ryan On Thursday, June 29, 2006, at 01:35PM, Ryan Cuprak <[EMAIL PROTECTED]> wrote: > >Hello, > I am working my way through the "Handling File Downloads and Uploads" chapter > in the "Enjoying Web Development&qu

File download - LinkFactory not being set

2006-06-29 Thread Ryan Cuprak
Hello, I am working my way through the "Handling File Downloads and Uploads" chapter in the "Enjoying Web Development" book however I am crashing into a brick wall. The setter for the LinkFactory is never being called thus resulting in a null pointer exception. hivemodule.xml snippet:

Re: xml parse error if the jakarta site is not accessible

2006-06-27 Thread Ryan Cuprak
Actually we ran into this problem as well. I just checked with my coworker - as far as she can remember she made a mistake on the component specification (copy/paste probably). Once it was corrected it no longer tried to fetch the file Regards, Ryan On Tuesday, June 27, 2006, at 12:01PM,

Re: Table component problem

2006-06-15 Thread Ryan Cuprak
eBeginRender - which does not appear to be called when resorting the table (don't quiet understand why yet...). However, any pointers on how-to step into the 'dynamically' generated code/proxy would be appreciated for future reference =) Regards, Ryan On Jun 15, 2006, at 1

Table component problem

2006-06-15 Thread Ryan Cuprak
Hello, I am having a extremely weird problem with the sort on contrib table. It worked perfectly fine (as far as I can tell) until I upgraded to Tapestry 4.0.2 from 4.0.1. When I click on sort I get an exception: Either the tableModel parameter or both source and columns parameters must be spe

Re: Retrieving the HiveMind registry built by ApplicationServlet

2006-06-12 Thread Ryan Cuprak
you need access to the Registry object at all? You should just be >able to define your own hivemodule.xml file and do whatever you want with >your services. > >It's not made easily available on purpose, because there should (in theory) >be no reason for you to use it directl

Retrieving the HiveMind registry built by ApplicationServlet

2006-06-12 Thread Ryan Cuprak
Hello, How do I snag the HiveMind registry which is built by processing the hivemodule.xml in WEB-INF? I am trying to expose my Hivemind service as a webservice (JAXRPC). My Hivemind service is used in serveral pages presently. Looking over the code for the ApplicationServlet it looks like it s

Re: Custom component validation - two fields

2006-06-03 Thread Ryan Cuprak
Hello, I think figured out my problem - I needed to render the html template in rewindFormComponent! It was right in front of me the entire time. -Ryan On Jun 3, 2006, at 3:40 PM, Ryan Cuprak wrote: I think I follow. So you only display the TextField if the checkbox was checked

RE: Custom component validation - two fields

2006-06-03 Thread Ryan Cuprak
isplayed with whatever mark-up is >required. If the user attempts to leave the screen standard edits tell them >they need to provide a value. If they uncheck the box, the field goes away. >Basically, it is done via a Conditional or Choose Component. > >hth, > >Mark > &g

Custom component validation - two fields

2006-06-02 Thread Ryan Cuprak
Hello, We are trying to implement a rather simple custom form component for a search page and perform validation on it. The custom component has a checkbox and a text field. If the checkbox is checked then a value must be provided in the text field. If not, the field must be decorated and a me

RE: Directly requesting a page

2006-05-31 Thread Ryan Cuprak
t;http://localhost:8080/test.html > > > >-Original Message- >From: Ryan Cuprak [mailto:[EMAIL PROTECTED] >Sent: Wednesday, May 31, 2006 2:33 PM >To: users@tapestry.apache.org >Subject: Directly requesting a page > >Hello, > How do I directly invoke a page

Directly requesting a page

2006-05-31 Thread Ryan Cuprak
Hello, How do I directly invoke a page using the page service? I have a test page at the root of the application which I want to invoke. From the Manning book I thought the url would look like: http://127.0.0.1:8080/app?service=page/test This is just a page for tinkering... was trying to tes

subscribe

2006-05-23 Thread Ryan Cuprak
subscribe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]