Re: Is the server ok? Can't log on?

2008-01-07 Thread Daniel Jue
D Types are really neat. Glad to see I'm not the only car guy on the list. =) Dan On Jan 7, 2008 10:51 AM, Alex Fishlock <[EMAIL PROTECTED]> wrote: > Call me 0207 9382667 > > > > From: Nick Fishlock [mailto:[EMAIL PROTECTED] > Sent: 07 January 2008 08:53 > To: [EMAIL PROTECTED] > Subject: Is the

Re: [T5] 5.0.7 - Help with log4j.properties file

2008-01-08 Thread Daniel Jue
I like to make mine static in the non-tapestry pages: private static Logger logger = Logger.getLogger(DAOUtil.class); Perhaps this is a good time to learn how I can use Tapestry IOC for the non Tapestry portion of my web app? That would be pretty cool. Here is an excerpt from my log4j.pr

Re: T5: Multiple clicks causing NPE

2008-01-08 Thread Daniel Jue
This is great! We should all be stress testing the framework to reveal these kinds of problems. Easier to fix now than later! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [T5] 5.0.7 - Help with log4j.properties file

2008-01-08 Thread Daniel Jue
I just realized my non-tapestry pages are using org.apache.log4j.Logger; not slf4j. On Jan 8, 2008 11:32 AM, Daniel Jue <[EMAIL PROTECTED]> wrote: > I like to make mine static in the non-tapestry pages: > > private static Logger logger = Logger.getLogger(DAOUtil.class); &

Re: PrivateAsset example please

2008-01-08 Thread Daniel Jue
It could also be dont this way: http://wiki.apache.org/tapestry/Tapestry5HowToStreamAnExistingBinaryFile On 1/8/08, Igor Drobiazko <[EMAIL PROTECTED]> wrote: > Have a look at HiveMind API. > http://hivemind.apache.org/hivemind1/hivemind/apidocs/org/apache/hivemind/impl/LocationImpl.html > http://h

Re: PrivateAsset example please

2008-01-08 Thread Daniel Jue
um, I meant "done this way" On 1/8/08, Daniel Jue <[EMAIL PROTECTED]> wrote: > It could also be dont this way: > http://wiki.apache.org/tapestry/Tapestry5HowToStreamAnExistingBinaryFile > > On 1/8/08, Igor Drobiazko <[EMAIL PROTECTED]> wrote: > >

Re: T5 : declaration of pages and components packages from a library

2008-01-08 Thread Daniel Jue
I have a few components and pages that I extend, and I put them in a directory called "base", at the same level as the pages and components packages. For instance I have an AbstractReportPage that references Tapestry ASOs, Injects things and Persists things. Then I have a few report page classes

Re: T5: Acegi table name too long for Oracle 9i

2008-01-08 Thread Daniel Jue
This seems more like Hibernate's problem. I'm not defending 9i's failboating in character limits. (What is this, 1994?) I haven't played with this module, but perhaps you can specify the name of the table in an annotation (if you are using Hibernate Annotations) or in an XML file? Just specify a

T5.0.8-Snapshot Proper way to use LinkImpl

2008-01-11 Thread Daniel Jue
In 5.0.7 (and previously), I used this code: private Link getLink() { logger.info("request.getContextPath() " + request.getContextPath()); Link link = new LinkImpl(response, request.getContextPath(), Constants.J_ACEGI_SECURITY_CHECK); link.

Re: T5: Packaging 3rd Party Javascript Libraries

2008-01-11 Thread Daniel Jue
What about components that use different versions of a similarly named js, or two different components that use a similarly named, but entirely different js file? (i.e. Tree.js) Or what if my version of a component uses a tweaked version of ExtJs? Is there a way (or a need) to have namespaces for

T5 naming and case peculiarities

2008-01-11 Thread Daniel Jue
I wanted to throw together a list of naming peculiarities (I hesitate to call them pitfalls), to put on the wiki. Some are documented on the API website, some of these are mailing list documented, some are only documented if you look into the code. Use of underscore prefixes for fields, but not in

Re: T5.0.8: Too much space being removed from rendered file

2008-01-11 Thread Daniel Jue
Maybe \s+ should be replaced \s Just to be sure. On Jan 11, 2008 4:39 PM, Josh Canfield <[EMAIL PROTECTED]> wrote: > I was playing around with the 5.0.8 snapshot and it looks like an effort has > been made to compact the html. The problem is that it's a little > over-zealous about the job and s

Re: [T5] [ANN] - Tapestry + Spring + Acegi and now + Apache Derby DataBase

2008-01-16 Thread Daniel Jue
Nice! I really like working with Derby. If I could run it as a service here (so that it stays up beyond tomcat restarts), I would. BTW it works fine with Hibernate 3.3.2+ as far as I noticed. On Jan 16, 2008 8:56 AM, Mohammad Shamsi <[EMAIL PROTECTED]> wrote: > Hi all, > > New release of phone b

Re: T5: Autocomplete not working in form in block in zone

2008-01-17 Thread Daniel Jue
I am just starting with Zones, but is Zone support for forms working at all? I seem to recall on the nightly docs that form support is not working yet. On Jan 17, 2008 1:13 PM, Bill Holloway <[EMAIL PROTECTED]> wrote: > Before entering a JIRA, wanted to hit the list. Didn't see this in search. >

Re: [T5] Choosing components at runtime

2008-01-18 Thread Daniel Jue
Seems like it's back to the static structure, dynamic content (the mantra of Tapestry). So yes, one way people are using is to have all the possible components injected in the parent (page/component) and then the desired component is chosen later using logic you code. I have one page that returns

Re: T5 Proposal: Provide a Mechanism to Force Cache Flushing

2008-01-18 Thread Daniel Jue
plate parse and be able to catch an exception if there's an error. > > in fact today I was hammering out ideas for the "svn-like" versioning/ > staging stuff. > > -mike > > > > > On Jan 18, 2008, at 8:03 PM, Daniel Jue wrote: > > > dangerou

Re: T5 Proposal: Provide a Mechanism to Force Cache Flushing

2008-01-18 Thread Daniel Jue
dangerous ideas This could be an interesting way of running an application straight from a DB backend, where the DB can act as a versioning system if needed. A new updated class or template is uploaded to the DB, and the flushCache() causes the CTS service to pick up the newest template versio

Re: Tapestry 5 book

2008-01-18 Thread Daniel Jue
I don't think it will, since we don't even have form support under zones yet. If there is anything, it would be the autocomplete component. On Jan 18, 2008 10:15 AM, Mahen Perera <[EMAIL PROTECTED]> wrote: > Hi all, > > > > Does anyone know the contents of the Tapestry 5 book. Does it include T5

Re: Tapestry 5 error page detection

2008-01-23 Thread Daniel Jue
Isn't T5 acting as a filter? So if Tomcat/etc hands control to T5 to find the correct resource/page, T5 has the opportunity to handle things like error messages. Is it out of the question for Tapestry to provide base error pages that we can override, or configure Tapestry to pass errors back to t

Re: T5: Eclipse unhappy with TML file that has DOCTYPE

2008-01-26 Thread Daniel Jue
I'm using this, but I don't have the line at the top Re: When T5 will be released?
"Stability" is relative. T5 in it's more recent releases 5.0.5+ has shown to be very stable. Probably more stable than other OS projects out there. I am also using it in production. On Jan 28, 2008 9:06 AM, HHB <[EMAIL PROTECTED]> wrote: > > When we will get the stable and final release? > > >

Re: T5: Eclipse unhappy with TML file that has DOCTYPE

For web development in Eclipse, you're going to want the WST or WTP bundled releases. I can't keep up with all the delivery modes. There are also release bundles called Callisto/Europa. Try this: http://www.eclipse.org/projects/listofprojects.php Get WTP, if you want to use Eclipse. Dan On Jan

Re: [T4] -> [T5] Migration Experiences

Here are some peripheral tips. Subversion (SVN) One thing I that I almost forgot is that you can rename files in svn, in a way that you keep the history stored with the old file name. I only use SVN through Eclipse, so that meant going to "SVN Repository Exploring" and renaming files there. Now y

T5.0.10 Having trouble with encodeContext(TapestryInternalUtils.java:519)

I have a component that that is based on the DHTML tree component Erik made on the wiki. I've had it working for several months, and recently I found I needed to move this component to it's own project. So now it is used as a component library instead of being within the application that uses it.

Re: T5.0.10 Having trouble with encodeContext(TapestryInternalUtils.java:519)

I found the error. The root of my tree had a blank string "" for the identifier, which is used in the context. I guess this had never caused an error before because there is new error checking going on. So really I should have had an if/then in the tml that checked whether the current tree node

Re: [T5] Why can't i directly access attributes from my superclass?

Don't worry, you're not the only one who encountered this problem the hard way. ;-) Time to add this to the wiki, since Early T5 adopters will likely run into this. http://wiki.apache.org/tapestry/Tapestry5Caveats On Jan 30, 2008 12:27 PM, Marcelo Lotif <[EMAIL PROTECTED]> wrote: > I'm using 5.

Re: Improving Component Reference

Great Job!

Re: [Hint] Pages in subpackages not loaded, if page and subpackage have the same name

How about a flag in the app module to just turn off the friendly page renaming altogether? Then if someone wants to have a page structure like report/status report/reportstatus report/statusreport report/statusreport1 They can all resolve to unique pages. For now, I'll add the contents of my ol

Re: T5.0.11-SNAPSHOT - tapestry-hibernate out of date

Thanks Howard. I am experiencing this problem as well. On Mon, Feb 25, 2008 at 12:01 PM, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > Typical Maven bullshit. Some of their plugins have broken and it's > screwing up the nightly build. I'll see what I can do but don't have > an ETA. > > > >

Re: T5.0.11-SNAPSHOT - tapestry-hibernate out of date

the meantime, I downloaded the source and deployed to our internal maven > > repository. > > > > > > > > On 25/02/2008, Daniel Jue <[EMAIL PROTECTED]> wrote: > > > > > > Thanks Howard. I am experiencing this problem as well

Re: Tapestry at my company

I honestly don't know much about Apache Wicket, except that there is a Wicket user who likes to spread lies, misinformation and FUD on the Tapestry Users Group because he feels it is the necessary way to promote Wicket over Tapestry. He is known by many names, such as Emmanuel Sowah, Francis Amanfo

Re: Make Tapestry a "full" web framework?

iting adapters than writing a whole security framework. Daniel Jue > > > > But mostly I love the premises. In a "real web framework" security is > > "built in" and no configuration is even necessary. Bullcrap. Every > > security system needs config

T5 Reasons for Using Tapestry / Comparison

I've made the stub page, and I've tried to keep it marketing-free and of course honest. Smart project managers are going to ask when you _would not_ want to use a particular framework, and potential users should be able to get that kind of information from us easily. Those of you with experience

Re: T5 Reasons for Using Tapestry / Comparison

) > > This is simply not true. It is possible to use Tap 5 without Maven at > all. In fact, I'm running a major intranet application in production > (50 concurrent users on avg) that is actively developed and > maintained. > > The Maven restriction should be removed, because

Re: T5: OpenQA Maven repository location changed

Just noticed that too... Here are the 3 new repos: OpenQA_Release OpenQA Release Repository http://archiva.openqa.org/repository/releases/ OpenQA_Snap

T5 Override/Replace DefaultHibernateConfigurer

Has anyone else tried replacing the DefaultHibernateConfigurer? I can add another configurator in my app module like this: public static void contributeHibernateSessionSource( OrderedConfiguration config, ClassNameLocator classNameLocator,

Re: Replace item in OrderedConfiguration

Sounds the same as my issue with replacing the "Default" hibernate config, which is stored in a OrderedConfiguration list. (I ended up just putting a minimal dummy hibernate.cfg.xml in the path, and then the configuration I made replaces the entire config since it's loaded after the "Default". Can

OT: Hibernate Annotations + maven pom

Just a tip: Upgrading from Hibernate Annotations 3.3.0.ga? The "ga" is now "GA", or at least it is on IBiblio. org.hibernate hibernate-annotations 3.3.1.GA

Re: Layout Attributes Shared

I take it you are not using @Persist("flash") ? http://tapestry.apache.org/tapestry5/tapestry-core/guide/persist.html On Thu, May 22, 2008 at 6:33 PM, zack1403 <[EMAIL PROTECTED]> wrote: > > Hello all, > > I have a layout component with a List full of my own message objects as an > attribute. F

Re: Contributing to the BeanModel

I am a sole developer on my project, and I am also using Fernando's approach. The "form beans" help solve order of data entry and other dependencies that I just wouldn't want to encode in the persistent model. In addition, I've found these "form beans" are a great way to insert hard coded data an

Re: Newbie

Dear Kok Menno, Tapestry 6 is perfectly compatible with Tapestry 5, I am using it now. It's just one class file right now, but I like to imagine that it's adding heuristic artificial intelligence to my T5 application. It makes error 403 pages say "I'm sorry Daniel, I can't let you do that." You

Re: Migration of T4 to T5

I don't think any tools are being created to do this. --However--, there has been a recent change in T5 which should allow you to run T4 and T5 codebases together, so you can migrate incrementally. I am not sure if anyone is taking advantage of this yet--It should be in Tapestry 5.0.12. It was d

Drill down on a single page

Hello, I am trying to write a simple menu screen, with main menu items and one list of sub menu items for each main menu item. I am duplicating the look and feel of an existing system, where the main and sub menus are on the same screen, but in different tables. Right now I have a MainMenuComp

Re: Poll: T4 Development Environment

I'm very new to Tapestry too. Currently using: [Eclipse 3.1.2 with WTP], [Tomcat 5.5], [Tapestry 4], [Spindle 3] + spindle is just for editing/syntax highlighting + code completion, html outlining Tried: [Eclipse WTP 3.1.2], [Subclipse] - I ran into a bug where Eclipse kept

Reading a file for initialization

Hello, If I get some answers to this, I hope it can serve as a simple guide to newbies like myself. I'm not entirely sure of my approach, so feel free to interject your thoughts if you care to enlighten me. I have a large amount of application settings stored in an XML file (so large that I don

Tapestry 4 and BIRT

Anyone using this combination? I am looking for a simple Tap 4 example of how to call a report after clicking a link to it. ( I have very little experience with JSP, which is used in many of the examples. I went straight into using Tapestry 4 from PHP) There is a Tap 3 example here: http://mai

Re: How to be redirected from login form to BasePage?

I recommend the ebook "Enjoying Web Development with Tapestry". I am new to Tapestry and without this book I would not have stayed with it. The logon component you described is in the shopping cart example in chaper 4. BTW the first 4 chapters are free online. On 8/24/06, hv @ Fashion Content

Form action not

Hello, I'm going through the last part in Chapter 10 of Enjoying Web Development with Tapestry (for tap 4). When I put the javascript calling code into a separate component, the form action in the main page is not showing up in the component. It's hard to be more complete and concise than tapestr

Re: Expired Session message

I would also like to see how this is done. Perhaps even with a javascript popup telling the user the session is about to/has expired. I imagine this type of "active checking" could be done through ajax, or through a client side timer, rather than waiting for the user to refresh a page and find ou

Re: Javascript caching problem

Did you turn on caching in Tomcat? -Dorg.apache.tapestry.disable-caching=true On 9/14/06, Peter Dawn <[EMAIL PROTECTED]> wrote: guys, does tap3 have a javascript caching problem. i have begun to notice that my changes dont reflect within my application once i compile it. but if i restart tomcat

Re: Passing on information from one page to another

I have some pages that do exactly what you want. They are for Tapestry 4. Imports not shown. The edit settings page displays a user setting in a textbox that was stored in a user object. When you save the form, it takes the value in the text box (may have changed) and stores it back in the user

Re: Very strange performance problem

Are you watching the memory and cpu usage of javaw.exe? My instinct says you're creating objects without destroying them, or there is a inf loop somewhere (or both). Dan On 9/19/06, Rui Pacheco <[EMAIL PROTECTED]> wrote: Hi all I have a problem with my Tapestry application. Its finished and i

Re: Restart tomcat from within tapestry

That would be nice to do if possible, although it would be a huge security risk. I would like it since at the moment I don't have service restart privileges on some servers. =) On a related note, I've been battling jar locking problems when hot deploying my web app on Tomcat. The AntiJARLocking

What does your project directory structure look like?

Hi, I'm relatively new to Tap, and I am starting with Tap 4 and Eclipse. I've been using the directory structures as seen in Kent Tong's book. I also noticed the Tapestry examples (vlib and workbench) have html files that live in the root of the application, instead of in web-inf. Is this a stand

Re: Restart tomcat from within tapestry

Windows, with tomcat installed as a service (And that service probably runs as SYSTEM)? H. You could do it with pstools from Sysinternals.com. You could also probably do it from a net command http://technet2.microsoft.com/WindowsServer/en/library/03928250-2796-4253-8fb1-b25329ddf35f1033.mspx

Re: Tomcat restart through tapestry

So you need to restart the service from the app, not just stop it. I would think since the jvm Tomcat uses would disappear for a splits second you would need to hand off control to a something non-java, like a wsh so it can start the service afterwards. Unless there is a direct command you can g

Listing Current User Sessions

Hello, Does anyone have an example of listing current user sessions on a page? From the administrative pages of my app, I'd like to see who's logged into the app at the time. I guess it's almost the same functionality as google talk in gmail, but I don't necessarily need to send messages at the

Tapestry JSMenu dtd location

Hi, I am using the xml version of tapestry-jsmenu, and every once in a while I'll get a connection timeout error while the menu's page is being loaded. The stack trace I get points to js menu, xerces and some java.net stuff. If I try again in a couple minutes it works again. I am wondering if i

Re: Tapestry JSMenu dtd location

rceforge are out of breath frequently. Just make available a copy of the dtd on your intranet or on your server's filesystem and replace the sourceforge-dtd in the xml by your local url. You could also copy the content of the dtd directly into the header of your XML. Burkhard Daniel Jue wro

Re: [OT] your tomcat config for you tapestry apps

We are still in the development stages, but we'll be running Tomcat 5.5.17 behind IIS and using the isapi redirector. Single JVM, with default memory settings right now. Since our Tapestry pages look like standard html (i.e. they don't end in .jsp), and since our IIS instance is shared with othe

Calling setNextPage() on another pages's component

Here is my situation: I have a page that is only viewable if the user is logged in, called SecuredPage. If the user clicks a link to get to that page, the page protects itself with pageValidate. That is, if the user is not logged in, pageValidate will set up a page callback variable in the Logi

Complex Bindings with Contrib Table

I have a POJO that has a Map object in it. Inside the map are a bunch of properties I'd like to display, which are strings and ints. What I am trying to get around is having to construct getters and setters for all the properties, but I still want to use the Contrib Table. (the quantity and nam

Re: Complex Bindings with Contrib Table

Dom, This is working great! Following your example helped me to better understand the table component too. Specifically, it never occurred to me that I could generate the string for the table columns in the class file like this: public String getTableColumns() { //Column id:Column Title:

Re: Help, robots are attacking my listeners!

some robots.txt magic? On 10/20/06, spamsucks <[EMAIL PROTECTED]> wrote: hi everybody, Sorry for the title, but that's what is happening. I have a very high traffic (very public) site that now is using ajax/tapestry for some functionality. Because we are being constantly crawled by bots, my li

Re: links in a table

I recently found a solution due to some help on this mailing list. Here's what we came up with. It displays a table of people, and the extent of people details are not known until runtime (i.e. should we display the first name, last name, email, etc) In the page file:

Re: links in a table

ublic Abstract Class DataModelBaseClass { public String GetStringForContribTableColNames(); public Object GetData(String ColName); } I am out of coffee, so I'm going home now. Good luck! Dan On 10/31/06, ra <[EMAIL PROTECTED]> wrote: Daniel Jue wrote: > > I recently found a

Re: links in a table

yday. Dan On 10/31/06, ra <[EMAIL PROTECTED]> wrote: Ok. and how can I construct the url to a page ? The page name is known. Sorry I'm a novice Regards, Arek andyhot wrote: > > ok, so generate the String returned by getTableColumns() > at runtime... > > > >

Simple table with SimpleSqlTableDataSource

Hi, I want to display the contents of a JDBC ResultSet with Tapestry. The most obvious examples would be to use a For to iterate over a Collection() type object. I'd rather not have to dump the result set into one large object like a List(), since it just seems inefficient, although I _would_ li

Re: playing movie (.mpeg) in tapestry app ?

AFAIK, this has nothing to do with Tapestry. It has to do with embedding the link to the video in plain old html. For instance, you could just use the HTML embed tags in a Tapestry Hello World program. Now if you want to store things in the WEB-INF directory, you might have to define the file as

Re: Jesse, Howard has removed your comment.[OT]

Can't we all just get along? We should just blatantly pillage any unique/better aspects of Wicket, and code name the next release Wickestryor Tappet. Borg style FTW! And it will come with a bundled Vimacs editor component you can embed in your app. Sorry, I am full of coffee. On 12/13/06,

org.apache.xalan.processor.TransformerFactoryImpl not found tapestry

Hi, I am using Tapestry 4.0.2, Tomcat 5.5.17, starting Tomcat server via Eclipse. I'm getting an error in the console when I add the Contrib:Timeout component to a page. http://tapestry.apache.org/tapestry4/tapestry-contrib/ComponentReference/Timeout.html First I'll give the setup and the error t

Re: Problem implementing countdown timer

Daniel, As an avid eBay user, I've been eagerly awaiting a feature like this! Now everyone can be a sniper. =) Now we just need some suspense music that streams in the background... Dan On 12/18/06, Leffel, Daniel <[EMAIL PROTECTED]> wrote: I have a really simple app that I'm trying to build.

Re: Can you comment on this?

Well, obviously emacs is better. On 12/21/06, Martin Strand <[EMAIL PROTECTED]> wrote: I'm still troubled by the fact that nobody has come up with an answer to this: Is vi better than emacs or is it the other way around? Martin -

Re: Sortable tables?

Contrib:table On 12/28/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I do vaguely remember having clickable table headers so you could sort by that column in Tapestry 3.. Can anyone point me to going about this in Tap 4.1? Even just a few breadcrumbs... In the documentation I don't see any

Using a CachedRowSet to supply data to a table

Hello list, I am trying to use a CachedRowSet to supply data to a table. I implemented a CachedRowSetIterator class, but it doesn't seem to play well with the Contrib:Table. (I am using Tap 4.0.2) I am also Persisting the CachedRowSet in my page using this notation: @Persist("session") public

Re: ANN: Enjoying Web Development with Tapestry updated for T4.1 (with AJAX)

Any discounts for those who ordered the online version about 6 months ago? About how many pages are dedicated to using AJAX with Tapestry? Daniel Jue On 12/30/06, Kent Tong <[EMAIL PROTECTED]> wrote: Hi, I've updated my book for T4.1 with a new chapter on AJAX. The first four c

Re: [T5]Global object?

Try using a public class with static fields and methods. This is best for things that can be recreated programmatically, like a hardcoded list of months. Just remember that changes you make will disappear when you restart your app container, unless you migrate the data to a more persistant stora

Re: Measuring time spent on site using tapestry

You could do it using a timestamp in an ASO that follows a user. Similar to having a last-logged-in timestamp. ASO's that get logged out manually (user initiated) can use logout_time - last_start_time ASO's that get logged out automatically (via timeout) can use logout_time - timeout_length -last

Re: T5 Border Component

Hi, the "border" component may not exist, but now you can use any component as the "wrapper" or border for another page. Also, you can have borders around your components too! In the first line of the html where you have your html and xsd declaration, try this: http://tapestry.apache.org/schema

Re: T5: Redirecting to out-of-tapestry page

Can you share your implementation? Is there a reason you couldn't return a link as used on the wiki's Acegi tutorial? http://wiki.apache.org/tapestry/Tapestry5LinkingToNonTapestryURIs On 7/24/07, Bill Holloway <[EMAIL PROTECTED]> wrote: Got it going with my own implementation of Link. bill

Re: [T5] Security of files in the classpath

Thiago, my apologies. You are correct. I would think this is big a problem if you can't hide important files from users! Dan On 7/26/07, Thiago H de Paula Figueiredo <[EMAIL PROTECTED]> wrote: On Thu, 26 Jul 2007 16:46:37 -0300, Daniel Jue <[EMAIL PROTECTED]> wrote: >

Re: [T5] Security of files in the classpath

Hi, Just don't put configuration resources there. Here's what I use (since I wrote it up heheh): http://wiki.apache.org/tapestry/Tapestry5WhereToStoreConfigurationResources http://wiki.apache.org/tapestry/Tapestry5WhereToStoreExternalResources On 7/26/07, Thiago H de Paula Figueiredo <[EM

Re: Is T5.0.6 in progress

Was there something in particular you were hoping to see committed? Or are you asking such a question just to entertain us? On 7/26/07, Massimo Lusetti <[EMAIL PROTECTED]> wrote: On 7/26/07, Allen Guo <[EMAIL PROTECTED]> wrote: > Recently it seems the T5 trunk haven't any code update. > Is T5 d

Re: [T5] Security of files in the classpath

> I have just tried to post but Apache's JIRA threw a NullPointerException . > . . That made me laugh. It seems previous versions had problems with information hiding as well: https://issues.apache.org/jira/browse/TAPESTRY-281 https://issues.apache.org/jira/browse/TAPESTRY-1175 Reminds me of the

T5 Converting a T4 table to T5 grid

I am converting some T4 code into T5. Maybe someone can point out the best way of doing this, while I contemplate it. In T4, there was a column definition string that you could pass to the contrib:table component. It would define the order and names of the columns. Since the number/type of column

Re: T5 Converting a T4 table to T5 grid

myrow.get("foo"); On 7/27/07, Daniel Jue <[EMAIL PROTECTED]> wrote: > I am converting some T4 code into T5. > Maybe someone can point out the best way of doing this, while I contemplate > it. > > In T4, there was a column definition string that you could pass to

Re: T5: Grid component - available properties

Joost, thanks for the code snippet --I think it got me on the right track. Can I define this snippet in Java code somehow? ${myRow.yourUnknowBeanProperty.somethingPresentable} I want tapestry to automatically know how to display the property. How can I provide that knowledge? I hope this

Re: [T5] Grid totals

Joost, How did you add a row for the totals while keeping that row from being sortable? I don't want to add it outside of the grid's table structure, because I want the columns to align. I did this in T4 using code like this:

Re: a bit of history

I remember some tidbit saying Tapestry development started before Struts, not that it matters much beyond trivia. On 8/1/07, Nick Westgate <[EMAIL PROTECTED]> wrote: > Not quite sure what you're asking, but if it's history you want ... > > You might have first heard about it at OnJava. Earliest

T5 Strategy for redirecting due to any error

or strategies about this? Daniel Jue - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

T5 CSS positioning of errors.

Not sure why this is here in the default CSS: div.t-error li { margin-left: -20px; } For me (in Firefox) it makes my form validation errors appear outside the pretty red box they come in. I overrode it in my own CSS, to be div.t-error li { margin-left: 20px; } Now my disc (the

Re: T5 Strategy for redirecting due to any error

page lifecycle without Declerative or Runtime Exceptions. > > Cheers, > Joost > > -Original Message- > From: Daniel Jue [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 02, 2007 2:56 AM > To: Tapestry users > Subject: T5 Strategy for redirecting due to any error > > H

Re: T5 Strategy for redirecting due to any error

Exception: > http://wiki.apache.org/tapestry/Tapestry5RedirectException > > Cheers, > Nick. > > > Daniel Jue wrote: > > Ah! > > > > CleanupRender is a place I had not thought of! As long as the > > "errors" wouldn't cause actual runtime excepti

Re: T% : cant extend Page classes

Or if you are making your own "base page" or "base component" class, it goes in the /base directory instead of /pages or /components i.e. for my reports I have /base/reports/AbstractReportPage.java and my implementations of it go in /pages/../ReportABC.java I have my user's ASO and some Injec

Re: T5 Best way to omit part of result page in output

Hi, I would try blocks of components at the end of your template, and a delegate component. The delegate refers to a method in your page or component class the template it for. It returns an Object, which is actually one of the component blocks. It can also return null and nothing will be rendere

Re: [T5] documentation and reference for templates

http://tapestry.apache.org/tapestry5/tapestry-core/index.html http://wiki.apache.org/tapestry/Tapestry5HowTos Almost every tag is where componentName is part of the T5 core library, or a component you've made. This may be as close as you can get to what you requested: http://tapestry.apache.or

Re: [T5] Render ExceptionReport for emailing from custom ExceptionReport

I would like to know as well. I believe someone else asked about generating html email content using Tapestry 5, and I think the response was that it's just not possible at the moment. HTML email generation would be nice! On 8/11/07, Jonathan Barker <[EMAIL PROTECTED]> wrote: > Hi all, > > > >

Re: You have clicked on a stale link Error

Ajit, You would have to actively store your trail, like breadcrumbs in a data structure that is still available even after the user has timed out. You might want to persist it to a database, instead of keeping track of it in memory. Then after login success, the login page/component would look u

Re: [T5] Grid totals

ow, cellContent, span, > className); > } > }//close block when table element is found > } > > private void writeFooterCell(Element footerRow, String content, int span, > String className){ > if(content!=null){//if null, no open cell needs to b

T5 Best way to alter core components?

I am trying to find the best approach to making changes to the existing Tapestry 5 core components. This is what I've thought of so far. Please add suggestions or correct me! Very Small Changes: Changing the look of a component: 1. Override styles with your own CSS file, no changes made to actua

  1   2   3   4   5   >