Home page accepting IndexedParamUrlCodingStrategy

2008-06-26 Thread Tauren Mills
How do I go about making my HomePage accept index parameters? I want a home page that will accept URLs like: localhost:8080/us/ca/sacramento Instead of having a mount point first, for example /home: localhost:8080/home/us/ca/sacramento I've tried this in my app: getHomePage() { return HomePa

Re: Home page accepting IndexedParamUrlCodingStrategy

2008-06-26 Thread Tauren Mills
; wrote: > > IIUC, the home page is automatically mounted on the path where you wicket > app is located. > > So, if you put your wicket on "/home", then the home page will be mounted on > /home. > > Guess you'll need to put your home page on "/" to make

Re: Home page accepting IndexedParamUrlCodingStrategy

2008-06-27 Thread Tauren Mills
Does anyone have suggestions on how to do this? Or is it just not possible to use IndexedParamUrlCodingStrategy without a mount point (from the root of the site)? Thanks! Tauren On Thu, Jun 26, 2008 at 3:53 PM, Tauren Mills <[EMAIL PROTECTED]> wrote: > Thanks for the suggestion, but I&

Re: Home page accepting IndexedParamUrlCodingStrategy

2008-06-27 Thread Tauren Mills
> wrote: > It is not possible. Unfortunately. > > You can write your own IRequestCycleProcessor. See > WebApplication#newRequestCycleProcessor(). > > Get hints at: > http://www.nabble.com/How-to-catch-unknown-(not-mounted)-URLs--td14949092.html#a14956131 > >

Change default sort order in OrderByBorder

2008-07-24 Thread Tauren Mills
I have a DataView on a page. At another location on the page, there are some OrderByBorder links. When these are clicked the first time, the dataview is resorted by that field in ascending order. This works great for all of the fields except one. The problem is that I have a "rating" field that

Bug in DateTimeField related to Daylight Savings Time

2010-03-02 Thread Tauren Mills
In case anyone else is having troubles using the DateTimeField (date picker included in wicket-datetime) with dates on the day daylight savings time begins (3/14/2010), I've created a Jira issue with a quickstart demonstrating the problem: https://issues.apache.org/jira/browse/WICKET-2763 Essentia

Problem with redirectToInterceptPage in AjaxLink with IndexedParamUrlCodingStrategy in Jetty

2009-05-21 Thread Tauren Mills
On a page that is mounted with an IndexedParamUrlCodingStrategy, I have an AjaxFallbackLink. If the user is not logged in, it's onclick issues a redirectToInterceptPage to my Login page. Once the user is logged in, my understanding is that the user should go back to the page that contains the ajax

Migration of wicket-ki-security to wicket-shiro-security

2009-06-26 Thread Tauren Mills
I've created a new project in WicketStuff for wicket-shiro-security: https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/shiro-security/ This project is basically the same as wicket-ki-security, but I've changed all references of apache ki/jsecurity to shiro. In ad

Re: Migration of wicket-ki-security to wicket-shiro-security

2009-06-26 Thread Tauren Mills
m> wrote: > I think we have an attic for abandoned projects. > > Martijn > > On Fri, Jun 26, 2009 at 10:23 AM, Tauren Mills wrote: > > I've created a new project in WicketStuff for wicket-shiro-security: > > > https://wicket-stuff.svn.sourceforge.net/svnroot/wick

Re: Migration of wicket-ki-security to wicket-shiro-security

2009-06-26 Thread Tauren Mills
On Fri, Jun 26, 2009 at 11:06 AM, Tauren Mills wrote: > > > BTW -- I added a page to the wiki as well: > > > http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-shiro-security > > > > Thanks Martijn -- not sure if it should be moved yet, but that's good to

Re: Migration of wicket-ki-security to wicket-shiro-security

2009-06-26 Thread Tauren Mills
wiki page you > already created. > > mf > > > Am 26.06.2009 um 10:23 schrieb Tauren Mills: > > > I've created a new project in WicketStuff for wicket-shiro-security: >> >> https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-

Re: Migration of wicket-ki-security to wicket-shiro-security

2009-06-26 Thread Tauren Mills
e were one > can build em with the > following steps: > > svn checkout > https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core > cd wicketstuff-core > mvn install > > mf > > Am 26.06.2009 um 22:02 schrieb Tauren Mills: > > >

Re: Migration of wicket-ki-security to wicket-shiro-security

2009-06-26 Thread Tauren Mills
s available in maven, I'll add it to the wicketstuff-core POM. Tauren On Fri, Jun 26, 2009 at 3:10 PM, Tauren Mills wrote: > This makes total sense to me. Now I know, sorry for any confusion this may > have caused. > > I've commented out shiro-security and will uncomment it

jWicket -- jQuery with Wicket integration

2009-07-21 Thread Tauren Mills
jWicket has now been released as a wicketstuff project. jWicket is an integration of Wicket and jQuery that was previously called WicketJQuery (by Stefan Lindner). I realize there are already a few Wicket/jQuery integrations, but I think that Stefan's WicketJQuery implementation has some advantage

Re: jWicket -- jQuery with Wicket integration

2009-07-22 Thread Tauren Mills
Hi Richard, I actually tried out WiQuery before deciding it wasn't the right tool for me. I can't remember the exact specifics of the issues I had with it, and I only spent about a day with it. But I remember feeling like I was being forced to use it whenever and wherever I wanted to add ANY jQue

Re: Maven with Eclipse

2009-07-23 Thread Tauren Mills
Stefan, I'm using m2eclipse. But it can take a little getting used to. I also think it causes an occasional eclipse crash. However, I'm still glad to have it. Never tried the other one. Once m2eclipse installed, go to your SVN Repositories perspective, browse the wicketstuff-core project. Right

Re: Maven with Eclipse

2009-07-23 Thread Tauren Mills
 jwicket-tooltip-variantC >  jwicket-examples > > Stefan > -Ursprüngliche Nachricht- > Von: Tauren Mills [mailto:yowza...@gmail.com] > Gesendet: Donnerstag, 23. Juli 2009 18:30 > An: users@wicket.apache.org > Betreff: Re: Maven with Eclipse > > Stefan, > > I

Improving maven/wicket deployment process

2009-08-15 Thread Tauren Mills
I currently don't have an automated deployment process in place for a wicket/spring/hibernate/maven project and am looking for suggestions on how to best implement one. I'm open to any suggestions as well as references to helpful URLs and other resources. When it is time to deploy my project, I m

Re: Improving maven/wicket deployment process

2009-08-17 Thread Tauren Mills
Janos and Jeremy, Thank you both for your feedback! After considering your answers, I think that using Maven profiles is most in line with my needs. And the suggestion to use the command line -Dwicket.configuration=deployment parameter will certainly help. I've never used Hudson before, but I'm

Re: Improving maven/wicket deployment process

2009-08-21 Thread Tauren Mills
I can add additional staging, QA, and other servers with this scenario, and it doesn't require a separate WAR for each one. Tauren On Mon, Aug 17, 2009 at 11:07 AM, Tauren Mills wrote: > Janos and Jeremy, > > Thank you both for your feedback! > > After considering your answers,

Re: Improving maven/wicket deployment process

2009-08-24 Thread Tauren Mills
ion.${user.name}.properties > > that way each dev can create a conf/application. name>.properties and override production settings with their own. > > for different envs you simply override the value of user.name with by > defining it with -Duser.name > > -igor > > On Fri, Aug 2

FileUploadField bug in Chrome with ajax?

2009-08-25 Thread Tauren Mills
I haven't confirmed this is really a bug yet, but it looks like there may be a problem using Ajax form submit with FileUploadField in Chrome. I'm using Wicket 1.4.1. Using an ajaxbutton submitted form, I get this error in wicket-ajax-debug: ERROR: Wicket.Ajax.Call.failure: Error while parsing re

Re: FileUploadField bug in Chrome with ajax?

2009-08-27 Thread Tauren Mills
ls: > http://osdir.com/ml/users-wicket.apache.org/2009-08/msg00836.html > > Regards, > Peter > > 2009-08-26 05:46 keltezéssel, Tauren Mills írta: >> >> I haven't confirmed this is really a bug yet, but it looks like there >> may be a problem using Ajax f

Re: Wicket Stuff Core 1.4.1 Release[ing]

2009-09-14 Thread Tauren Mills
As Nino points out, Shiro does have a snapshot pom available now, but no actual release version yet. I thought about adding the snapshot pom to wicketstuff shiro-security, but the snapshot is rather bleeding edge and I worry that it may not work at some point. Should I go ahead and do it anyway?

Using pickwick

2007-08-12 Thread Tauren Mills
Can someone explain how to use pickwick from wicketstuff? I checked out pickwick from wicketstuff trunk and did a mvn install eclipse:eclipse. Had to turn off tests as they were failing. And I had to download and install wicketstuff-dojo-1.3.0-SNAPSHOT manually as mvn didn't find it. But once d

Re: Using pickwick

2007-08-12 Thread Tauren Mills
> iirc, details can be found in the readme > > On 8/12/07, Tauren Mills <[EMAIL PROTECTED]> wrote: > > > > Can someone explain how to use pickwick from wicketstuff? > > > > I checked out pickwick from wicketstuff trunk and did a mvn install > > eclipse:e

DataTable with two TR's per row of data?

2007-08-12 Thread Tauren Mills
I would like to display two table rows for each row of data within a DataTable and would like suggestions on a good way to do that. Basically, I want output like this for each row of data: id name edit delete   long description This is a very simplified version, but it illustrate

Submit button issue in wicket-phonebook

2007-08-12 Thread Tauren Mills
When running wicket-phonebook, both the "Confirm" and "Cancel" buttons on the delete contact page say "Confirm Query" when rendered on a web page. Is this a bug in Link when it is used with an ? Or is there a bug in wicket-phonebook? private void addConfimButton() { /*

Re: DataTable with two TR's per row of data?

2007-08-12 Thread Tauren Mills
Thanks Eelco, That's what I have done using DataViews in wicket 1.2.6, and then set the span to not render so the html validates. But using a DataTable, the html markup is just this: I wasn't sure if there was an easy way to get the behavior I want. I like that DataTable has sorting/filterin

Re: Submit button issue in wicket-phonebook

2007-08-12 Thread Tauren Mills
wrote: > looks like someone changed it from a Button to a Link. the Button uses its > model to set the value attr, the link obviously doesnt. so see svn history > and who made the change, and then bug that person on the list :) > > -igor > > > > On 8/12/07, Tauren Mills <[E

How to replace panelA with panelB using AjaxLink in panelA

2007-08-13 Thread Tauren Mills
My use case can best be described as making wicket-phonebook work within a single tab of a tabbed panel using AjaxLink for create, edit, and delete. Thus, I have a page that contains a TabbedPanel. One tab of TabbedPanel contains ContactListPanel. ContactListPanel contains createContact link and a

Re: Submit button issue in wicket-phonebook

2007-08-13 Thread Tauren Mills
> commit only moved the projects from a branch to trunk. > > Martijn > > On 8/13/07, Tauren Mills <[EMAIL PROTECTED]> wrote: > > Well, it looks like it was done on 4/19/2007 by dashorst. Is this > > message enough, or should I submit a jira? > > > > Shoul

Re: AjaxTabbedPanel Problem

2007-08-13 Thread Tauren Mills
Eric, After reading your message, I just tested my problem out again. I described my problem in a message last night with the subject "How to replace panelA with panelB using AjaxLink in panelA". I'm now thinking that that I did have it working, but that the content is just not showing. I have

Re: AjaxTabbedPanel Problem

2007-08-13 Thread Tauren Mills
Eric, Will you test in IE? The form content shows in IE6, but not in FF2 on WinXP. Tauren On 8/13/07, Tauren Mills <[EMAIL PROTECTED]> wrote: > Eric, > > After reading your message, I just tested my problem out again. I > described my problem in a message last night with t

Re: AjaxTabbedPanel Problem

2007-08-13 Thread Tauren Mills
figure out a solution, I'll let you know. Tauren On 8/13/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > you probably have the span/div problem. make sure you do not nest any block > level elements like div inside spans > > -igor > > > On 8/13/07, Tauren Mil

Re: AjaxTabbedPanel Problem

2007-08-13 Thread Tauren Mills
A quick fix to this is to wrap your form in this: ... But I think the TabbedPanel CSS should deal with it more elegantly. Tauren On 8/13/07, Tauren Mills <[EMAIL PROTECTED]> wrote: > Eric, > > I did some more tests and I just discovered that for me, the HTML is > on

Re: AjaxTabbedPanel Problem

2007-08-13 Thread Tauren Mills
anel { > clear: left; > } > > to styles.css in wicket examples, just in case someone takes the > styles from there. > > -Matej > > On 8/14/07, Tauren Mills <[EMAIL PROTECTED]> wrote: > > A quick fix to this is to wrap your form in this: > > > >

Ajax refresh of DefaultDataTable in wicket-phonebook

2007-08-14 Thread Tauren Mills
For some reason when I do an ajax refresh of the DefaultDataTable in wicket-phonebook, the FilterToolbar disappears. I see it in the Ajax Debugger, but it doesn't display on the screen. This is only happening in FF, not IE (only tested on WinXP). I cannot see any difference between the html that

Using non-string parameters in HibernateContactFinderQueryBuilder

2007-08-15 Thread Tauren Mills
I have a data table based on wicket-phonebook, but have added an additional column that contains non-string data. In the database, the value is an int, but the application maps that to a string using a custom enumeration type with a converter to handle all this. The table display, editing, and so

Re: Ajax refresh of DefaultDataTable in wicket-phonebook

2007-08-16 Thread Tauren Mills
s thing and probably have much better ideas. Thanks, Tauren On 8/15/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > yes, i believe it is caused by invalid markup, maybe the form should be > factored out and put around the entire table. > > -igor > > > On 8/14/07, Taur

Re: Ajax refresh of DefaultDataTable in wicket-phonebook

2007-08-16 Thread Tauren Mills
quirement to adding > filtertoolbar to the table is that that table itself is wrapped in a form. > makes sense? > > -igor > > > On 8/16/07, Tauren Mills <[EMAIL PROTECTED]> wrote: > > > > Igor, > > > > How would you suggest doing this refactor? The f

Localizing title of ModalWindow

2007-08-16 Thread Tauren Mills
I'm using a panel based ModalWindow and want to localize the window title. Without localization, I'd do this: modalWindow.setTitle("Edit User"); The setTitle() method takes a string, not a resource. I'm not clear how to make this work. I tried this: modalWindow.setTitle((String)new ResourceMod

Re: Localizing title of ModalWindow

2007-08-16 Thread Tauren Mills
Thanks, Added as https://issues.apache.org/jira/browse/WICKET-854 Tauren On 8/16/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > setTitle(getString("editTitle")); > > but that method really should take an imodel, please add an rfe > > -igor > > On 8/16/07, T

Custom StringHeaderContributor

2007-08-18 Thread Tauren Mills
Maybe its just late and I'm not thinking straight, but I can't figure out the best way to create a custom StringHeaderContributor. All I want it to is encapsulate some javascript that has some property replacements in it. I have it working with a custom model as such: add(new StringHeaderContr

Re: Custom StringHeaderContributor

2007-08-18 Thread Tauren Mills
On 8/18/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > there should already be a png fix for ie in extensions. > > -igor > > > On 8/18/07, Tauren Mills <[EMAIL PROTECTED]> wrote: > > > > Maybe its just late and I'm not thinking straight, but I can't

Re: Custom StringHeaderContributor

2007-08-18 Thread Tauren Mills
was removed due > to license incompatibilities before we moved to apache... > > [1] http://homepage.ntlworld.com/bobosola/pnghowto.htm > > -igor > > > On 8/18/07, Tauren Mills <[EMAIL PROTECTED]> wrote: > > > > Igor, > > > > Really? I didn't

Wicket problem with slf4j 1.4

2007-09-04 Thread Tauren Mills
This might just be my ignorance, but it seems there are some issues with SLF4J 1.4 used in Wicket, or at least wicket-phonebook. I want to find out what combination of logging jars should be used. I have a project that I based on wicket-phonebook. I'm using wicket from trunk. I have updated som

Re: Wicket problem with slf4j 1.4

2007-09-05 Thread Tauren Mills
Thanks everyone for the help. I got it working with the following jars: log4j-1.2.15.jar slf4j-api-1.4.2.jar slf4j-log4j12-1.4.2.jar Is that what others are using? I had troubles while using logback, but I may not have used the right jars or got the configuration right. It seemed that Jetty wa

Re: Wicket problem with slf4j 1.4

2007-09-07 Thread Tauren Mills
Ceki, Thanks, I'll give that a try. It looks like I'll have to switch to logback configuration files if I go that route. BTW, does Chainsaw work with logback? Tauren On 9/6/07, Ceki Gulcu <[EMAIL PROTECTED]> wrote: > Tauren Mills tauren.com> writes: > > > >

Kronos-cms installation

2007-09-07 Thread Tauren Mills
I just checked out kronos-cms to take a look at it. I could only find it under the wicket-1.2 branch in wicketstuff. Is that correct, or is there a 1.3 release? During mvn install, I got a build error that it was missing javax.jcr:jcr:jar:1.0.1. It suggested the following: Try downloading th

Simple CMS or Wiki

2007-09-07 Thread Tauren Mills
I'd like to add some simple CMS and/or wiki features to a wicket application. I don't need anything full featured by any means. I'm looking for pointers to any resources, code, libraries, blogs, or anything else that would help jump start adding these features to my application. I'm aware of the

Re: Kronos-cms installation

2007-09-10 Thread Tauren Mills
elieve the 1.2 > > branch to be the latest version. As for your other questions i have no > > idea :) A couple of months ago there also some questions on this > > mailing list (well the old sourceforge one actually) have you tried > > those? > > > > Maurice > > >

Wicket shopping cart?

2007-09-19 Thread Tauren Mills
I'm looking for an open source shopping cart built in wicket, but haven't found such a thing yet. Does anyone know of something out there? I've noticed in several posts that people have been working on shopping solutions. Are any of you willing to open source your solution? Ultimately, I'd like

Re: Wicket shopping cart?

2007-09-19 Thread Tauren Mills
/19/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > It seems that Wicket in Action has a basic shopping cart described. :-) > > Martijn > > On 9/19/07, Tauren Mills <[EMAIL PROTECTED]> wrote: > > I'm looking for an open source shopping cart built in wicket, but >

Re: FilterToolbar

2007-09-20 Thread Tauren Mills
Evan, See wicket-phonebook in wicket-stuff. Tauren On 9/20/07, Evan Chooly <[EMAIL PROTECTED]> wrote: > Apparently the API between beta3 and the latest SNAPSHOT changed for > FilterToolbar and now it needs a FilterForm. I can't find any examples (not > even unit tests) that show how I should bu

Re: Wicket shopping cart?

2007-09-20 Thread Tauren Mills
EAP yet, but that's another > > > great reason to! Perhaps it would make a good starting point. But > > > still, if anyone has developed a more full featured solution and are > > > interested in open sourcing it, I'd like to talk. > > > > >

ExternalLink doesn't use model?

2007-09-26 Thread Tauren Mills
I don't understand why ExternalLink doesn't store the external href as the model. It stores it in an href property. It seems to not follow the normal wicket way. This makes it difficult to do things like display a link only if the model is not null. For instance: add(new ExternalLink("web", ne

Re: ExternalLink doesn't use model?

2007-09-26 Thread Tauren Mills
> > On 9/26/07, Tauren Mills <[EMAIL PROTECTED]> wrote: > > I don't understand why ExternalLink doesn't store the external href as > > the model. It stores it in an href property. It seems to not follow > > the normal wicket way. > > > > T

Re: ExternalLink doesn't use model?

2007-09-26 Thread Tauren Mills
Eelco, Thanks. I was trying to do it as an anonymous class, but your idea is simpler. Here's what I ended up with: public class HidingExternalLink extends ExternalLink { private static final long serialVersionUID = 1L; public HidingExternalLink(final String id, final String hr

Re: Getting started with Hibernate and Wicket

2007-10-03 Thread Tauren Mills
Wicketstuff Phonebook is a good starting place for wicket/spring/hibernate integration: http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-phonebook On 10/3/07, Alexandre Bairos <[EMAIL PROTECTED]> wrote: > http://databinder.net does a good job. > > On 10/3/07, Neil B. Cohen <[EMAIL PROT

Custom label for number and currency formatting?

2007-10-03 Thread Tauren Mills
Does such a thing exist? I thought it did, but can't find it now. Basically, I want a Label that allows me to format floats/doubles as currency. I don't need i18n built in (for different currencies, etc.), just take double x=8.3 and output $8.30. Any pointers are appreciated! Thanks. Tauren

Re: Custom label for number and currency formatting?

2007-10-05 Thread Tauren Mills
Thanks for the ideas. Here is my implementation. I split it into two classes since I may want to use the CurrencyConverter separately. In my initial testing it works well, but I haven't tested convertToObject(). Let me know if anyone sees any issues or has suggested improvements: public class

POM problems in trunk?

2007-10-11 Thread Tauren Mills
I just updated wicket, wicket-extensions and wicket-examples from trunk. When I tried to run mvn install eclipse:eclpise, I got errors stating that there were dependencies missing versions. So I added versions to the pom.xml for wicket and wicket-examples. Now mvn runs. Am I doing something wrong

No WebApplicationContext found: no ContextLoaderListener registered?

2007-10-12 Thread Tauren Mills
This may not be specifically wicket related, but I'm stuck and am hoping someone else has dealt with this before. I'm not even sure what these errors mean. I've got a wicket/spring app that runs just fine within Eclipse using Jetty. But I'm attempting to deploy its war to Resin 3.1.0, it doesn't

Re: No WebApplicationContext found: no ContextLoaderListener registered?

2007-10-12 Thread Tauren Mills
Disregard this message. It turns out my war was missing some jar files. It was an issue of "I'm just stupid because I'm still working at 5am and can't think straight." To bad the error message wasn't more intuitive. Oh well. Tauren On 10/12/07, Tauren Mills <

OT: API to calculate distances from zip code

2007-10-26 Thread Tauren Mills
I apologize for this being off topic, but I have a feeling some of you might have some ideas for me. I'd like to implement a feature that will search for all physical locations in my database that are within a radius of a zip code. In other words, the user enters a zip code and selects a distance

How to manage multiple versions of data?

2007-10-29 Thread Tauren Mills
I have a wicket/hibernate/spring project that manages a set of live data. Users of the system view the live version of the data. Currently, administrative CRUD alters the live data as well. Changes by an admin are immediately reflected on the site to users. But a new set of features is going to

Re: OT: API to calculate distances from zip code

2007-10-29 Thread Tauren Mills
e it with something like gazetteer data. In about 2,000 cases, > that becomes a nightmare. If you can avoid that...do! > > I have an SQL INSERT script which was generated off of the September > topical gazetteer and zip code databases, but with everything pulled in > I believe it weig

Re: POM problems in trunk?

2007-10-30 Thread Tauren Mills
ables. > > On 11 Oct 2007, at 22:46, Tauren Mills wrote: > > > I just updated wicket, wicket-extensions and wicket-examples from > > trunk. When I tried to run mvn install eclipse:eclpise, I got errors > > stating that there were dependencies missing versions. So I added >

Re: POM problems in trunk?

2007-10-30 Thread Tauren Mills
t;[EMAIL PROTECTED]> wrote: > Do a install from the root > > your parent pom is not up to date in the local repo > > Martijn > > On 10/30/07, Tauren Mills <[EMAIL PROTECTED]> wrote: > > I just updated from svn again and I'm still having this problem. I've &

Re: How to manage multiple versions of data?

2007-10-30 Thread Tauren Mills
Thanks for the ideas everyone. I do like Igor's suggestion of reusing the same tables and having a "live" flag, as I'd hate to have an entire extra set of duplicate tables. However, since this approach duplicates data, there are still some issues that I'm not sure how to best deal with. Let me e

Component hierarchy in a subclass situation

2008-10-18 Thread Tauren Mills
I'm looking for advice on how to deal with the component hierarchy below. I'm getting a MarkupException and think that the problem is that the "body" defined in base page is a sibling of content, header, and footer instead of their parent. Content, header, and footer should be children of body. A

Re: Component hierarchy in a subclass situation

2008-10-21 Thread Tauren Mills
tainer("pageStyle").setTransparentResolver(true); > > -igor > > > On Sat, Oct 18, 2008 at 1:51 PM, Tauren Mills <[EMAIL PROTECTED]> wrote: > > > I'm looking for advice on how to deal with the component hierarchy below. > > I'm getting a MarkupException and

Re: Component hierarchy in a subclass situation

2008-10-21 Thread Tauren Mills
Thanks! That did the trick. On Tue, Oct 21, 2008 at 10:50 AM, Igor Vaynberg <[EMAIL PROTECTED]>wrote: > erm, override istransparentresolver() { return true; } > > -igor > > On Tue, Oct 21, 2008 at 10:43 AM, Tauren Mills <[EMAIL PROTECTED]> wrote: > > > Igor,

Problem with Application getInitParameter()

2008-12-05 Thread Tauren Mills
Maybe I'm going nuts, but I can't figure out what is wrong. It seems so simple, but it isn't working. I call getInitParameter in my application twice. One time it returns a value, the other it gets a null. And the correct xml is there in web.xml. First, here is the pertinent application code (

Technologies to use with large scale Wicket application

2009-01-13 Thread Tauren Mills
Happy new year! My team is in the preliminary stages of designing a large social wicket web application and I'm trying to identify a good set of existing tools and technologies that can be leveraged to simplify the development of this application. I would love to hear the opinions and suggestions

Re: Technologies to use with large scale Wicket application

2009-01-14 Thread Tauren Mills
and simple. It is also very flexible, > allowing almost limitless possibilities. I would recommend it for search as > highly as Wicket for view tier. > > > -- > Jeremy Thomerson > http://www.wickettraining.com > > On Tue, Jan 13, 2009 at 6:12 PM, Tauren Mills wrote:

Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-15 Thread Tauren Mills
Are there any wicket/eclipse/maven/m2eclipse users out there? I'm trying to get my development environment working properly and need your help. Up until now, I've been developing WIcket applications in Eclipse and have not been using maven. As long as my web.xml is set to development rather than

Re: Technologies to use with large scale Wicket application

2009-01-15 Thread Tauren Mills
> Theres also Wicketopia, http://wicketopia.sourceforge.net/ Nino -- Good to know, I will check it out. > Alternatively, you could try Hippo CMS7. It's also built with Wicket on > top of a JCR repository, but with some extensions that you might like. > (workflow, authorization, virtual trees bas

Re: Technologies to use with large scale Wicket application

2009-01-15 Thread Tauren Mills
r caching (medium-term data) and > taking out load off your db. i believe there's a wicket integration > module. Ok, will do. I certainly don't want to complicate things if I don't need to. >>> jQuery >>> I've used this a lot and am familiar with it. > > n

Re: Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-15 Thread Tauren Mills
d off default because of javadoc html which usually doesn't want > to be packaged inside your war/jar) > > Martijn > > On Fri, Jan 16, 2009 at 12:31 AM, Tauren Mills wrote: >> Are there any wicket/eclipse/maven/m2eclipse users out there? I'm >> trying to get my

Re: Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-15 Thread Tauren Mills
iler/building panel with > FilteredREsources: textbox, remove *.html > > -igor > > On Thu, Jan 15, 2009 at 4:03 PM, Tauren Mills wrote: >> Martijn, >> >> Thanks. But any clue how or where I do that? I've been poking around >> the preferences in eclipse a

Re: Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-15 Thread Tauren Mills
remove the "target/classes" folder from the java source paths which > Maven Eclipse plugin adds (project properties ==> java build path). After > this, the markup files refreshed as expected. > > > Tauren Mills-2 wrote: >> >> Thanks Igor, but I already looked th

Re: Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-16 Thread Tauren Mills
ect root directory "workspace/mytest" >> Finish >> Right click onto "mytest" project >> Select Maven->Enable Dependency Management >> Right click onto src/test/java/test/Start.java >> Select Debug As -> Java Application >> >> Web b

Re: Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-16 Thread Tauren Mills
rchetype > from within Eclipse. Choose File > New > Maven Project > Next, and select > the archetype you want to use. See: > http://books.sonatype.com/maven-book/reference/eclipse-sect-m2e-create-archetype.html > > -Richard > > On Fri, Jan 16, 2009 at 2:47 AM, Tauren

Re: Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-16 Thread Tauren Mills
gt;> Select root directory "workspace/mytest" >> Finish >> Right click onto "mytest" project >> Select Maven->Enable Dependency Management >> Right click onto src/test/java/test/Start.java >> Select Debug As -> Java Application >> >&g

Re: Technologies to use with large scale Wicket application

2009-01-16 Thread Tauren Mills
Hi Stefan, > Your planing something quite impressive here ... or frightening ;) It does sound quite ambitious, doesn't it? Truthfully, I am a bit frightened... :) In reality, we aren't planning to roll out all of these features all at once. But we are trying to create a roadmap for future enha

Re: Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-18 Thread Tauren Mills
cd mytest >>>> mvn eclipse:eclipse >>>> >>>> Eclipse: >>>> File->Import >>>> Select General->Existing projects into Workspace >>>> Next >>>> Select root directory "workspace/mytest" >>>> Finish

Wicket/Salve/Hibernate Examples

2009-01-22 Thread Tauren Mills
Can anyone point me to any example applications that are along the lines of Wicketstuff Phonebook, but that utilize Salve and Hibernate? Does anything like that exist? Thanks, Tauren - To unsubscribe, e-mail: users-unsubscr...@wi

Re: Wicket/Salve/Hibernate Examples

2009-01-22 Thread Tauren Mills
mples or open projects using this combination that I could check out? Thanks, Tauren On Thu, Jan 22, 2009 at 8:46 AM, francisco treacy wrote: > not an app, but maybe this helps: > http://wicketinaction.com/2008/09/building-a-smart-entitymodel/ > > francisco > > On Thu, Jan 22,

Storing user entity in session?

2009-02-19 Thread Tauren Mills
The WIA book and other example apps I've found online often show a User object being stored in the session: class BlogSession extends WebSession { private User user; } But does it make sense to do this if your User object is loaded from a persistence layer (Hibernate) and can contain a large tr

Re: Wicket VoiceXML framework?

2009-02-19 Thread Tauren Mills
Nino, I've considered learning more about VoiceXML as well, but it would be for a future project and unfortunately I don't have time to help right now. If you do get it going, I'd certainly be interested in contributing down the road. However, I am curious what your thoughts are in regards to th

Re: ACEGI and Kerberos Security

2009-02-19 Thread Tauren Mills
David, I don't have an example, but the following wicketstuff resources might be of interest: http://wicketstuff.org/confluence/display/STUFFWIKI/Wicket-Security http://wicketstuff.org/confluence/display/STUFFWIKI/Swarm+and+Acegi+HowTo http://wicketstuff.org/confluence/display/STUFFWIKI/Getting+s

Re: Storing user entity in session?

2009-02-19 Thread Tauren Mills
ed to attach one > entity instance to two hibernate sessions?). We store the ID of the > entity in the session, and load it in the requestcycle (and get the > instance from there). > > Martijn > > On Fri, Feb 20, 2009 at 3:20 AM, Tauren Mills wrote: >> The WIA book and other

Status of Wicket-Security (SWARM and WASP)?

2009-02-20 Thread Tauren Mills
Does anyone know the current status of the wicket-security project? It looks like there has been no activity in svn for close to a year. And it is unclear if it will work with wicket 1.4. What is the preferred tool today for implementing a roles-based authorization and authentication system with w

Re: Wicket VoiceXML framework?

2009-02-20 Thread Tauren Mills
, 2009 at 2:33 AM, nino martinez wael wrote: > Replying Inline.. > > 2009/2/20 Tauren Mills > >> Nino, >> >> I've considered learning more about VoiceXML as well, but it would be >> for a future project and unfortunately I don't have time to help right >

Re: Status of Wicket-Security (SWARM and WASP)?

2009-02-20 Thread Tauren Mills
w.wickettraining.com > > On Fri, Feb 20, 2009 at 3:48 PM, Tauren Mills wrote: > >> Does anyone know the current status of the wicket-security project? >> It looks like there has been no activity in svn for close to a year. >> And it is unclear if it will work with wi

Re: Storing user entity in session?

2009-02-20 Thread Tauren Mills
Nino and Martijn, Thanks for the help. Last night I was looking through the elephas code and found a solution that I think will work for me. It doesn't store an LDM in the session, but stores an identifier and a *transient* instance of User. This seems like an effective solution to me. I tried

Re: Status of Wicket-Security (SWARM and WASP)?

2009-02-20 Thread Tauren Mills
y ot he site, that you can't do it via a role?". > > - Brill > > On 20-Feb-09, at 5:08 PM, Tauren Mills wrote: > >> Jeremy, >> >> Thanks for the response. I apologize for touching on a sensitive >> subject like this, but I

Re: Status of Wicket-Security (SWARM and WASP)?

2009-02-20 Thread Tauren Mills
are we'll need to fix swarm/wasp as well, and invest into that > when that happens. > > What doesn't work with swarm/wasp in wicket 1.4? Did you try it out? > > Martijn > > On Fri, Feb 20, 2009 at 11:08 PM, Tauren Mills wrote: >> Jeremy, >> >> Thank

  1   2   >