Re: Mouse tracking with Tapestry

2017-04-11 Thread Daniel Jue
Glad to hear you got everything working! On Tue, Apr 11, 2017 at 5:09 AM, Phyambre wrote: > Ok, > > So finally I could transform my JS libraries into modules and now > everything is super-modular. > > I also replaced mousemove by mouseover because it is less demanding. > >

Re: Mouse tracking with Tapestry

2017-04-07 Thread Daniel Jue
Hi, I'm not sure this is what you need, but here is a library we used during a DARPA program to collect UI statistics including hovering, etc: https://github.com/draperlaboratory/User-ALE On the browser side it's fire and forget, and there is a separate server set up to collect the stats

Module-auto-loading not working when Manifest.mf line is wrapped

2015-05-12 Thread Daniel Jue
Hi, I recently ran into this problem that causes my module to not auto-load, and in fact prevents the Tomcat server from starting my T5 war file. The error starts with Exception loading module(s) from manifest jar:file:/path-to-jar-file-in-web-inf-lib/MANIFEST.MF: Failure loading Tapestry IoC

T5.3.7 + Tynamo Security - User ASO creation after authc/authz

2015-04-29 Thread Daniel Jue
Hi, I'm getting hung up on something that's probably really simple to fix. I have a Tomcat+LDAP configuration that is doing Authc and Authz for me--All I have to do is look in the request header to see the user principal and log the dude/dudette in. So I'm using the built in factory.authc filter

Re: AW: Splitting a tapestry web app into modules

2015-04-22 Thread Daniel Jue
I make extensive use of multi maven modules (even a war overlay!) in my project. Maybe browsing through the code can help you. Since we are making a reusable core set of modules (under graphene-parent), each customer implementation gets it's own separate maven project that uses our stuff as

Custom complex grid / search results page

2015-03-09 Thread Daniel Jue
Hi, I have a reusable war overlay project where the omnipresent search bar component is in a layout and search results page is defined in a core library (These are hooked together via @InjectPage in the search bar component so i can set the page's parameters and then send the user there) The

Re: How to use font awesome with Tapestry

2014-12-19 Thread Daniel Jue
files example fontawesome-webfont.eot Within font-awesome.min.css I see this url '../fonts/fontawesome-webfont.eot?v=4.2.0' I am seeing fonts added correctly in the app container. Any thoughts in comparison to your setup what I may be missing? On Fri, Dec 19, 2014 at 1:21 AM, Daniel Jue teamp

Re: How to use font awesome with Tapestry

2014-12-19 Thread Daniel Jue
Forgot to mention, I am using T5.3.7 On Fri, Dec 19, 2014 at 2:59 AM, Daniel Jue teamp...@gmail.com wrote: Hi George, I'm not really sure what the .eot file does. My assets are under src/main/webapp in my maven module: i.e. https://github.com/Sotera/graphene/tree/master/graphene-parent

Re: How to use font awesome with Tapestry

2014-12-18 Thread Daniel Jue
Just to be sure, are you seeing the file correctly in the deployment directory of your application container? I am using fontawesome as well in my T5 app, and, well, it's awesome! Never ran into issues with that file though. Dan On Fri, Dec 19, 2014 at 12:52 AM, George Christman

Re: Stacktrace when on Tomcat server

2014-11-14 Thread Daniel Jue
Yes, I'm guessing it's something malformed in your page template. On Fri, Nov 14, 2014 at 2:03 PM, Andreas Ernst a...@ae-online.de wrote: Am 14.11.14 um 13:44 schrieb Nathan Quirynen: Maybe this helps... it's not much more than what I originally sent, but there is no more... This is all I

Re: [OT] Any static code analysis tool?

2014-10-09 Thread Daniel Jue
I like Findbugs, I use it on every Java project. It has IDE integration as well as Bamboo. https://marketplace.atlassian.com/plugins/com.atlassian.bamboo.plugins.findbugs On Thu, Oct 9, 2014 at 11:49 AM, Muhammad Gelbana m.gelb...@gmail.com wrote: I would use Google's

Re: Splitting Tapestry IOC out as a separate project

2014-10-02 Thread Daniel Jue
Try Tynamo Resteasy! I think you'll like it. We use it to support a extjs front end we have (served in its raw form (html and js) as part of a Tapestry web application. We jave tapestry pages working right alongside the raw html/js page. Even better is that our rest resources use the same

Re: Getting BeanDisplay to skip empty fields altogether

2014-09-24 Thread Daniel Jue
Thanks Lance, I think on the surface my problem seems like the one you gave the answer for, but in my case it's different. I don't know which fields I'll need to exclude until I know whether the value is null or empty-string for the instance of the bean. For example, one of my classes is a POJO

Re: Getting BeanDisplay to skip empty fields altogether

2014-09-24 Thread Daniel Jue
Thiago, that was perfect! I had in-fact gone down the reflection route and was getting into trouble since the propertyNames aren't really the method or field names. I forgot about using conduits manually that way! Your code works as is, but I still stuck it in a custom MeaningfulBeanDisplay

Getting BeanDisplay to skip empty fields altogether

2014-09-23 Thread Daniel Jue
Hey list! I have several dozen code-generated beans that I'd like to display as bean models. Problem is, many of the beans' fields are either null or empty string, so I don't want their dt labels to even show up, much less the NotEmpty mixin putting a nbsp; The idea is to skip rendering any

Re: Tynamo-Conversations + Tapestry-Atmosphere

2014-09-05 Thread Daniel Jue
Lance, I'm also starting to use your work in my application. I think it's important to note that your code on github works with atmosphere-runtime-native 2.1.0-RC2 from Dec 2013. Later versions of Atmosphere seem to need different dependencies included, and also the contribute method fails

Re: Tapestry in distributed environment

2014-08-29 Thread Daniel Jue
Another good place to look is in any of the unit or integration tests for frameworks or apps that use Tapestry. You often want to start up a registry there so you can import modules to wire up DAOs, services, etc. On Fri, Aug 29, 2014 at 8:50 AM, Thiago H de Paula Figueiredo thiag...@gmail.com

Re: Tapestry in distributed environment

2014-08-29 Thread Daniel Jue
For instance, in my project, see this BeforeSuite annotated method: https://github.com/Sotera/graphene/blob/master/graphene-parent/graphene-util/src/test/java/graphene/util/fs/PropertiesFileSymbolProviderTest.java On Fri, Aug 29, 2014 at 10:24 AM, Daniel Jue teamp...@gmail.com wrote: Another

Re: [T5.4] split Tapestry application into separate modules

2014-07-10 Thread Daniel Jue
Yes, it could be an issue using an external maven. I let Eclipse handle the build while I'm developing, and I don't do a full external maven rebuild unless I need to deploy war files. Sometimes it helps to know the art of the possible, and myself and my team have it working this way. :-)

Re: [T5.4] split Tapestry application into separate modules

2014-07-09 Thread Daniel Jue
I think in T 5.4 @Submodule has been deprecated in favor of @ImportModule On Wed, Jul 9, 2014 at 6:05 PM, Thiago H de Paula Figueiredo thiag...@gmail.com wrote: On Wed, 09 Jul 2014 17:38:04 -0300, Ilya Obshadko ilya.obsha...@gmail.com wrote: - component that was moved into separate module

Re: Modules Executing in the Wrong Order? Service Bindings Not Around When Expected?

2014-06-25 Thread Daniel Jue
My intuition says the same thing. Try forcing a mvn clean or the equivalent. On Jun 25, 2014 7:57 AM, Thiago H de Paula Figueiredo thiag...@gmail.com wrote: On Wed, 25 Jun 2014 08:46:45 -0300, Peter Hvass pe...@theru.in wrote: Digging further I discovered RegistryBuilder and output during

Re: Preload All Pages On Startup

2014-06-25 Thread Daniel Jue
Just wanted to comment that I do the same thing at startup and look at annotations attached to the pages, and construct menu items for the pages which have the right kind of annotation. The annotation I made also has a parameter fir the type of page, so the menu items get a corresponding icon.

Re: T5.3.7+Tynamo Security 5.1 SavedRequest redirect issues

2014-06-24 Thread Daniel Jue
, Jun 24, 2014 at 12:48 PM, Daniel Jue teamp...@gmail.com wrote: Hi, I'm having trouble with the feature for redirecting to the previous request after a successful form login. I've read the thread and poked around in the 5.1 and later source code for the default Tynamo login component, and my

Re: Angular/TapestryJS

2014-06-08 Thread Daniel Jue
Nice Francois! Is there a document or tutorial that goes with the files named Step7 or 8? Thanks for the demo. On Sat, Jun 7, 2014 at 11:39 AM, françois facon fra.fa...@gmail.com wrote: Hello all, Here is a link to a AngularJs Page served by Tapestry5.3.7.

Re: Does Tapestry and Tomcat work together?

2014-06-06 Thread Daniel Jue
Hi Jeremias, I'm sorry about the difficulties you're having. It seems to me the real issue is dependency resolution, and then making sure those dependencies get seen by Tomcat. Neither of those are a Tapestry problem -- it's just a task inherent in all Maven or Gradle based projects. Tapestry,

Re: Possible to use a tapestry application for webservice and web front end development

2014-05-16 Thread Daniel Jue
We are using Tynamo's RESTEasy integration with various js libraries, including ExtJs. We deploy it as a single war, however our build is a bit more complicated since our main codebase is more of a skeleton, and we use War overlays for specific implementations. In the end it's all one war with

Re: Tapestry5 - Weaves 3.0 repository

2014-03-25 Thread Daniel Jue
I had to do something like this recently for a piece of Neo4J that had no repo -- I forked the project I was interested in (and also made my fixes to it) then looked on stack overflow for instructions on creating a maven repo on github. The posts I used to do this:

Re: [tynamo-user] Tynamo goes Github!

2014-03-20 Thread Daniel Jue
Great news! Having the 'brand name' of github has also quelled some fears about code adoption among my software engineers who are less familiar with open source repos. BTW, our Graphene software library is making use of Tynamo, even more so once we switch to 5.4. Thanks Kalle!! On Thu, Mar

Re: Show and tell / New 5.4 app live.

2014-03-19 Thread Daniel Jue
I also checked out the link when you sent it, nice job! I found myself imagining how you laid out the components. =) On Wed, Mar 19, 2014 at 10:46 PM, Chris Mylonas ch...@opencsta.org wrote: mate, she's a super fast website and i've gotta say looks better than the previous version. i

Re: Custom symbol in AppModule fetched from another service

2014-03-04 Thread Daniel Jue
First, I'd make your own enum so you don't have misspellings of the keys. public enum MyEnum{ MYKEY } Then: contributeApplicationDefaults(MyEnum.MYKEY,) Then you can do this elsewhere: @Symbol(MyEnum.MYKEY) private boolean theKey; On Tue, Mar 4, 2014 at 5:17 AM,

Re: Tapestry App Not booting right - dependency tree help

2014-03-02 Thread Daniel Jue
I have a spare minute so I'll share: Your intuiition is currently at the same stage as mine. If I come across this error, I would first look for the missing class, then google to see what jars include it. If I don't have that Jar I'll grab the maven dependency tag for that Jar. It can also

Re: Tapestry App Not booting right - dependency tree help

2014-03-02 Thread Daniel Jue
Hi, I hope my choice of words didn't cause some unintentional conclusions. :-) By insidious, I mean the problem was difficult for me to track down--although now that I make use of the Eclipse dependency hierarchy view, I can see which transitive dependencies are overriding each other--so it's

Re: Problem by editing form in loop

2014-03-02 Thread Daniel Jue
gameResult is not being set. So calling gameResult.firstTeamGoals gives you the NPE. On Sun, Mar 2, 2014 at 2:12 PM, Lance Java lance.j...@googlemail.comwrote: I think the error message provided by Tapestry is telling you exactly what you need to know. Have you read it?

Re: Tapestry with Jetty behind https frontend

2014-02-17 Thread Daniel Jue
I don't have the full solution here in front of me, but I know I've done this in the past with the Tapestry Spring Security integration, and I'm sure the Tynamo Shiro integration for T5 also does this. You could snoop around the code in there until someone here gets you an answer that meets your

Specify SymbolProvider at runtime

2014-02-14 Thread Daniel Jue
Hi, I was wondering what is the best way of doing this: From the JVM arguments, I want our developers to specify a location to a properties file, which will be treated as a symbol source. I tried a naive approach and got a recursion error on SymbolSource. In one of my modules I have this:

Re: Specify SymbolProvider at runtime

2014-02-14 Thread Daniel Jue
Thanks Thiago, you are right. I was so caught up in trying to use the Symbols that I forgot the obvious. :-) On Fri, Feb 14, 2014 at 2:38 PM, Thiago H de Paula Figueiredo thiag...@gmail.com wrote: On Fri, 14 Feb 2014 15:24:53 -0200, Daniel Jue teamp...@gmail.com wrote: Hi, I

Re: [ANN] JumpStart Preview: for Tapestry 5.4

2014-01-20 Thread Daniel Jue
Thanks for your efforts Geoff, I'll be using this reference for sure. So much new stuff to catch up on. On Mon, Jan 20, 2014 at 6:19 PM, Geoff Callender geoff.callender.jumpst...@gmail.com wrote: JumpStart 7 Preview 3 is now up. http://jumpstart.doublenegative.com.au/jumpstart7/

Re: Neo4J 2.0 transactions on domain objects with T5.3.x

2014-01-15 Thread Daniel Jue
, 13 Jan 2014 22:20:41 -0200, Daniel Jue teamp...@gmail.com wrote: Thanks Thiago! My pleasure! Now I want to apply it to all my pages and components in my web module using @Match(*). It causes a recursion error since it sees the services in the DAO module which are needed to create

Re: Tapestry 5.4 require.js modules

2014-01-15 Thread Daniel Jue
I don't have input on the question of additional scope, but thanks for letting us know that the upgrade went pretty smoothly-- I'm eager to use 5.4 but I can't change right now. On Mon, Jan 13, 2014 at 3:25 PM, Kristian Marinkovic kristian.marinko...@gmail.com wrote: Hi all, why are

Re: Neo4J 2.0 transactions on domain objects with T5.3.x

2014-01-13 Thread Daniel Jue
* */ @Target({METHOD}) @Retention(RUNTIME) @Documented @UseWith({ COMPONENT, MIXIN, PAGE, SERVICE, BEAN }) public @interface Neo4JTransactional { } On Mon, Jan 13, 2014 at 6:35 AM, Thiago H de Paula Figueiredo thiag...@gmail.com wrote: On Fri, 10 Jan 2014 23:01:50 -0200, Daniel Jue teamp

Neo4J 2.0 transactions on domain objects with T5.3.x

2014-01-10 Thread Daniel Jue
Hello friends, I'm upgrading some code of mine to use Neo4J 2.0, which now requires a transaction on _reads_ as well as writes for anything dealing with Node/Relationships. (It used to be reading didn't require a tx) For those that don't know Neo4J nodes and edges have a MapString,Object

T5 Tynamo RestEasy, discovering all rest resources and paths

2013-10-31 Thread Daniel Jue
Hi, I have a bunch of rest services, across a couple modules. One of the rest services is a meta type of service, where the methods (via parameter-less @Get requests) return things like canonical values/enums used as query values elsewhere in the system. Anyway, some member(s) of our team like

Re: html+js+css resources in a discovered module

2013-09-24 Thread Daniel Jue
drop your $0.02 here! Thanks On Mon, Sep 23, 2013 at 11:17 PM, Daniel Jue teamp...@gmail.com wrote: Hi, I was reading over this older blog link http://blog.tapestry5.de/index.php/2010/01/19/tapestry-ioc-modularization-of-web-applications-without-osgi/ now that I have to architect our app

Re: html+js+css resources in a discovered module

2013-09-24 Thread Daniel Jue
) and a JAR one (without) is that in the WAR project the component library containing your classes is added automatically, while in the JAR you need to do it through MANIFEST.MF entry or @SubModule. On Tue, 24 Sep 2013 00:17:51 -0300, Daniel Jue teamp...@gmail.com wrote: Hi, I was reading

Re: html+js+css resources in a discovered module

2013-09-24 Thread Daniel Jue
suggestions, or has had to do this sort of setup, please, please drop your $0.02 here! Thanks On Mon, Sep 23, 2013 at 11:17 PM, Daniel Jue teamp...@gmail.com wrote: Hi, I was reading over this older blog link http://blog.tapestry5.de/index.php/2010/01/19/tapestry-ioc-modularization-of-web

Re: Testing Tapestry

2013-09-23 Thread Daniel Jue
three or four services to setup it becomes cumbersome. 2013/9/23 Martin Kersten martin.kersten...@gmail.com Thanks daniel. I will check the testify stuff in a real example. 2013/9/23 Daniel Jue teamp...@gmail.com I don't have spare minutes at the moment, I just want to drop

Re: Testing Tapestry

2013-09-23 Thread Daniel Jue
I don't have spare minutes at the moment, I just want to drop these links for you to look at (if you haven't seen them already). Hope it helps. http://blog.tapestry5.de/index.php/2010/11/16/improved-testing-facilities/ and then this one

Re: Testing Tapestry

2013-09-23 Thread Daniel Jue
of the pesti constructor injection. Does anyone knows if the autobuild / build process fails if a property annotated @inject could not be injected? Kind of should be but I am quite not sure... . 2013/9/23 Daniel Jue teamp...@gmail.com You'll probably find better examples online, but in my Test

html+js+css resources in a discovered module

2013-09-23 Thread Daniel Jue
Hi, I was reading over this older blog link http://blog.tapestry5.de/index.php/2010/01/19/tapestry-ioc-modularization-of-web-applications-without-osgi/ now that I have to architect our app to work for other customers. We want to keep the core parts together and refactor out the customer

Re: Loading JSON into a JS var

2013-07-16 Thread Daniel Jue
); }, parameters : { queryParameter1: 'valueOfqueryParameter1', queryParameter2: 'valueOfqueryParameter2', } )}; }); } On Tue, 16 Jul 2013 02:13:51 -0300, Daniel Jue teamp...@gmail.com wrote

Re: Loading JSON into a JS var

2013-07-16 Thread Daniel Jue
2013 02:13:51 -0300, Daniel Jue teamp...@gmail.com wrote: Ugh, still not working for me yet. Once I get it though, things should really get moving. Here's what I have. The intent is a simple event link on a page, that, when click on, performs an ajax call to get a json payload

Re: Loading JSON into a JS var

2013-07-16 Thread Daniel Jue
Jul 2013 14:31:27 -0300, Daniel Jue teamp...@gmail.com wrote: If it's the javascript that's at fault one thing that may be causing it is that I'm using Tapestry5-JQuery, which requires a different syntax than prototype's 'observe' and 'click'. You used Prototype in the code you posted, so I

Loading JSON into a JS var

2013-07-15 Thread Daniel Jue
Hi, I'm getting back into Tapestry development, specifically needing to do some dynamic front end work I haven't attempted before. I have a 3rd party JS library (Infovis) which draws a graph using JSON data. http://philogb.github.io/jit/static/v20/Jit/Examples/ForceDirected/example1.html The

Re: Loading JSON into a JS var

2013-07-15 Thread Daniel Jue
to the fd.loadJSON() method. There's a bunch of other variations on this; for instance, you can create a initializer function (in 5.3) or a module (in 5.4) and pass the JSON object to the initalize function, or the module, via JavaScriptSupport. On Mon, Jul 15, 2013 at 4:21 PM, Daniel Jue teamp

Re: Loading JSON into a JS var

2013-07-15 Thread Daniel Jue
...@gmail.com wrote: EventLink must have its zone parameter set to a zone for it to use ajax. Remember not to use an empty zone(because of a bug in 5.3). If you want to use an empty zone just add nbsp; to it. On 16-Jul-2013, at 6:30 AM, Daniel Jue teamp...@gmail.com wrote: Thanks Taha

Re: Tapestry IOC - Should it have it's own name?

2012-09-12 Thread Daniel Jue
I'd say keep the same name but market the IOC more heavily, with tutorials and demos (a quickstart, perhaps) of it being used in a non web app. (I don't think this is out there, right? If it is, it wasn't in-my-face enough. :-) ) A T5 IOC quickstart might work well with an Apache Shiro

Re: T5.3 application level singleton cache with Hibernate injection

2012-08-09 Thread Daniel Jue
. On Thu, Aug 9, 2012 at 1:05 AM, Kalle Korhonen kalle.o.korho...@gmail.comwrote: On Wed, Aug 8, 2012 at 9:46 PM, Daniel Jue teamp...@gmail.com wrote: Problem: I want to initialize this cache on server startup, before any pages are served, since it can take a few minutes. I want to pass

T5.3 application level singleton cache with Hibernate injection

2012-08-08 Thread Daniel Jue
After a long hiatus from web development, I have a chance to get back into Tapestry for a small project. I kind of need a refresher for an approach I haven't had to do before: Context note: Running T5.3 on Tomcat or Jetty, from latest Tynamo release with Tynamo hibernate/resteasy modules.

Re: Tapestry Spring Security for 5.4-SNAPSHOT

2012-07-27 Thread Daniel Jue
Sure, just don't break it too bad. ;-) I'd like to see your improvements. Make sure your T5.4 Snapshot is up to date. On Fri, Jul 27, 2012 at 6:32 AM, wout86 wouter.amerij...@gmail.com wrote: Hi Daniel, Do you allow others to commit to your fork as well? Otherwise, I'd be interested as I

Tapestry Spring Security for 5.4-SNAPSHOT

2012-07-26 Thread Daniel Jue
I forked lltyk's latest version and made some changes, as I wanted to use T5.4 for a project I am rewriting. Uses Tapestry 5.4-SNAPSHOT Uses Spring 3.1.1-RELEASE Removed most of the deprecation. https://github.com/danieljue/tapestry-spring-security Enjoy. Deprecation I didn't overcome:

Re: Wanted: New title for the Tapestry book

2011-12-05 Thread Daniel Jue
How about naming it after a famous tapestry? I Googled 'famous tapestry' and found this one, and it even has a UNICORN! http://en.wikipedia.org/wiki/The_Lady_and_the_Unicorn On Mon, Dec 5, 2011 at 11:18 AM, Borut Bolcina borut.bolc...@gmail.com wrote: That is funny, with a grain of salt.

Re: [ANNOUNCE] Apache Tapestry 5.3

2011-11-28 Thread Daniel Jue
Congrats Howard! I can't wait to get back into using Tapestry and see all the progress that's been made. On Mon, Nov 28, 2011 at 1:20 PM, Howard Lewis Ship hls...@gmail.com wrote: Great, so use Maven. The quickstart archetype gives you the option. On Mon, Nov 28, 2011 at 10:07 AM, SeleniuM

Re: Should Tapestry phone home?

2010-10-11 Thread Daniel Jue
I don't think this is a good idea. I understand that it would satisfy a lot of curiosity. Not that it could phone home on the networks I deal with. There would have to be value-add for the end user, such as checking for a newer version, etc. Is there precedent for this in other Apache

Re: Import and Export to .xls in Tapestry 5

2010-03-29 Thread Daniel Jue
IMHO, you should really have an intermediate model (with column definitions, and a list of rows containing a list of cells) From there you can pretty much load it into anything (including your Tapestry Grid). You're going to want this when you eventually need cell styles/formatting/borders/etc

Re: Import and Export to .xls in Tapestry 5

2010-03-29 Thread Daniel Jue
Sorry, for importing I would suggest using POI. On Mon, Mar 29, 2010 at 8:40 PM, Daniel Jue teamp...@gmail.com wrote: IMHO, you should really have an intermediate model (with column definitions, and a list of rows containing a list of cells) From there you can pretty much load it into anything

Re: IOC Service Survey

2009-12-02 Thread Daniel Jue
My latest use of IoC was to rewire my DAOs so that they accept a DbConnectionFactory I @Inject in pages. When a DAO method is called with an ASO holding a user's DB Connection info, the injected factory's getConnection() is used. For some factories, getConnection() will create a small connection

Slightly OT: Ad hoc connection pools

2009-10-16 Thread Daniel Jue
Hi all, I'm hoping someone might have a suggestion for a strange challenge. I'm using both T5 and GWT for the app, but I imagine the core solution to be independent of either, although for implementation T5 IOC may be called in. OK here it is: I am working on a web app where the app's server

Re: A survey about redeployment time in the Java EE world

2009-09-24 Thread Daniel Jue
And that is for development, for deployment I have a bigger problem because it is under Tomcat 6 which is behind AJP fronted by MS IIS. And if the application is packaged from maven as a WAR, then all the classes are inside packed in a JAR, which Tomcat extracts in a temporary place and

Re: Please help

2009-09-24 Thread Daniel Jue
I agree, while the trolls on here tend to use a similar technique to bring up moot points (especially things that were answered in the previous few days), we should not jump to conclusions about someone with a genuinely reluctant team. Here is a tip: Have the developers who opposed the use of

Re: How coooooooooool is this !!!

2009-09-24 Thread Daniel Jue
Great to hear about your technological metamorphosis! Let me know when you make a new Mafia Wars type app. =) And don't forget to lock down your app, security-wise. On Thu, Sep 24, 2009 at 4:14 PM, Gunnar Eketrapp gunnar.eketr...@gmail.com wrote: Hi all! I started fresh with T5 about a week

Re: Tapestry 6: Famous last words?

2009-06-26 Thread Daniel Jue
Heh..the first release of Windows NT was v3.1, so I guess there is nothing sacred with version numbers. Not to mention Sun marketing. ;-) I imagine once the paradigms shift enough because of new innovations/evolution of standards, a new product will have to emerge to support it. It just won't

Re: How big is the Tapestry community?

2009-06-06 Thread Daniel Jue
Here is my cup 'o coffee estimate... For people using it professionally, what is their propensity for being on this official mailing list? (It's good that there is only one, and there are not forums dedicated to Tapestry (aside from those that mirror the mailing list)) M = mailing list

Re: t5: printing?

2009-05-21 Thread Daniel Jue
I also like Dynamic Jasper, mostly because I find procedurally generated reports less fragile than using templates.  It does a decent job and gets the info into the user's hands, and is easier than straight Jasper Reports.  Also I use the same algorithm to generate PDF and XLS reports (Dynamic

Re: T5: What is NOT beautiful about Tapestry?

2009-04-29 Thread Daniel Jue
I agree, I think this will be a constructive thread. So things that are not beautiful yet are a lack of tooling, aside from the helpful Loom plugin. I only use eclipse here, so I'm not sure if there are plugins for other IDEs. Sometimes I wish there were more industry type examples out there,

Re: Best practices dev vs. prod configurations?

2009-04-13 Thread Daniel Jue
I was doing this at first, hinging many things on the production mode symbol. But things got hairy and I needed more flexibility. I wanted a central place where settings based on production mode were being decided, and that was taking place either the app module or a child module. Even using a

Re: Core dump when debugging @OnEvent methods on Page (JDK 1.6.0_10, Eclipse 3.3.2)

2009-03-30 Thread Daniel Jue
It's 6 months later and I ran into this problem too. Except that the breakpoint cause the debugger/tomcat seems to fail/stop in _any_ annotated method, even those using @Log. Is there a better solution to this problem than delegating to non annotated methods? Tomcat 6.0.14, 6.0.18 Tapestry

Re: [OT] By boss decided

2009-02-18 Thread Daniel Jue
Then that would imply that at least the RPC side is still in Java, and the developer side source code for the GUI is actually Java. Have you seen that recent article called Competence: Is your boss faking it? http://www.time.com/time/health/article/0,8599,1878358,00.html Not to be harsh on your

Re: How Can I not hardcode value in contributeApplicationDefaults method.

2009-01-28 Thread Daniel Jue
In the case of Tomcat, you can also store these in a Context.xml file, which can be configured differently for each server (including your development machine). The context.xml file can be unique to each Tomcat instance, and live in Tomcat/conf/context.xml or

Re: Tapestry Hibernate configuration

2009-01-26 Thread Daniel Jue
Aside from a purely T5 way of doing it, *You can also look up a JNDI source, configured in your web.xml and in a context.xml, and then have a different context.xml on each server you deploy to. (This is assuming you can use the same dialect and options.) I used to switch back and forth between

Re: [DISCUSS] Should the quickstart archetype include tapestry-hibernate?

2009-01-23 Thread Daniel Jue
I don't think Hibernate should be added in the quickstart. Just having an in-memory DAO is good enough, and a wiki page on adding t5-hibernate to the vanilla (plain) quickstart can be added. On Fri, Jan 23, 2009 at 10:16 AM, Robert, Brice brice.rob...@alliancebernstein.com wrote: -- No --

Re: T5 GWT Integration

2009-01-15 Thread Daniel Jue
it a bash. much appreciated, Peter - Original Message - From: Daniel Jue teamp...@gmail.com To: Tapestry users users@tapestry.apache.org Sent: Wednesday, 31 December, 2008 10:01:13 PM GMT +02:00 Athens, Beirut, Bucharest, Istanbul Subject: T5 GWT Integration Hi all, Happy New Year

Re: dynamic components in page

2009-01-12 Thread Daniel Jue
Hi, Your wording is a little vague. You probably want to use the Block component. For pages from onEvent, they can be anything, and you can return Strings or MyPage.class to get to the new page. For components, you have to list them in the source of your page class and/or page template. When

Re: Keep It Sweet and Simple

2009-01-07 Thread Daniel Jue
Does AppFuse count? On Wed, Jan 7, 2009 at 8:31 AM, Sid Ferreira sid@gmail.com wrote: Hi all!Few days ago I've met Tapestry in wikipedia... After it, Ive joined the #tapestry @ freenode trying to know more about the technology. I've been talking with Fanf about how tapestry works and got

T5 GWT Integration

2008-12-31 Thread Daniel Jue
Component, and works with multiple instances on one page. You can find the wiki article here: http://wiki.apache.org/tapestry/Tapestry5GWTIntegration The source code link is at the top. Regards, Daniel Jue - To unsubscribe, e-mail

Re: Persistance

2008-12-12 Thread Daniel Jue
In the past I manually implemented this behavior by mixing server side and client side persistence. My code-fu was probably not very elegant. In my case, a user could open a report page after filling out a page of variables. These report pages would open in a new browser window/tab. So

Re: AW: AW: Advantages of various .tml storage locations?

2008-12-11 Thread Daniel Jue
+1 to that. I have also been using the src/main/resources dir since cutting my teeth with Maven and T5. The Tapestry related directories there mirror the packages under src/main/java, for both page classes and component classes. In eclipse the src/main/java and src/main/resources are both listed

Re: Global (application state) data

2008-11-24 Thread Daniel Jue
On Mon, Nov 24, 2008 at 1:55 PM, [EMAIL PROTECTED] wrote: What about an IOC singleton service? Would that work? Yes, a singleton should work, and may very well use static modifiers in it's definition. - To unsubscribe, e-mail:

Re: Tapestry 5.0.16 (Release Candidate) now available

2008-11-18 Thread Daniel Jue
Thanks to everyone involved in getting T5 to this point-- To Howard, for having the courage to break with tradition and making T5 radically different; To all the participants on the Tapestry Users list who have helped others, submitted and fix bugs in JIRA. And to all the 3rd party libraries and

Re: T5: @ApplicationState is misleading - voters wanted!

2008-11-05 Thread Daniel Jue
Good Suggestion for ApplicationSessionObject. I usually don't like it when such a commonly used feature is changed this late in the game. My suggestion would be to have the old annotation deprecated for a while, with the new Annotation in place. Furthermore, if a new annotation for Application

Re: Why would you use a web framework?

2008-11-05 Thread Daniel Jue
Also consider the Hit by a bus factor. We recently had this issue come up at my company, although it was a metaphorical bus. Do not expect the people designing your app now to be around in the future or even 6 months from now. So pick something that is maintainable and can be picked up by a

Re: Session bleedings in Tapestry5

2008-10-20 Thread Daniel Jue
I've also never come across this kind of problem. It would be interesting to see the code that caused what the developer said was happening. As others have suggested, it's easy to do this if you are using statics (or if your private vars get initialized by statics in the setup phase). On Mon,

Fwd: [Comment] Re: Tapestry 5 and GWT - part 2

2008-10-08 Thread Daniel Jue
Pär Dahlberg has added the source code link to his article on T5 and GWT using the NetBeans IDE. Daniel -- Forwarded message -- From: pmd/blog [EMAIL PROTECTED] Date: Wed, Oct 8, 2008 at 6:03 PM Subject: [Comment] Re: Tapestry 5 and GWT - part 2 To: [EMAIL PROTECTED] Comment

Re: October release for v5?

2008-10-07 Thread Daniel Jue
Currently, 5.0.15 is a good one to start with. You can get a head start on developing now, and when the production version comes out your changes should be minimal to none, depending on how deep you get into it. It seems class and package name changes are done, and that was the most disruptive

Re: My Tapestry5 suggestion list

2008-10-02 Thread Daniel Jue
On Wed, Oct 1, 2008 at 4:38 AM, Tobias Marx [EMAIL PROTECTED] wrote: Hi there! Here is my list of Tapestry5 suggestions: Tapestry5 Suggestions: 1. User .tpl instead of .tml. This way there is also no problem with syntax highlighting in most editors. We already voted a while back to

T5 OnException or page redirection fails when using Grid inPlace

2008-09-25 Thread Daniel Jue
Using T5.0.14 Just found this after a couple hours. Case: User Logs on login page, user ASO created Page with Grid is rendered, using inPlace, all is well. User session times out, or logs out in another window. (doesn't matter which) User clicks on a sort button on the Grid, and the page

Re: T5: Ajax Examples/Tutorials

2008-09-22 Thread Daniel Jue
These are listed on the Tapestry web page and in the Tapestry 5 wiki. Here is a 3rd party library demo: http://87.193.218.134:8080/t5c-demo/ On Mon, Sep 22, 2008 at 10:16 AM, James Sherwood [EMAIL PROTECTED] wrote: Hello, I was wondering if anyone knew of any good ajax Examples/Tutorials

Re: Integration with GWT

2008-09-22 Thread Daniel Jue
I am also interested in a basic but complete tutorial on using GWT in T5. Anyone want to share some sample setup/source code or give some pointers? On Sun, Sep 21, 2008 at 1:13 PM, Alexey Frishman [EMAIL PROTECTED]wrote: Hi, I use T5 in my project as main web framework. The project itself is

Re: T5: Using Maven and recent version of Eclipse?

2008-09-16 Thread Daniel Jue
A few of us here are using Eclipse Ganymede (the largest, J2ee version). It has the bells and whistles of WTP, and takes some of the pain out of getting compatible plugins. You can add the m2Eclipse plugin in the standard eclipse way, from this update site: http://m2eclipse.codehaus.org/update/

T5 Persistence issue appears when using Firefox with YSlow

2008-09-03 Thread Daniel Jue
This is really weird and I've spend all day trying to fix it. I believe this started a couple days ago. I noticed that my Tapestry-acegi interception code started asking me to reauthenticate on every page navigation to a new page, or form submission. Then I noticed my grid tables columns could

Re: T5: pagelink

2008-08-06 Thread Daniel Jue
You could also change the default HTTPS port in your app server configuration, and then your don't have to worry about modifying the URIs. The default is of course 443. The https:// protocol can be used in exactly the same way as the http:// protocol. The differences are that HTTPS uses a

  1   2   3   4   >