Re: Deployment mode images all vanish

2013-09-16 Thread Brill Pappin
It could be, and I'll certainly run some tests to remove the compression and see if tha make any different,. However if thats the problem then its still hanging around in 6.10 after being reported back in 5.* which indicates there is a much larger issue. - Brill Pappin On 2013-09-16, at 3

Deployment mode images all vanish

2013-09-15 Thread Brill Pappin
for them directly. Anyone have any ideas why this might be happening? - Brill Pappin 明 - زاهر - מַברִיק - चमकदार - 鮮やか - ஒளியுள்ள - ร่วงรุ้ง - loistava

HTTPS Redirection on AWS Elastic Beanstalk

2013-09-15 Thread Brill Pappin
, but it's going to take some code to implement. So, before I go and try to write a mapper for this situation, has anyone else already written one? - Brill Pappin 明 - زاهر - מַברִיק - चमकदार - 鮮やか - ஒளியுள்ள - ร่วงรุ้ง - loistava

Wicket-stuff site down?

2009-10-26 Thread Brill Pappin
Is the Wicket-stuff site down for anyone else? - Brill - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Wicket with Shindig

2009-10-26 Thread Brill Pappin
I'm considering using Shindig for a new project (See: http://incubator.apache.org/shindig/index.html) Is there any Wicket/Shindig code around or has anyone been working on getting the two to work together? - Brill - To

Re: Wicket with Shindig

2009-10-26 Thread Brill Pappin
who is using shiding with wicket. On Mon, Oct 26, 2009 at 4:59 PM, Brill Pappin br...@pappin.ca wrote: I'm considering using Shindig for a new project (See: http://incubator.apache.org/shindig/index.html) Is there any Wicket/Shindig code around or has anyone been working on getting the two

Re: Wicket-stuff site down?

2009-10-26 Thread Brill Pappin
jer...@wickettraining.com Yes -- Jeremy Thomerson http://www.wickettraining.com On Mon, Oct 26, 2009 at 11:08 AM, Brill Pappin br...@pappin.ca wrote: Is the Wicket-stuff site down for anyone else? - Brill

Re: intercept security check in wicket-auth-roles

2009-07-12 Thread Brill Pappin
sample may help you to get an idea on how that works. Olger On 11 jul 2009, at 08:09, Brill Pappin wrote: I actually find it very usable and i love how simple it is... does the new security framework have a similar simple method of securing a site like that? - Brill On 3-Jul-09, at 11:34 AM

Re: intercept security check in wicket-auth-roles

2009-07-11 Thread Brill Pappin
I actually took the wicket-auth-roles and rolled a custom solution. I'd put it up but never went back to make sure it was properly tested for distribution :) - brill On 3-Jul-09, at 6:28 AM, fstof wrote: Any luck with this? I'm looking to do the same thing, but how Brill Pappin wrote

Re: intercept security check in wicket-auth-roles

2009-07-11 Thread Brill Pappin
to use and suitable for most applications. - Brill Pappin - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: nested forms and locale

2009-06-07 Thread Brill Pappin
i may be wrong about this because my wicket ajax is still a bit shaky, but try adding the components you wanted updated to the links target. - Brill On 7-Jun-09, at 10:20 AM, Morten Steffensen wrote: Hi, I am having problems using nested forms and changing locale. I have 2 links for

Re: Mix generic HTML for Wicket

2009-06-05 Thread Brill Pappin
you do a spike and try out a few ways of doing it. Also take a look at some of the WIcketStuff examples. Heres a starting point: http://tinyurl.com/p4v28m - Brill Pappin On 2-Jun-09, at 3:34 PM, sjtirtha wrote: Hi, I'm a newbie with wicket. I see that all sample always require .html and .java

Re: DropDownChoice - required, one item so preselection?

2009-06-05 Thread Brill Pappin
, the model has to have the preselected choice set on it, or it need to survive renders. Your ChoiceRenderer simply tells the component which part is id and which is display. - Brill Pappin On 2-Jun-09, at 6:54 PM, m_salman wrote: I have set the model. But I still don't see it preselected

Re: closing a ModalWindow from a forms onSubmit?

2009-05-26 Thread Brill Pappin
- From: Brill Pappin br...@pappin.ca Sent: Sunday, May 24, 2009 5:36 PM To: users@wicket.apache.org Subject: Re: closing a ModalWindow from a forms onSubmit? I likely could but am trying to avoid that, because then I have to call it for every button in the form (there are 4 now, all set a state

Re: closing a ModalWindow from a forms onSubmit?

2009-05-26 Thread Brill Pappin
, at 7:37 AM, Brill Pappin wrote: Tried that :) and it always seems to be null. I switched to AjaxButtons, but the problem is that the are fired *after* the form submits, not before as a normal Button is. I'm essentially trying to set a value on the form's model depending on which button

Re: adjusting form model on submit with AjaxButton -- Was: closing a ModalWindow from a forms onSubmit?

2009-05-26 Thread Brill Pappin
. If i ever have time I'll write up a SubmitButtonGroup component (unless someone else needs it first and writes one). - Brill On 25-May-09, at 9:30 AM, Brill Pappin wrote: There has got to be a solution for this. The problem with using an AjaxButton is that the onSubmit is called

Re: adjusting form model on submit with AjaxButton -- Was: closing a ModalWindow from a forms onSubmit?

2009-05-25 Thread Brill Pappin
. If I use a normal Button, I can adjust the form model but can't close the ModalWindow since I have no ajax target. - Brill On 24-May-09, at 6:36 PM, Brill Pappin wrote: I likely could but am trying to avoid that, because then I have to call it for every button in the form (there are 4 now

Re: showstoppers -- NoSuchMethodError (again and again)

2009-05-24 Thread Brill Pappin
just released rc4 like three weeks ago. Are we talking about the same rc4? -- Jeremy Thomerson http://www.wickettraining.com On Sat, May 23, 2009 at 9:41 PM, Brill Pappin br...@pappin.ca wrote: I don't actually have commit to wicketstuff, but cudos for having all modules build and all tests

closing a ModalWindow from a forms onSubmit?

2009-05-24 Thread Brill Pappin
I have a form in a model window How do I close the ModalWindow in the form's onSubmit() method without the AjaxRequestTarget? - Brill smime.p7s Description: S/MIME cryptographic signature

Re: closing a ModalWindow from a forms onSubmit?

2009-05-24 Thread Brill Pappin
, at 5:55 PM, James Carman wrote: Can you submit the form via ajax? On May 24, 2009 2:08 PM, Brill Pappin br...@pappin.ca wrote: I have a form in a model window How do I close the ModalWindow in the form's onSubmit() method without the AjaxRequestTarget? - Brill smime.p7s Description: S

Re: showstoppers -- NoSuchMethodError (again and again)

2009-05-23 Thread Brill Pappin
a release a couple weeks ago right after I built the core release, but some things weren't compiling / working and I didn't have the time to fix all of those projects. -- Jeremy Thomerson http://www.wickettraining.com On Fri, May 22, 2009 at 8:26 PM, Brill Pappin br...@pappin.ca wrote: Over

showstoppers -- NoSuchMethodError (again and again)

2009-05-22 Thread Brill Pappin
Over the last week I've been running into no end of NoSuchMethod errors, particularly between the wicket 1.4-SNAPSHOT and the wicketstuff 1.4-SNAPSHOT. They both are snapshots, so this is expected now and then, however they don't seem to be being fixed. In all cases so far, the

Re: objectautocomplete on a form with CompoundPropertyModel

2009-05-13 Thread Brill Pappin
I'd actually rather it worked as expected and simply set the object on the model property :) However, it's usable so I'll live with it. - brill On 13-May-09, at 3:10 PM, nino martinez wael wrote: Yeah or just another way of thinking.. :) 2009/5/11 Brill Pappin br...@pappin.ca: Thanks

Re: org.apache.wicket.WicketRuntimeException: Exception in rendering component: [MarkupContainer [Component id = login]]

2009-05-11 Thread Brill Pappin
be a bad java install ok the box, although I've never seen one fail like that). - Brill Pappin Sent from my mobile. On 11-May-09, at 4:24 AM, Anders Peterson ap...@optimatika.se wrote: What exactly does this stacktrace (below) mean? In development, eclipse jetty, the application works fine. When

Re: objectautocomplete on a form with CompoundPropertyModel

2009-05-11 Thread Brill Pappin
Thanks that worked... although its a bit of a pain in the behind :) - Brill Pappin On 11-May-09, at 6:55 AM, nino martinez wael wrote: You do something like this: // compound model private final IModelString cityModel = new PropertyModelString( searchWrapper

objectautocomplete on a form with CompoundPropertyModel

2009-05-10 Thread Brill Pappin
includes the onSubmit implementation. Is there something special i have to do with this component? - Brill Pappin smime.p7s Description: S/MIME cryptographic signature

inmethod grid generics patch

2009-05-08 Thread Brill Pappin
anyone know if this component has been abandoned or not? If I have to I'll go an add the generics myself, but if there is a copy out there that already has them I'd rather use that version. - Brill Pappin smime.p7s Description: S/MIME cryptographic signature

Re: inmethod grid generics patch

2009-05-08 Thread Brill Pappin
That would be great! If you need an area to focus on, it's the generics that type things like getSelectedItems() etc. and some of the other common overrides. - Brill Pappin On 8-May-09, at 5:57 PM, Matej Knopp wrote: Found the patch, will assign it to jira issue. And possibly apply

Re: validation message-keys differences on m3 to rc2

2009-05-07 Thread Brill Pappin
I'm having a bit of trouble with this as well. Are the properties document any place? I can't seem to find them anywhere. - brill On 6-Apr-09, at 5:59 AM, Gianni Doe wrote: ComponentStringResourceLoader's javadoc is very helpful here: quote assume a component hierarchy like

inmethod grid converter/formatter?

2009-05-07 Thread Brill Pappin
or formatters to the column models.. have anyone else tried this or come up with a solution? So far the only solution i have is to wrap my Pojo's in another pojo and provide read-only access to one of the fields. - Brill Pappin smime.p7s Description: S/MIME cryptographic signature

Re: inmethod grid converter/formatter?

2009-05-07 Thread Brill Pappin
unsure where it is. I constantly need to reformat some content into something the user can see. but with a inmethod grid, you actually need a display formatter and an editor formatter. - Brill Pappin On 7-May-09, at 4:21 PM, Ryan McKinley wrote: what about just implementing

Re: Tools for Managing a Wicket Project

2009-04-29 Thread Brill Pappin
+1 Thats almost exactly our preferred setup. - svn (instead of cvs) - maven (check the quickstart project on the wicket page) - archiva (your own maven repository) - hudson (continous integration build system) Kind regards Florian Sperber

Re: Tools for Managing a Wicket Project

2009-04-29 Thread Brill Pappin
repo has become one of our backup targets. - Brill Pappin On 29-Apr-09, at 1:16 PM, Carlo Camerino wrote: [...] one thing that i'd like to have though is a way to track common custom components. We have developed a lot of common components but once the project begins to become larger, it's

Re: Tools for Managing a Wicket Project

2009-04-29 Thread Brill Pappin
Heres another book for you. This is actually one of my favorites, particularly if you working with existing code. http://www.amazon.com/Working-Effectively-Legacy-Robert-Martin/dp/0131177052 - Brill Pappin On 29-Apr-09, at 4:11 PM, Dane Laverty wrote: Thanks again to everyone

Re: Does FeedbackPanel have to be added to Page?

2009-04-27 Thread Brill Pappin
That error comes directly from this ticket in JIRA... if you want to know how it came to be, read the comments. https://issues.apache.org/jira/browse/WICKET-1138 - Brill Pappin On 26-Apr-09, at 7:52 PM, Jason Wang wrote: Hi all, I got a weird error when doing a form component

Re: custom expired page

2009-04-27 Thread Brill Pappin
Like because your expired page requires the role. Remove the role annotation. - Brill Pappin On 27-Apr-09, at 3:32 PM, alec wrote: We have a wicket 1.3.5 application and are having trouble redirecting to an expired page if the user clicks on a link after the session expired. in our

Re: remember me at login page feature

2009-04-24 Thread Brill Pappin
authenticated or allow them through to the secure page if the were... which is what I had to hack in. - Brill Pappin On 20-Apr-09, at 9:16 AM, Martin Makundi wrote: Well, real auto login works without the form so without repopulating... but ofcourse if some auth-roles is involved, it must be taken

Re: Register - activate account - login

2009-04-24 Thread Brill Pappin
I think that might be somewhat application specific would it not? I've written a few in wicket now, but none of them would make good frameworks. - Brill Pappin On 22-Apr-09, at 10:41 AM, Jan Torben Heuer wrote: Hi, Is there a component that handles user registration, email

Re: remember me at login page feature

2009-04-20 Thread Brill Pappin
It may not work as you expect. What it does is store the username in a cookie and repopulates it if possible when you hit the login page again. What I expected it to do was to auto login, and I had to port he wicket-auth-roles code to support auto-signin. - Brill Pappin On 19-Apr-09

Re: Google Analytics and Wicket

2009-04-17 Thread Brill Pappin
much *any* ajax application, which really only has one (or a few) pages. - Brill Pappin On 18-Apr-09, at 5:57 PM, Mariana Bustamante wrote: Is there any other method that doesn't mean many changes in my application?? Everything is already working fine and adding Google Analytics

Re: OAuth in Wicket

2009-04-15 Thread Brill Pappin
yes, i means prebuilt auth session and signin pages etc. - Brill Pappin On 14-Apr-09, at 10:20 PM, David Leangen wrote: Ok. So, what exactly do you mean by Wicket specific code? OAuth and Wicket seem to be orthogonal, IMO. Perhaps you're referring to something like a generic OpenID

Re: OAuth in Wicket

2009-04-15 Thread Brill Pappin
in doing that? currently I have a hacked version of wicket-auth-roles that I'm using which stores a user token (used to capture state after session timeout), but I could certainly see this being a more general lib. - Brill Pappin On 15-Apr-09, at 2:20 AM, nino martinez wael wrote: Hi

Re: OAuth in Wicket

2009-04-15 Thread Brill Pappin
just like wicket auth roles, which does have a page, but most of the work is done in the panel... easy to extends and modify the UI. - Brill Pappin On 15-Apr-09, at 10:56 AM, Jeremy Thomerson wrote: Not many projects include prebuilt pages because in most apps you are going to want

OAuth in Wicket

2009-04-14 Thread Brill Pappin
This looks very interesting. http://oauth.net/ Has anyone integrated OAuth with wicket? - Brill Pappin smime.p7s Description: S/MIME cryptographic signature

Re: OAuth in Wicket

2009-04-14 Thread Brill Pappin
Yes I did see the implementation... just wondered if anyone had written any wicket specific code. - Brill Pappin On 14-Apr-09, at 6:35 PM, David Leangen wrote: Yes. There is a java library you can use: http://code.google.com/p/oauth/ Unfortunately, my stuff is not well

Re: serialVersionUID

2009-04-12 Thread Brill Pappin
Nice. I think thats actually more important than we've been giving it credit for in this thread! - Brill Pappin On 12-Apr-09, at 12:51 AM, Luther Baker wrote: I don't know much about it ... but would something like Terracotta use/require/leverage the serialVersionUID for something

Re: serialVersionUID

2009-04-12 Thread Brill Pappin
It wouldn't because its not really meant as an accessible member of the class. It's used at a lower level and would be accessible regardless of the scope. - Brill Pappin On 12-Apr-09, at 1:46 PM, Ben Tilford wrote: I've always seen it done as public. Anyways I checked the javadoc

Re: Package all CSS and JS

2009-04-11 Thread Brill Pappin
the trouble for what you'd gain from it. - Brill Pappin On 10-Apr-09, at 5:16 PM, Igor Vaynberg wrote: my point is that the just in time thing will not work suppose on page A you use jquery and ext on page B you use jquery and yui using this just-in-time composition you will get two resources

Re: serialVersionUID

2009-04-11 Thread Brill Pappin
Yes, its fine. you really only need to worry about that kind of thing when you are passing java serialized classes between VMs (as in RMI). In fact, you likely don't really even need to bother for Wicket, and you can turn off that check in Eclipse. - Brill Pappin On 11-Apr-09, at 9:45

Re: serialVersionUID

2009-04-11 Thread Brill Pappin
Yah, i used to always add it just for completeness, but I quickly realized its just a bunch of YAGNI junk i don't need cluttering up my code. Now i just turn it off. - Brill Pappin On 11-Apr-09, at 11:14 PM, Jim Pinkham wrote: I'm suprised no one has mentioned the runtime cost

Re: serialVersionUID

2009-04-11 Thread Brill Pappin
problems than not adding a serialVersionId. - Brill Pappin On 11-Apr-09, at 11:45 PM, Adriano dos Santos Fernandes wrote: Brill Pappin wrote: Yes, its fine. you really only need to worry about that kind of thing when you are passing java serialized classes between VMs (as in RMI). In fact

Re: Package all CSS and JS

2009-04-10 Thread Brill Pappin
You could likely do that fairly easily, but how do you know which ones are need by which page? For instance page A may not need all the CSS that page B does. - Brill Pappin On 10-Apr-09, at 2:49 AM, Bjoern Tietjens wrote: Hi, how about doing this with some kind of precompilation step

Re: Package all CSS and JS

2009-04-10 Thread Brill Pappin
Yah, he's right about the caching... so maybe not work it... however the solution someone posted was a ... hmm... Just in Time Resource kind of idea. which would still optimize for whatever page you were on (instead of bundling it all up into one giant file). - Brill Pappin On 10-Apr

Re: Package all CSS and JS

2009-04-10 Thread Brill Pappin
anyway. - Brill Pappin On 10-Apr-09, at 3:06 AM, Alex Objelean wrote: The problem with merging css is that the backgrounds will not work anymore (in case the images are referenced relatively). But there is a solution for this, check web resource optimizer ( http://code.google.com/p

Re: GWT vs. Wicket?

2009-04-09 Thread Brill Pappin
! Yay. Anyway, i'll continue to use both GWT and Wicket. - Brill Pappin On 8-Apr-09, at 9:24 PM, ying rss wrote: I played with both GWT and wicket. I was drawn to wicket by several reviews and I'm disappointed. I use maven to build gwt and ext-js and GXT which works very well. Compilation

Re: Package all CSS and JS

2009-04-09 Thread Brill Pappin
(for isntance) and change the request page to just load it. Let us know if you tackle that one... I'd love to see the code. - Brill Pappin On 9-Apr-09, at 10:57 AM, Eduardo Nunes wrote: I think that I didn't explain it right. What I want is that wicket concatenate all included javascripts into one

Re: Package all CSS and JS

2009-04-09 Thread Brill Pappin
Oh nice... exactly what I was thinking... glad I don't have to write it! - Brill Pappin On 9-Apr-09, at 1:26 PM, Roman Zechner wrote: Hi Eduardo! I remember there was once a discussion here on the mailing list, I think part of that was http://techblog.molindo.at/2008/08/wicket

Re: GWT vs. Wicket?

2009-04-08 Thread Brill Pappin
able to see the HTML... the developer tools plugin for Firefox has a View Generated Source command, which makes things a lot easier when your debugging GWT html (I've even used it on Wicket for that matter). - Brill Pappin On 8-Apr-09, at 12:32 PM, Peter Thomas wrote: I thought Matt Raible

Re: authorizing a tab

2009-04-07 Thread Brill Pappin
-skunkworks.googlecode.com/svn/trunk/wicket-pagetabs/ and you can include it in your project using the maven repo. See: http://code.google.com/p/wicket-skunkworks/wiki/MavenRepository - Brill Pappin On 7-Apr-09, at 6:36 AM, Marieke Vandamme wrote: I think I had the same problem a while ago. Look

Re: Wicket and (or) restlet

2009-04-04 Thread Brill Pappin
I love Jersey, Once you get the very simple model it works like a charm with non of the hocus-pocus that restlets have. I do use it with Wicket projects, but I have not yet had to integrate the two because usually where I have a service I want to expose I don't have the UI... I typically

Re: maven-eclipse-plugin 2.6 will break your wicket projects

2009-04-03 Thread Brill Pappin
, Brill Pappin br...@pappin.ca wrote: That code is open... why not make a wicket-eclipse-plugin that puts the files were you want them? - Brill Pappin On 2-Apr-09, at 6:27 AM, Martijn Dashorst wrote: Some brilliant guy thought it prudent to make the maven-eclipse- plugin only accept .java

Re: maven-eclipse-plugin 2.6 will break your wicket projects

2009-04-03 Thread Brill Pappin
laugh not again! ;) - Brill On 2-Apr-09, at 2:11 PM, Philippe Marschall wrote: Martijn Dashorst wrote: Some brilliant guy thought it prudent to make the maven-eclipse- plugin only accept .java files from src/main/java and src/test/java in version 2.6. Well there's a reason these

Re: maven-eclipse-plugin 2.6 will break your wicket projects

2009-04-03 Thread Brill Pappin
laugh Although I think its too late to stop this thread growing, you should all know that we just had this argument a few weeks ago! It seems to be a touchy subject for some :) The old thread can be found by searching for Re: How can I share text resources with multiple web applications?.

Re: maven-eclipse-plugin 2.6 will break your wicket projects

2009-04-03 Thread Brill Pappin
I think thats a good position. I can't image that it was purposely done in order to enforce the maven way, there are just too many people who would have broken builds. - Brill On 2-Apr-09, at 3:53 PM, Igor Vaynberg wrote: i just want to say one quick thing about this. there are two great

Re: maven-eclipse-plugin 2.6 will break your wicket projects

2009-04-03 Thread Brill Pappin
*sigh* I was referring to the suggestion that there be an option in the archetype, and the disparaging thread that ensued. However, I don't want to argue about this *again*. ...never mind... - Brill On 3-Apr-09, at 9:56 AM, Martijn Dashorst wrote: On Fri, Apr 3, 2009 at 3:52 PM, Brill

Re: maven-eclipse-plugin 2.6 will break your wicket projects

2009-04-02 Thread Brill Pappin
That code is open... why not make a wicket-eclipse-plugin that puts the files were you want them? - Brill Pappin On 2-Apr-09, at 6:27 AM, Martijn Dashorst wrote: Some brilliant guy thought it prudent to make the maven-eclipse-plugin only accept .java files from src/main/java and src/test

Extending wicket for non webapp implementations

2009-04-01 Thread Brill Pappin
I'd love to use wicket as a more general template library. My immediate problem is that I need to build email template library. Has anyone done an extension that would allow it to process non HTML files? - Brill Pappin

Re: AW: Extending wicket for non webapp implementations

2009-04-01 Thread Brill Pappin
Yah, I'm digging in the source right now. A basic email is one thing, but I was really interested in the nice clean 1:1 relationship between resource and code along with the nice basic components like list etc. All you'd really need to do is extend page and create a new type, however being

Re: VOTE: Rename Apache Wicket to Apache WicketFX

2009-04-01 Thread Brill Pappin
~0/1 I don't care... but I can't say that I think FX makes it cool... Sounds more like a bad 90's TV show to me :) As long as it work, I don't care what its called... um... maybe I should qualify that... I don't care what its called as long as I won't be embarrassed when talking to my

Re: VOTE: Rename Apache Wicket to Apache WicketFX

2009-04-01 Thread Brill Pappin
:25 heeft Brill Pappin het volgende geschreven: ~0/1 I don't care... but I can't say that I think FX makes it cool... Sounds more like a bad 90's TV show to me :) As long as it work, I don't care what its called... um... maybe I should qualify that... I don't care what its called as long as I

Re: VOTE: Rename Apache Wicket to Apache WicketFX

2009-04-01 Thread Brill Pappin
chuckle. more of a whine-buzz sound... - brill On 1-Apr-09, at 2:22 PM, Igor Vaynberg wrote: did it make a swoosh sound? :) -igor On Wed, Apr 1, 2009 at 11:20 AM, Brill Pappin br...@pappin.ca wrote: Caught red handed :) I never remember... and since the kids didn't pull anything on me

Re: Picket Web Framework -- PHP's answer to Java's Wicket

2009-04-01 Thread Brill Pappin
Hey man... if its got laser beams, I'm in! - Brill On 1-Apr-09, at 6:37 PM, Jonathan Locke wrote: will this include SHARKS with FRICKIN' LASER BEAMS attached to their heads? Otan wrote: Are you a fan of Wicket but you can't use it because your company or client is tied with PHP? Have

Re: How to secure a Wicket 1.4 application?

2009-03-26 Thread Brill Pappin
I actually find that auth-roles is very simply to use and usually all I need... if it is ever deprecated I assure you I'll revive it under another source tree. However although for some reason it says you should use wicket- security (not sure why unless wicket-security has the same simple

Re: nested loop view

2009-03-26 Thread Brill Pappin
User error :) review what element your adding the inner list to... looks like your adding it to the ListView instead of the Item. Change: this.add(projects); to item.add(projects); - Brill Pappin On 26-Mar-09, at 12:50 PM, Luther Baker wrote: I'm trying to create a page

Re: handling not mounted URLs

2009-03-23 Thread Brill Pappin
Ahh... are you try to set up an RESTful type of URI where the path is relevant to the request being executed? I had to do something like that for an images resource recently... although it may be more at the mercy of Wicket than what you need. Hmm... how about a

YUI DateField not setting model object property?

2009-03-23 Thread Brill Pappin
I'm using the YUI DateField on a form that has a CompoundPropertyModel as its object, however the field doesn't seem to be setting the property on the base POJO. The form components are all using the simple wicket id method of accessing the POJO properties via the CompoundPropertyModel.

Re: maven, eclipse and wicket

2009-03-23 Thread Brill Pappin
make sure your m2e knows where your user repo is... it might not have it set. fyi - not all projects have source. - brill On 23-Mar-09, at 1:44 PM, Luther Baker wrote: Yep - the sources came down. The problem is in automatically attaching them to the debugger. I have an Eclipse DEBUG

Re: Extensible wicket application

2009-03-22 Thread Brill Pappin
methods of locating it better be correct. - Brill Pappin Sent from my mobile. On 21-Mar-09, at 5:29 PM, Daniel Dominik Holúbek dankodo...@gmail.com wrote: Ernesto, thank you very much :) If my application ever goes to the production, it will be thanks to you :) Regarding the images

Re: load html according to page parameters

2009-03-22 Thread Brill Pappin
I think for that you might try setting the variation based on the parameter. This would allow you to load different HTML content using the standard mechanism. - Brill On 22-Mar-09, at 7:17 AM, Vitek Tajzich wrote: Hi, I would like to load HTML according to page parameters. So If I get

Gravatar image component, help with urls

2009-03-22 Thread Brill Pappin
I'm creating a new component to access Gravatar (see: http://en.gravatar.com/) . I wanted to just extend the components the make Image work, because I wanted it to work just like an Image and fall back to a standard image if the Gavatar image was not present. Unfortunately almost everything

eclipse and html extensions in src/main/java

2009-03-22 Thread Brill Pappin
So eclipse is having trouble with the html extension files in the java source directory. I set up a demo for Wicket Skunkworks to demo the components we're working on, and I used the standard wicket pattern of putting the html alongside the java in order to make things clearer to how must

Re: eclipse and html extensions in src/main/java

2009-03-22 Thread Brill Pappin
I get the HTML editor as well but I also get some dialog popping up when I load the HTML from the src. I just updates to the latest this morning, so maybe there is something new. - Brill Pappin Sent from my mobile. On 22-Mar-09, at 12:38 PM, John Krasnay j...@krasnay.ca wrote: Works

Re: eclipse and html extensions in src/main/java

2009-03-22 Thread Brill Pappin
Hmm, I'll have to investigate. I *don't* get it when I have it set up with the HTML in the resourses folder. - Brill Pappin Sent from my mobile. On 22-Mar-09, at 1:58 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: if you get this error then you are screwed whether the markup fles

Re: eclipse and html extensions in src/main/java

2009-03-22 Thread Brill Pappin
: Bill, if you have a stack trace in the log, we might take a stab at guessing the culprit (it's not often the base Eclipse tooling, but some add-on plugin). Thomas On Sun, Mar 22, 2009 at 9:18 PM, Brill Pappin br...@pappin.ca wrote: Hmm, I'll have to investigate. I *don't* get it when I have

Re: handling not mounted URLs

2009-03-22 Thread Brill Pappin
what about setting up an error page using the standard servlet method that points to a wicket page? There are a few different ways you can capture errors: in the web.xml for instance you can use a construct something like (check the syntax): error-page

Re: How can I share text resources with multiple web applications?

2009-03-21 Thread Brill Pappin
Laugh. Don't start that now! - Brill Pappin Sent from my mobile. On 21-Mar-09, at 3:23 AM, Igor Vaynberg igor.vaynb...@gmail.com wrote: the real question is, where do the ant folks keep their resources? :) -igor On Fri, Mar 20, 2009 at 10:58 PM, Brill Pappin br...@pappin.ca wrote

Re: wicket-jasper UI

2009-03-21 Thread Brill Pappin
Oh nice! I was just contemplating how I was going to integrate jasper. Thanks for the heads up. - Brill Pappin Sent from my mobile. On 21-Mar-09, at 6:38 AM, freak182 eman.noll...@gmail.com wrote: Hello, I just wanna share this simple project called wicket-jasper. It is basically

Re: Wicketstuff Core Dependency Management...

2009-03-21 Thread Brill Pappin
Actually that might mess up the rest of us :) If you need those lobs to be includes, simply add them to you pom and change their scope so they are included... The build should then override the provided scope in the parent. - Brill Pappin Sent from my mobile. On 21-Mar-09, at 9:01 AM

Re: Extensible wicket application

2009-03-21 Thread Brill Pappin
and use the base page to ref them or even create a loader to manage them. Ether way, you use them the same way, only prefix the resource name with the subdir if you have separated them out. As for your db error, that looks like something out side the scope of wicket. - Brill Pappin Sent

Re: Wicketstuff Core Dependency Management...

2009-03-21 Thread Brill Pappin
that, Brill. That's the whole point. Breaking transitive dependency resolution is a bad thing in the maven world. We're handing dependencies the wrong way if we're breaking stuff. On Sat, Mar 21, 2009 at 11:07 AM, Brill Pappin br...@pappin.ca wrote: Actually that might mess up the rest of us

Re: Extensible wicket application

2009-03-21 Thread Brill Pappin
, Brill Pappin br...@pappin.ca wrote: At the risk of starting another useless thread, this is what I do for images and other non HTML resources that are shared: - if the project is small, they can just sit with the HTML. - if the project is larger then it might be useful to keep them more separate

Re: How can I share text resources with multiple web applications?

2009-03-20 Thread Brill Pappin
by hand. As I said before, maybe it should be optional. - Brill On 19-Mar-09, at 11:52 PM, Jeremy Thomerson wrote: It's a *wicket* archetype that uses Maven as a build tool. -- Jeremy Thomerson http://www.wickettraining.com On Thu, Mar 19, 2009 at 8:30 PM, Brill Pappin br...@pappin.ca

Re: How can I share text resources with multiple web applications?

2009-03-20 Thread Brill Pappin
I love the use of the package structure to keep the file together, However I don't think we're talking about moving the HTML to a different structure, they are all still in the same package (although I've come across cases where I *do* need it outside the package structure for political

Re: How can I share text resources with multiple web applications?

2009-03-20 Thread Brill Pappin
But thats not a fix, thats adding crap to my build I don't want or need. Maven allows you to do things like that, because frankly no one would use it if it didn't... have you ever tried to port a legacy app to Maven? There is no assumption here. See:

Re: How can I share text resources with multiple web applications?

2009-03-20 Thread Brill Pappin
On 20-Mar-09, at 11:51 AM, Martijn Dashorst wrote: I don't want that. If someone is anal about what maven is expecting, then it is their problem. I am in the business of making the best wicket development experience, from a Wicket perspective. We're using maven as a tool, we're not in the

Re: How can I share text resources with multiple web applications?

2009-03-20 Thread Brill Pappin
Now there is a sensible argument! I've been thinking of doing that exact thing for clarity as the project gets big, where the integral HTML files that have a 1:1 relationship to the code stay in the src/main/java and the other resources that are *not* required for operation (like the

Re: Making wicket work with Dynamically created html

2009-03-20 Thread Brill Pappin
Hmm... what about a custom locator/loader that simply gave back the html version of the XML when wicket asked for it? You could even insert the wicket id attributes into the stream if your XML knew about them, then allow Wicket to go through its normal process. I don't think anything here

Re: How can I share text resources with multiple web applications?

2009-03-20 Thread Brill Pappin
gotten a bit emotional and mixed up with several different discussions (which is likely my doing). - Brill On 21-Mar-09, at 1:29 AM, James Carman wrote: On Sat, Mar 21, 2009 at 1:15 AM, Brill Pappin br...@pappin.ca wrote: In fact there have been several instances where having the resources

Re: Diference between model's

2009-03-20 Thread Brill Pappin
I'm likely not the correct person to answer this clearly, but I'm sure someone will correct me if I get it wrong :) Essentially the Loadable version has the load() method which is called when the model must be initialized from some other source (as in from a database when you always want

Re: How can I share text resources with multiple web applications?

2009-03-20 Thread Brill Pappin
Ahh... yes of course. I was hoping for a switch that would put the html there as well, and not include the extra resource config :) Oh well... its not too big a deal. - Brill On 21-Mar-09, at 1:44 AM, James Carman wrote: On Sat, Mar 21, 2009 at 1:35 AM, Brill Pappin br...@pappin.ca wrote

  1   2   3   >