Re: [Wicket-user] AbstractRequestTargetUrlCodingStrategy implementation

2006-08-15 Thread Frank Bille
Hey KarlI can show you one of my first attempts to use IRequestTargetUrlCodingStrategy. It's for a never-published weblog I wrote a while ago. It maps 
http://localhost/weblog/article/some_article_title_in_url_formtonew BlogItemPage(BlogItem blogItem)which means I do the resolving of the BlogItem object from a DAO in the IRequestTargetUrlCodingStrategy.
I think it somewhat covers your needs:BlogItemPageUrlCodingStrategy.javaimport java.util.regex.Matcher;import java.util.regex.Pattern;import 
dk.billen.weblog.dao.BlogItemDAO;import dk.billen.weblog.domain.BlogItem;import dk.billen.weblog.frontend.pages.BlogItemPage;import dk.billen.weblog.frontend.pages.FrontendFrontPage;import wicket.IRequestTarget
;import wicket.Page;import wicket.PageParameters;import wicket.request.RequestParameters;import wicket.request.target.coding.IRequestTargetUrlCodingStrategy;import wicket.request.target.component.BookmarkablePageRequestTarget
;import wicket.request.target.component.PageRequestTarget;/*** */public class BlogItemPageUrlCodingStrategy implements IRequestTargetUrlCodingStrategy { private BlogItemDAO blogItemDAO;
 /** * @param blogItemDAO */ public BlogItemPageUrlCodingStrategy(BlogItemDAO blogItemDAO) {  this.blogItemDAO = blogItemDAO; } public IRequestTarget decode(RequestParameters requestParameters) {
  IRequestTarget target = null;  String path = requestParameters.getPath();  Pattern pat = Pattern.compile(^\\/article\\/([^\\/]+)$);  Matcher mat = pat.matcher(path);
  if (mat.matches()) {   String title = mat.group(1);   BlogItem blogItem = blogItemDAO.get(title);   Page page = null;   if (blogItem == null) {page = new FrontendFrontPage();
   } else {page = new BlogItemPage(blogItem);   }   target = new PageRequestTarget(page);  }  return target; } public CharSequence encode(IRequestTarget requestTarget) {
  StringBuffer buffer = new StringBuffer();  if (requestTarget instanceof BookmarkablePageRequestTarget) {   BookmarkablePageRequestTarget target = (BookmarkablePageRequestTarget) requestTarget;
   PageParameters pageParameters = target.getPageParameters();   String title = pageParameters.getString(articleTitle);  buffer.append(/article/);
   buffer.append(title);  }  return buffer.toString(); } public boolean matches(IRequestTarget requestTarget) {  boolean matches = false;  if (requestTarget instanceof BookmarkablePageRequestTarget) {
   BookmarkablePageRequestTarget target = (BookmarkablePageRequestTarget) requestTarget;   if (BlogItemPage.class.equals(target.getPageClass())) {matches = true;   }
  }  return matches; }}BlogItemPage.javaimport wicket.PageParameters;import dk.billen.weblog.command.CommandInterface;
import dk.billen.weblog.command.CommandRequest;import dk.billen.weblog.domain.BlogItem;import dk.billen.weblog.frontend.components.BlogItemPanel;public class BlogItemPage extends FrontendBasePage {
 private static final long serialVersionUID = 1L; public BlogItemPage(BlogItem blogItem) {  add(new BlogItemPanel(item, blogItem)); } public static class ShowBlogItem implements CommandInterface {
  private static final long serialVersionUID = 1L;private BlogItem blogItem;  public ShowBlogItem(BlogItem blogItem) {   super();   this.blogItem = blogItem;
  }  public BlogItem getBlogItem() {   return blogItem;  }  public void execute(CommandRequest request) {   PageParameters pageParameters = new PageParameters();
   pageParameters.add(articleId,  + blogItem.getId());   request.setResponsePage(BlogItemPage.class, pageParameters);  } }}
And then in *Application.java #init()...
mount(/article, new BlogItemPageUrlCodingStrategy(getBlogItemDAO()));...Hope it makes sense.
On 8/15/06, Karl M. Davis [EMAIL PROTECTED] wrote:





Hello 
all,

What I would like to 
have is a sitewhere user-specific feature pages map to hierarchical 
URLs. For example:* /site/user/karl/blog/2006/08/14 maps to 
BlogViewer(bob, 2006, 08, 14)* 
/site/user/karl/content/BestEssayEver maps to ContentViewer(fred, 
MyLifeStory)* /site/user/fred/content/BestEssayEver maps to 
ContentViewer(fred, BestEssayEver)

I could cheat and 
use Bookmarkable pages but this would leave the users also being passed as 
strings-- I'd rather resolve them ahead of time and pass the pages the real 
Actor instances.

In order to do that, 
I thinkI'll have to write an implementation of 
AbstractRequestTargetUrlCodingStrategy that encodes and decodes the pages. 
Also, I will have to have a guarantee that each of the mounted pages has a 
constructor in the form of Constructor(user, string[] 
params).

The 
AbstractRequestTargetUrlCodingStrategy shouldn't be all that hard to write, but 
I think the aforementioned guarantee will require an implementation of 
IRequestTarget similar to IBookmarkablePageRequestTarget that stores the 
request's parameters for the pages. From what I can see, this would also 
be simple to write as it seems to be mostly a data-storage class. However, 
I am unsure of how to wire up Wicket to use my new IRequestTarget 

[Wicket-user] Best way to get contents of the manifest.MF file?

2006-08-15 Thread Nino Wael








Hi whats the best way to retrieve information from
the manifest file?



Ive been looking at servletcontext but that
does not seem to be a very wicket like approach?



Should I register the manifest file as a resource and
use it that way?





Regards Nino






-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] wicket tags

2006-08-15 Thread Alex Objelean

I was wondering if wouldn't it be better if the rendered page would not
contain wicket tags and wicket:id attribute? 
The root problem is that validating the generated HTML returns errors,
starting with: 
there is no attribute xmlns:wicket.

Does it make sense? Thank you! 
-- 
View this message in context: 
http://www.nabble.com/wicket-tags-tf2107902.html#a5810177
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] wicket tags

2006-08-15 Thread Mats Norén
You can turn this of in your application.init()
getMarkupSettings().setStripWicketTags(true)

/Mats

On 8/15/06, Alex Objelean [EMAIL PROTECTED] wrote:

 I was wondering if wouldn't it be better if the rendered page would not
 contain wicket tags and wicket:id attribute?
 The root problem is that validating the generated HTML returns errors,
 starting with:
 there is no attribute xmlns:wicket.

 Does it make sense? Thank you!
 --
 View this message in context: 
 http://www.nabble.com/wicket-tags-tf2107902.html#a5810177
 Sent from the Wicket - User forum at Nabble.com.


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] wicket tags

2006-08-15 Thread Frank Bille
You can disable all those tags by addingconfigure(DEPLOYMENT)to your Application#init()- FrankOn 8/15/06, Alex Objelean 
[EMAIL PROTECTED] wrote:I was wondering if wouldn't it be better if the rendered page would not
contain wicket tags and wicket:id attribute?The root problem is that validating the generated HTML returns errors,starting with:there is no attribute xmlns:wicket.Does it make sense? Thank you!
--View this message in context: http://www.nabble.com/wicket-tags-tf2107902.html#a5810177Sent from the Wicket - User forum at 
Nabble.com.-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimohttp://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Voicetribe open beta

2006-08-15 Thread Johannes Fahrenkrug
That's quite a neat idea!
It shows what beautiful applications you can build with Wicket.
You might want to throw in a custom ErrorPage, though:

http://www.voicetribe.com/app/user/DvdDetails/discId/6259173670902569022%27


- Johannes.

Nathan Hamblen wrote:

Voicetribe is in open beta. (Now you can finally figure out what it is.)

http://www.voicetribe.com/

Sign up for an account, pop in a DVD, and record something. Don't worry,
you can't possibly say, Testing, 1 ... 2 ... 3 any worse than I do.
All the non-serious recordings will be scrapped when the beta is over.
Or if you're ready to leave your mark in the history of film commentary,
please, be our guest!

What am I talking about? Go to the site and see for yourself. Yes, it's
in Wicket. No, it's not a scooter!

Nathan


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

  



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Woogle and Woogle

2006-08-15 Thread Johannes Fahrenkrug
How about Figurative Speech :)
I'd change the name rather sooner than later: If Woogle becomes 
popular, Google might give you a call. And they'd have a point, too: You 
are offering a very similar service (search, that is), with exactly the 
same look of the logo (probably copy and pasted), with just one letter 
changed.
See Lindows: http://en.wikipedia.org/wiki/Microsoft_vs._Lindows
See Mike Rowe Soft: 
http://www.cnn.com/2004/TECH/internet/01/19/offbeat.mike.rowe.soft.ap/

I know, that's MS, but Google sues, too. See Froogles.com: 
http://news.com.com/Google+sues+Froogles.com/2100-1030_3-5676955.html

So, it might be a good idea to change the name :)

- Johannes

Frank Bille wrote:

 Hehe, yeah I'm not very original. Perhaps we should vote for a 
 different name? Any good surgestions?

 - Frank


 On 8/14/06, *Alexandre Bairos*  [EMAIL PROTECTED] 
 mailto:[EMAIL PROTECTED] wrote:

 http://www.gujian.nI'm not saying et/woogle/
 http://www.gujian.net/woogle/

 http://woogle.billen.dk/search

 :)



 -
 Using Tomcat but need to do more? Need to support web services,
 security?
 Get stuff done quickly with pre-integrated technology to make your
 job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642

 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 https://lists.sourceforge.net/lists/listinfo/wicket-user





-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642



___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
  



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Woogle and Woogle

2006-08-15 Thread Johannes Fahrenkrug
Frank,

I'm sorry, I only clicked on the Woogle image search link. I thought 
they were both the same (and was already wondering, because the image 
search seems to be a PHP app ;-)).

Well, I hope Woogle will be popular among it's target audience!

I like your third suggestion hehe.

How about
Wicketrack,
Wahoo (no, wait, same problem ;-)),
Wicket Indexer,
Quo Wicket,  (--- my favorite)
Wicket Query

Well, that's all I can think of. Btw, a very pretty and very useful 
application! Thanks a lot!

- Johannes


Frank Bille wrote:

 Hmm well.. I'm not expecting Woogle to be popular, but maybe you're 
 right anyway. I lige Woogle, but I'm no fanatic either.

 So how about:

 * Wicket Resources
 * Search.wicket 
 * Tired of finding POOP? ;)
 * 
 The-Mean-Search-Machine-For-Finding-The-Coolest-Resources-About-The-Hottest-Tech-Evah!
   (or TMSMFFTCRATHTE.com)


 I'm out of ideas.

 - Frank



 On 8/15/06, *Johannes Fahrenkrug* [EMAIL PROTECTED] 
 mailto:[EMAIL PROTECTED] wrote:

 How about Figurative Speech :)
 I'd change the name rather sooner than later: If Woogle becomes
 popular, Google might give you a call. And they'd have a point,
 too: You
 are offering a very similar service (search, that is), with
 exactly the
 same look of the logo (probably copy and pasted), with just one letter
 changed.
 See Lindows: http://en.wikipedia.org/wiki/Microsoft_vs._Lindows
 http://en.wikipedia.org/wiki/Microsoft_vs._Lindows
 See Mike Rowe Soft:
 http://www.cnn.com/2004/TECH/internet/01/19/offbeat.mike.rowe.soft.ap/

 I know, that's MS, but Google sues, too. See  Froogles.com
 http://Froogles.com:
 http://news.com.com/Google+sues+Froogles.com/2100-1030_3-5676955.html

 So, it might be a good idea to change the name :)

 - Johannes

 Frank Bille wrote:

  Hehe, yeah I'm not very original. Perhaps we should vote for a
  different name? Any good surgestions?
 
  - Frank
 
 
  On 8/14/06, *Alexandre Bairos*  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
  mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 
  http://www.gujian.nI'm http://www.gujian.nI%27m not saying
 et/woogle/
  http://www.gujian.net/woogle/
 
  http://woogle.billen.dk/search http://woogle.billen.dk/search
 
  :)
 
 
 
 
 -
  Using Tomcat but need to do more? Need to support web services,
  security?
  Get stuff done quickly with pre-integrated technology to
 make your
  job easier
  Download IBM WebSphere Application Server v.1.0.1 based on
 Apache
  Geronimo
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
  mailto: Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 https://lists.sourceforge.net/lists/listinfo/wicket-user
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 
 

 
 -
 Using Tomcat but need to do more? Need to support web services,
 security?
 Get stuff done quickly with pre-integrated technology to make
 your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 
 
 
 ___
 Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 


 -

 Using Tomcat but need to do more? Need to support web services,
 security?
 Get stuff done quickly with pre-integrated technology to make your
 job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 

Re: [Wicket-user] Woogle and Woogle

2006-08-15 Thread Pierre-Yves Saumont
 The-Mean-Search-Machine-For-Finding-The-Coolest-Resources-About-The-Hottest-Tech-Evah!
(or TMSMFFTCRATHTE.com)

I love this one ;-)

Pierre-Yves

Frank Bille a écrit :
 Hmm well.. I'm not expecting Woogle to be popular, but maybe you're 
 right anyway. I lige Woogle, but I'm no fanatic either.
 
 So how about:
 
 * Wicket Resources
 * Search.wicket 
 * Tired of finding POOP? ;)
 * 
 The-Mean-Search-Machine-For-Finding-The-Coolest-Resources-About-The-Hottest-Tech-Evah!
   (or TMSMFFTCRATHTE.com)
 
 
 I'm out of ideas.
 
 - Frank
 
 
 
 On 8/15/06, *Johannes Fahrenkrug* [EMAIL PROTECTED] mailto:[EMAIL 
 PROTECTED] 
 wrote:
 
 How about Figurative Speech :)
 I'd change the name rather sooner than later: If Woogle becomes
 popular, Google might give you a call. And they'd have a point, too: You
 are offering a very similar service (search, that is), with exactly the
 same look of the logo (probably copy and pasted), with just one letter
 changed.
 See Lindows: http://en.wikipedia.org/wiki/Microsoft_vs._Lindows
 http://en.wikipedia.org/wiki/Microsoft_vs._Lindows
 See Mike Rowe Soft:
 http://www.cnn.com/2004/TECH/internet/01/19/offbeat.mike.rowe.soft.ap/
 
 I know, that's MS, but Google sues, too. See  Froogles.com
 http://Froogles.com:
 http://news.com.com/Google+sues+Froogles.com/2100-1030_3-5676955.html
 
 So, it might be a good idea to change the name :)
 
 - Johannes
 
 Frank Bille wrote:
 
   Hehe, yeah I'm not very original. Perhaps we should vote for a
   different name? Any good surgestions?
  
   - Frank
  
  
   On 8/14/06, *Alexandre Bairos*  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
   mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
  
   http://www.gujian.nI'm not saying et/woogle/
   http://www.gujian.net/woogle/
  
   http://woogle.billen.dk/search http://woogle.billen.dk/search
  
   :)
  
  
  
  
 -
   Using Tomcat but need to do more? Need to support web services,
   security?
   Get stuff done quickly with pre-integrated technology to make
 your
   job easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
   Geronimo
  
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
   mailto: Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
 https://lists.sourceforge.net/lists/listinfo/wicket-user
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
  
  
 
  
  
 -
  Using Tomcat but need to do more? Need to support web services,
 security?
  Get stuff done quickly with pre-integrated technology to make your
 job easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  
  
  
  ___
  Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
 
 
 -
 
 Using Tomcat but need to do more? Need to support web services,
 security?
 Get stuff done quickly with pre-integrated technology to make your
 job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 
 

Re: [Wicket-user] Form-question

2006-08-15 Thread Gwyn Evans
Sorry, just speed reading, saw the setOutputMarkupId() call which made
me think you might be doing Ajax...

As for your real question, I don't know.  I'm probably wrong, as it's
been a while since I looked into anything complex with models, but
  new CompoundPropertyModel(
new PersonPropertyModel(EditTeamPersonPanel.this.getModel()
seems to have an extra layer beyond what I'd expect?

If it's not that, then I'd be looking to see if it would be looking
for something like setObject(Component c, String s) rather than
setObject(Component c, Object o)?

/Gwyn


On 14/08/06, Mats Norén [EMAIL PROTECTED] wrote:
 Not really, I'm not using any Ajax-stuff or anything like that.
 How do you mean?

 /Mats


 On 8/14/06, Gwyn Evans [EMAIL PROTECTED] wrote:
  Does this thread apply?
  (http://www.nabble.com/ajax-failed-to-update-a-component-%28wicket-1.2%29-tf1844050.html#a5033398)
  /Gwyn
 
  On 13/08/06, Mats Norén [EMAIL PROTECTED] wrote:
   What I want the following code to do is to iterate all propertyTypes
   and create or lookup the appropriate property on my Person-object and
   create a TextField for each one.
  
   I've defined a model for the propertyTypes and a model for a
   TeamPerson-object which contains my Person.
  
   Everything works fine except that the setObject(Component c, Object o)
   in  PersonPropertyModel is never called.
   On screen the form renders and look fine but nothing gets written back.
  
   Would appreciate another pair of eyes on this.
  
  
   IModel propertyTypes = new LoadableDetachableModel() {
   protected Object load() {
   return userService.allPropertyTypes();
   }
   };
  
   ListView dynamicProperties = new
   ListView(dynamicProperties, propertyTypes) {
  
   protected void populateItem(ListItem item) {
  
   TextField valueField = new TextField(value);
   valueField.setOutputMarkupId(true);
   FormComponentFeedbackBorder feedbackBorder = new
   FormComponentFeedbackBorder(feedback);
   feedbackBorder.setRenderBodyOnly(true);
   feedbackBorder.add(valueField);
  
   item.add(feedbackBorder);
  
   Label label = new Label(propertyType.name);
   label.add(new AttributeModifier(for, true, new
   Model(valueField.getId(;
   item.add(label);
  
   }
  
   protected IModel getListItemModel(IModel
   listViewModel, int index) {
   PropertyType pt = (PropertyType)
   super.getListItemModel(listViewModel, index).getObject(null);
   return new CompoundPropertyModel(new
   PersonPropertyModel(EditTeamPersonPanel.this.getModel(), pt));
   }
  
   }.setReuseItems(true);
  
  
  
   public class PersonPropertyModel extends AbstractModel {
  
   private final IModel teamPerson;
   private final PropertyType propertyType;
  
   public PersonPropertyModel(IModel teamPersonModel,
   PropertyType propertyType) {
   this.teamPerson = teamPersonModel;
   this.propertyType = propertyType;
   }
  
   public Object getObject(Component c) {
   logger.info(Calling getObject for component:  + c.getId());
   TeamPerson tp = (TeamPerson) teamPerson.getObject(c);
   Person person = tp.getPerson();
   PersonProperty pp = person.getPropertyOfType(propertyType);
   if (pp == null) {
   logger.info(Adding new property);
   pp = new PersonProperty();
   pp.setPerson(person);
   pp.setPropertyType(propertyType);
   }
   return pp;
   }
  
   public void setObject(Component c, Object o) {
   TeamPerson tp = (TeamPerson) teamPerson.getObject(c);
   Person person = tp.getPerson();
   logger.info(Calling setObject for property:  +
   ((PersonProperty) o).getPropertyType().getName());
   person.setPropertyOfType((PersonProperty) o);
   }
  
  
   public void detach() {
   super.detach();
   teamPerson.detach();
   }
   }
  
   /Mats
  
   -
   Using Tomcat but need to do more? Need to support web services, security?
   Get stuff done quickly with pre-integrated technology to make your job 
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
   http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
 
 
  --
  Download 

Re: [Wicket-user] Best way to get contents of the manifest.MF file?

2006-08-15 Thread Gwyn Evans
It depends on what you want from it - You could get some information
from it via the Package class, e.g.

public String getVersion()
{
String implVersion = null;
Package pkg = this.getClass().getPackage();
if (pkg != null)
{
implVersion = pkg.getImplementationVersion();
}
return Strings.isEmpty(implVersion) ? n/a : implVersion;
}
See the java.lang.Package for more info.  Beyond that though, I think
you'll have to address the manifest.mf specifically - I'd not have
expected a resource to find it easily...

E.g. See last post here -
http://forum.java.sun.com/thread.jspa?threadID=642761messageID=3791501


On 15/08/06, Nino Wael [EMAIL PROTECTED] wrote:




 Hi whats the best way to retrieve information from the manifest file?



 I've been looking at servletcontext but that does not seem to be a very
 wicket like approach?



 Should I register the manifest file as a resource and use it that way?





 Regards Nino
 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642

 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user





-- 
Download Wicket 1.2.1 now! - http://wicketframework.org

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] how to disable trigger button of DatePicker

2006-08-15 Thread Nili Adoram
Hi all,
I have a DatePicker within a form which I want to disable when I press a 
certain radio,
but it seems impossible to disable this trigger button.
The DatePicker provides no getter to this button, and it is private and 
final.
Since wicket specifically sets the id of this image I tried adding an 
AttributeModifier with a name:

endDatePicker.get(trigger).add(new AttributeModifier(name, true, new 
Model(endDateTrigger)));


Next I called a javascript that  looks for this element by name and sets 
the disabled attribute to true.

However, clicking this image continues to open the calendar.
How can I prevent the calendar from opening ?

Thanks,
Nili

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Woogle and Woogle

2006-08-15 Thread Johan Compagner
WicklejohanOn 8/15/06, Frank Bille [EMAIL PROTECTED] wrote:
Hmm well.. I'm not expecting Woogle to be popular, but maybe you're right anyway. I lige Woogle, but I'm no fanatic either.So how about:Wicket ResourcesSearch.wicket

Tired of finding POOP? ;)The-Mean-Search-Machine-For-Finding-The-Coolest-Resources-About-The-Hottest-Tech-Evah! (or TMSMFFTCRATHTE.com)I'm out of ideas.

- FrankOn 8/15/06, Johannes Fahrenkrug 
[EMAIL PROTECTED] wrote:
How about Figurative Speech :)I'd change the name rather sooner than later: If Woogle becomespopular, Google might give you a call. And they'd have a point, too: Youare offering a very similar service (search, that is), with exactly the
same look of the logo (probably copy and pasted), with just one letterchanged.See Lindows: 
http://en.wikipedia.org/wiki/Microsoft_vs._Lindows
See Mike Rowe Soft:http://www.cnn.com/2004/TECH/internet/01/19/offbeat.mike.rowe.soft.ap/
I know, that's MS, but Google sues, too. See 
Froogles.com:
http://news.com.com/Google+sues+Froogles.com/2100-1030_3-5676955.htmlSo, it might be a good idea to change the name :)
- JohannesFrank Bille wrote: Hehe, yeah I'm not very original. Perhaps we should vote for a different name? Any good surgestions? - Frank On 8/14/06, *Alexandre Bairos*  
[EMAIL PROTECTED] mailto:
[EMAIL PROTECTED] wrote: 
http://www.gujian.nI'm not saying et/woogle/ http://www.gujian.net/woogle/
 http://woogle.billen.dk/search
 :) - Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo 

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642 
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___ Wicket-user mailing list 
Wicket-user@lists.sourceforge.net mailto:
Wicket-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/wicket-user
 https://lists.sourceforge.net/lists/listinfo/wicket-user

-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___Wicket-user mailing list

Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] how to disable trigger button of DatePicker

2006-08-15 Thread Dipu



I ma not sure if this is the best solution, i would 
have an alternative image and swap it. 

hope thesnippet below helps

div id="clickableIcon" 
style="display:block"
span 
wicket:id="returnDatePicker"/span ( Date 
Picker)
/div
div id="nonClickableIcon" 
style="display:none"
span
img alt="" 
src="" style="cursor: none; border: 
none;" 
/span
/div

input wicket:id="myRadio" id="oneway_myRadio" type="radio" 
/ Radio

Regards
Dipu
- Original Message - 
From: "Nili Adoram" [EMAIL PROTECTED]
To: wicket-user@lists.sourceforge.net
Sent: Tuesday, August 15, 2006 12:27 
PM
Subject: [Wicket-user] how to disable trigger 
button of DatePicker
 Hi all, I have a DatePicker within a form which I want to 
disable when I press a  certain radio, but it seems impossible 
to disable this trigger button. The DatePicker provides no getter to 
this button, and it is private and  final. Since wicket 
specifically sets the id of this image I tried adding an  
AttributeModifier with a name:  
endDatePicker.get("trigger").add(new AttributeModifier("name", true, new 
 Model("endDateTrigger")));   Next I called a 
_javascript_ that looks for this element by name and sets  the 
disabled attribute to true.  However, clicking this image 
continues to open the calendar. How can I prevent the calendar from 
opening ?  Thanks, Nili  
- 
Using Tomcat but need to do more? Need to support web services, 
security? Get stuff done quickly with pre-integrated technology to make 
your job easier Download IBM WebSphere Application Server v.1.0.1 based 
on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642 ___ 
Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Woogle and Woogle

2006-08-15 Thread Ayodeji Aladejebi
WinkdabarOn 8/15/06, Johan Compagner [EMAIL PROTECTED] wrote:
WicklejohanOn 8/15/06, Frank Bille 
[EMAIL PROTECTED] wrote:
Hmm well.. I'm not expecting Woogle to be popular, but maybe you're right anyway. I lige Woogle, but I'm no fanatic either.So how about:Wicket Resources
Search.wicket

Tired of finding POOP? ;)The-Mean-Search-Machine-For-Finding-The-Coolest-Resources-About-The-Hottest-Tech-Evah! (or TMSMFFTCRATHTE.com)I'm out of ideas.


- FrankOn 8/15/06, Johannes Fahrenkrug 

[EMAIL PROTECTED] wrote:
How about Figurative Speech :)I'd change the name rather sooner than later: If Woogle becomespopular, Google might give you a call. And they'd have a point, too: Youare offering a very similar service (search, that is), with exactly the
same look of the logo (probably copy and pasted), with just one letterchanged.See Lindows: 

http://en.wikipedia.org/wiki/Microsoft_vs._Lindows
See Mike Rowe Soft:http://www.cnn.com/2004/TECH/internet/01/19/offbeat.mike.rowe.soft.ap/
I know, that's MS, but Google sues, too. See 
Froogles.com:

http://news.com.com/Google+sues+Froogles.com/2100-1030_3-5676955.htmlSo, it might be a good idea to change the name :)
- JohannesFrank Bille wrote: Hehe, yeah I'm not very original. Perhaps we should vote for a different name? Any good surgestions? - Frank On 8/14/06, *Alexandre Bairos*  
[EMAIL PROTECTED] mailto:

[EMAIL PROTECTED] wrote: 
http://www.gujian.nI'm not saying et/woogle/ http://www.gujian.net/woogle/
 http://woogle.billen.dk/search
 :) - Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo 


http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642 

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___ Wicket-user mailing list 

Wicket-user@lists.sourceforge.net mailto:
Wicket-user@lists.sourceforge.net 

https://lists.sourceforge.net/lists/listinfo/wicket-user
 https://lists.sourceforge.net/lists/listinfo/wicket-user

-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___Wicket-user mailing list


Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing listWicket-user@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list

Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
-- It takes insanity to drive in sanity - MeAladejebi Ayodeji A., DabarObjects SolutionsEmail: 
[EMAIL PROTECTED]Mobile: +234 803 589 1780Web: www.dabarobjects.comCommunity:www.cowblock.net
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo

Re: [Wicket-user] Woogle and Woogle

2006-08-15 Thread Alexandre Bairos
http://www.wickle.com/wiki/index.php/Main_Page:) The a project/product with this name.I like Wicketrack.Other ideas: Wicketrail
WicketeerWookie :)On 8/15/06, Johan Compagner [EMAIL PROTECTED] wrote:
WicklejohanOn 8/15/06, Frank Bille 
[EMAIL PROTECTED] wrote:
Hmm well.. I'm not expecting Woogle to be popular, but maybe you're right anyway. I lige Woogle, but I'm no fanatic either.So how about:Wicket Resources
Search.wicket

Tired of finding POOP? ;)The-Mean-Search-Machine-For-Finding-The-Coolest-Resources-About-The-Hottest-Tech-Evah! (or TMSMFFTCRATHTE.com)I'm out of ideas.


- FrankOn 8/15/06, Johannes Fahrenkrug 

[EMAIL PROTECTED] wrote:
How about Figurative Speech :)I'd change the name rather sooner than later: If Woogle becomespopular, Google might give you a call. And they'd have a point, too: Youare offering a very similar service (search, that is), with exactly the
same look of the logo (probably copy and pasted), with just one letterchanged.See Lindows: 

http://en.wikipedia.org/wiki/Microsoft_vs._Lindows
See Mike Rowe Soft:http://www.cnn.com/2004/TECH/internet/01/19/offbeat.mike.rowe.soft.ap/
I know, that's MS, but Google sues, too. See 
Froogles.com:

http://news.com.com/Google+sues+Froogles.com/2100-1030_3-5676955.htmlSo, it might be a good idea to change the name :)
- JohannesFrank Bille wrote: Hehe, yeah I'm not very original. Perhaps we should vote for a different name? Any good surgestions? - Frank On 8/14/06, *Alexandre Bairos*  
[EMAIL PROTECTED] mailto:

[EMAIL PROTECTED] wrote: 
http://www.gujian.nI'm not saying et/woogle/ http://www.gujian.net/woogle/
 http://woogle.billen.dk/search
 :) - Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo 


http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642 

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___ Wicket-user mailing list 

Wicket-user@lists.sourceforge.net mailto:
Wicket-user@lists.sourceforge.net 

https://lists.sourceforge.net/lists/listinfo/wicket-user
 https://lists.sourceforge.net/lists/listinfo/wicket-user

-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___Wicket-user mailing list


Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing listWicket-user@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list

Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo

Re: [Wicket-user] Woogle and Woogle

2006-08-15 Thread Frank Bille
After long and intensive discussion on IRC I've reached the conclusion that Woogle is just perfect. If Google has a problem with it, I kick it in the ball. ;) (If it *really* has a problem with it, I deal with it then)
- FrankOn 8/15/06, Alexandre Bairos [EMAIL PROTECTED] wrote:
http://www.wickle.com/wiki/index.php/Main_Page:) The a project/product with this name.
I like Wicketrack.Other ideas: Wicketrail
WicketeerWookie :)On 8/15/06, Johan Compagner 
[EMAIL PROTECTED] wrote:

WicklejohanOn 8/15/06, Frank Bille 

[EMAIL PROTECTED] wrote:
Hmm well.. I'm not expecting Woogle to be popular, but maybe you're right anyway. I lige Woogle, but I'm no fanatic either.So how about:Wicket Resources
Search.wicket

Tired of finding POOP? ;)The-Mean-Search-Machine-For-Finding-The-Coolest-Resources-About-The-Hottest-Tech-Evah! (or TMSMFFTCRATHTE.com)I'm out of ideas.



- FrankOn 8/15/06, Johannes Fahrenkrug 


[EMAIL PROTECTED] wrote:
How about Figurative Speech :)I'd change the name rather sooner than later: If Woogle becomespopular, Google might give you a call. And they'd have a point, too: Youare offering a very similar service (search, that is), with exactly the
same look of the logo (probably copy and pasted), with just one letterchanged.See Lindows: 


http://en.wikipedia.org/wiki/Microsoft_vs._Lindows
See Mike Rowe Soft:http://www.cnn.com/2004/TECH/internet/01/19/offbeat.mike.rowe.soft.ap/
I know, that's MS, but Google sues, too. See 
Froogles.com:


http://news.com.com/Google+sues+Froogles.com/2100-1030_3-5676955.htmlSo, it might be a good idea to change the name :)
- JohannesFrank Bille wrote: Hehe, yeah I'm not very original. Perhaps we should vote for a different name? Any good surgestions? - Frank On 8/14/06, *Alexandre Bairos*  
[EMAIL PROTECTED] mailto:


[EMAIL PROTECTED] wrote: 
http://www.gujian.nI'm not saying et/woogle/ http://www.gujian.net/woogle/
 http://woogle.billen.dk/search
 :) - Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo 



http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642 


http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___ Wicket-user mailing list 


Wicket-user@lists.sourceforge.net mailto:
Wicket-user@lists.sourceforge.net 


https://lists.sourceforge.net/lists/listinfo/wicket-user
 https://lists.sourceforge.net/lists/listinfo/wicket-user

-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo


http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___Wicket-user mailing list



Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing listWicket-user@lists.sourceforge.net


https://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo


http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list


Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list

Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user



Re: [Wicket-user] Voicetribe open beta

2006-08-15 Thread Nathan Hamblen
Sorry about that. I'm eager to see Linux supported as well, but it's a
big hurdle.

Nathan

Otan wrote:
 :(( There's no way for me to try it. Im using Linux.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Woogle and Woogle

2006-08-15 Thread Frank Bille
BTW thanx for all the name surgestions. It's nice to have if Woogle gets so popular that it draws the attention of Google.- FrankOn 8/15/06, Frank Bille
 [EMAIL PROTECTED] wrote:
After long and intensive discussion on IRC I've reached the conclusion that Woogle is just perfect. If Google has a problem with it, I kick it in the ball. ;) (If it *really* has a problem with it, I deal with it then)

- FrankOn 8/15/06, Alexandre Bairos 
[EMAIL PROTECTED] wrote:
http://www.wickle.com/wiki/index.php/Main_Page:) The a project/product with this name.
I like Wicketrack.Other ideas: Wicketrail
WicketeerWookie :)On 8/15/06, Johan Compagner 

[EMAIL PROTECTED] wrote:

WicklejohanOn 8/15/06, Frank Bille 


[EMAIL PROTECTED] wrote:
Hmm well.. I'm not expecting Woogle to be popular, but maybe you're right anyway. I lige Woogle, but I'm no fanatic either.So how about:Wicket Resources
Search.wicket

Tired of finding POOP? ;)The-Mean-Search-Machine-For-Finding-The-Coolest-Resources-About-The-Hottest-Tech-Evah! (or TMSMFFTCRATHTE.com)I'm out of ideas.




- FrankOn 8/15/06, Johannes Fahrenkrug 



[EMAIL PROTECTED] wrote:
How about Figurative Speech :)I'd change the name rather sooner than later: If Woogle becomespopular, Google might give you a call. And they'd have a point, too: Youare offering a very similar service (search, that is), with exactly the
same look of the logo (probably copy and pasted), with just one letterchanged.See Lindows: 



http://en.wikipedia.org/wiki/Microsoft_vs._Lindows
See Mike Rowe Soft:http://www.cnn.com/2004/TECH/internet/01/19/offbeat.mike.rowe.soft.ap/
I know, that's MS, but Google sues, too. See 
Froogles.com:



http://news.com.com/Google+sues+Froogles.com/2100-1030_3-5676955.htmlSo, it might be a good idea to change the name :)
- JohannesFrank Bille wrote: Hehe, yeah I'm not very original. Perhaps we should vote for a different name? Any good surgestions? - Frank On 8/14/06, *Alexandre Bairos*  
[EMAIL PROTECTED] mailto:



[EMAIL PROTECTED] wrote: 
http://www.gujian.nI'm not saying et/woogle/ http://www.gujian.net/woogle/
 http://woogle.billen.dk/search
 :) - Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo 




http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642 



http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___ Wicket-user mailing list 



Wicket-user@lists.sourceforge.net mailto:
Wicket-user@lists.sourceforge.net 



https://lists.sourceforge.net/lists/listinfo/wicket-user
 https://lists.sourceforge.net/lists/listinfo/wicket-user

-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo



http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___Wicket-user mailing list




Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing listWicket-user@lists.sourceforge.net



https://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo



http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list



Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo



[Wicket-user] Pro Wicket beta book available

2006-08-15 Thread Per Ejeklint
Just want to inform that Apress have had problems with their  
downloadable beta books, but it's fixed. I just bought and  
downloaded Pro Wicket http://www.apress.com/book/bookDisplay.html? 
bID=10189, there are 9 chapters + appendix and intro available.  
Looks very nice and will definitely be worth US$20 for me. So now I  
will make a nice brew (tea) and dig in.

Per


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] wicket-auth-roles-1.2.x

2006-08-15 Thread Eelco Hillenius
 Because  you   can  turn   on  JDK  1.5   features  to   have  the
 annotation-based authentication mechanism.

Yep :)

If there is enough interested, we could consider breaking the project
up in a 1.4 core and the 1.5 annotations part. Or... is this library
is pretty small and stable, and is meant as an example anyway, you can
copy paste the parts that suit you and build on it.

Eelco

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Pro Wicket beta book available

2006-08-15 Thread Ingram Chen
Thanks for great information !I just buy one two minutes ago !Congratulation all Wicketers~~On 8/15/06, Per Ejeklint 
[EMAIL PROTECTED] wrote:Just want to inform that Apress have had problems with their
downloadable beta books, but it's fixed. I just bought anddownloaded Pro Wicket http://www.apress.com/book/bookDisplay.html?
bID=10189, there are 9 chapters + appendix and intro available.Looks very nice and will definitely be worth US$20 for me. So now Iwill make a nice brew (tea) and dig in.Per-
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
-- Ingram ChenJava [EMAIL PROTECTED]Institue of BioMedical Sciences Academia Sinica Taiwanblog: 
http://www.javaworld.com.tw/roller/page/ingramchen
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] TinyMCE issues with resources

2006-08-15 Thread Robert McClay
I'm using wicket 1.2 jar and wicket-contrib-tinymce-1.0-SNAPSHOT.jar 
(built in maven from checking out 1.2 branch of wicket-stuff)

I've added TinyMCEPanel to my page via add(new TinyMCEPanel(tinyMCE));

When I click on the page (I'm using Fire Fox 1.5.0.6 under OS X), the 
following javascript errors are reported in the console:

Error: this.contentWindow has no properties
Source File: 
http://localhost:9092/car/loads/resources/wicket.contrib.tinymce.TinyMCEPanel/tiny_mce/tiny_mce_src.js
Line: 

2395

Error: editorTemplate has no properties
Source File: 
http://localhost:9092/car/loads/resources/wicket.contrib.tinymce.TinyMCEPanel/tiny_mce/tiny_mce_src.js
Line: 

3372

When I look at the java console, the following is reported:

15 Aug 2006 10:18:26,317 ERROR resource.SharedResourceRequestTarget - 
shared resource 
wicket.contrib.tinymce.TinyMCEPanel/tiny_mce/themes/simple/editor_template_src.js
 
not found
15 Aug 2006 10:18:26,331 ERROR resource.SharedResourceRequestTarget - 
shared resource 
wicket.contrib.tinymce.TinyMCEPanel/tiny_mce/langs/en.js not found
15 Aug 2006 10:18:26,351 ERROR resource.SharedResourceRequestTarget - 
shared resource 
wicket.contrib.tinymce.TinyMCEPanel/tiny_mce/themes/simple/css/editor_ui.css 
not found

So it appears not to have issues requesting 
http://localhost:9092/car/loads/resources/wicket.contrib.tinymce.TinyMCEPanel/tiny_mce/tiny_mce_src.js,
 
but the other resources are failing.

Any ideas? Thanks.



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] How to disable some dates in wicket DatePicker ?

2006-08-15 Thread akodo ghislain
Hi,
I'm using wicket component DatePicker.
I would like to disable some dates.
The documentation of the component on the site
http://www.dynarch.com/projects/calendar/ provides a method to disable some
date : (Calendar.setDisabledHandler ). But I dont know how to use this
feature in java/wicket.
Any Idea?
Thanks .



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Maven2 archetypes

2006-08-15 Thread Martin Funk
Hi,

I've been playing arround with maven archetypes as described in
http://maven.apache.org/guides/mini/guide-creating-archetypes.html

Things went faster as expected and at the end I came up with a maven
archetype for wicket. The archetype creates a project that looks very
much the same as a project createt using wicket-template from wicket-stuff.

If anyone is interested you can check out the patch file I attached to a
feature proposal for wicket-stuff.
[ 1540913 ] wicket-archetypes Maven2 archetypes for wicket
https://sourceforge.net/tracker/?func=detailatid=730671aid=1540913group_id=134391

Usage should be pretty straight foreward.
Once the patch is applied change into the subfolder of
wicket-archetypes. So far only one archetype is present :-)

 - mvn install
should install the archetype locally. After this it might be used like:

 - mvn archetype:create -DarchetypeGroupId=archetypeGroupId
-DarchetypeArtifactId=archetypeArtifactId \
-DarchetypeVersion=archetypeVersion
-DgroupId=groupId -DartifactId=artifactId
e.g.:
 - mvn archetype:create -DarchetypeGroupId=wicket
-DarchetypeArtifactId=wicket-archetype-template \
-DarchetypeVersion=1.0-SNAPSHOT
-DgroupId=de.mywicket.app -DartifactId=wicket-template


Have fun,

Martin

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Stop component rendering

2006-08-15 Thread wired

Hi All

With the following markup on a webpage:
 
wicket:link Login.html Login /wicket:link

is it possible to programmatically stop the anchor tag from being rendered? 

Many thanks

-- 
View this message in context: 
http://www.nabble.com/Stop-component-rendering-tf2111480.html#a5821885
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Pro Wicket beta book available

2006-08-15 Thread Erik Brakkee




I would buy it immediately if I would get the paper version of the book
when it is finished. Now I just have to wait. 

Ingram Chen wrote:
Thanks for great information !
I just buy one two minutes ago !
  
Congratulation all Wicketers~~
  
  On 8/15/06, Per Ejeklint 
[EMAIL PROTECTED] wrote:
  Just
want to inform that Apress have had problems with their

downloadable "beta books", but it's fixed. I just bought and
downloaded "Pro Wicket" http://www.apress.com/book/bookDisplay.html?
bID=10189, there are 9 chapters + appendix and intro available.
Looks very nice and will definitely be worth US$20 for me. So now I
will make a nice brew (tea) and dig in.

Per


-

Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___

Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

  
  
  
  
  
-- 
Ingram Chen
Java [EMAIL PROTECTED]
Institue of BioMedical Sciences Academia Sinica Taiwan
blog: 
http://www.javaworld.com.tw/roller/page/ingramchen
  

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  

___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
  




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Wicket Blog Post

2006-08-15 Thread Robert Moskal
I've discovered Wicket and was moved to sing its praises:

http://www.mostmedia.com/blogs/archive/2006/08/03/java-development-stack-acr
onymony

If I have time I hope to write up the experience I had porting some code in
an article for the wiki.

Regards, 


___
Robert Moskal
Most Media
Brooklyn, USA 
718-398-2170




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Buttons and Forms

2006-08-15 Thread Bruno Borges
How to set the default operation when ENTER is pressed any field in the form? There's a form with 4 buttons (in html and in java) that simply send user to others pages, and the normal button to submit data with no corresponding button in Java, only in the html.
Thanks-- Bruno BorgesSumma Technologies Inc.www.summa-tech.com(11) 8565-7739 - (11) 3846-1622
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket Blog Post

2006-08-15 Thread Igor Vaynberg
nice article, glad you are enjoying wicket :)-IgorOn 8/15/06, Robert Moskal [EMAIL PROTECTED]
 wrote:I've discovered Wicket and was moved to sing its praises:
http://www.mostmedia.com/blogs/archive/2006/08/03/java-development-stack-acronymonyIf I have time I hope to write up the experience I had porting some code inan article for the wiki.Regards,
___Robert MoskalMost MediaBrooklyn, USA718-398-2170-Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Buttons and Forms

2006-08-15 Thread Igor Vaynberg
by default the default button is the one that appears first in the markup - thats just how browsers work.the way i have done it in the past was to use input type=button instead of type=submit, these buttons would then set a value of some hidden field. you can init the hidden field to some default value so if the form is submitted via enter thats the value you get. havent translated all this into wicket yet.
-IgorOn 8/15/06, Bruno Borges [EMAIL PROTECTED] wrote:
How to set the default operation when ENTER is pressed any field in the form? There's a form with 4 buttons (in html and in java) that simply send user to others pages, and the normal button to submit data with no corresponding button in Java, only in the html.
Thanks-- Bruno BorgesSumma Technologies Inc.www.summa-tech.com
(11) 8565-7739 - (11) 3846-1622

-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] LoadableDetachableModels and Trees

2006-08-15 Thread Bruno Borges
Is it possible to use LDMs and Trees?I find quite difficult to understand how to put them toguether. Could anyone give some hint? :)Thanks-- Bruno BorgesSumma Technologies Inc.
www.summa-tech.com(11) 8565-7739 - (11) 3846-1622
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] A problem with BookmarkablePageLink

2006-08-15 Thread itsliang

Hi Johan,

Could you please tell me how to specify the path of wicket servlet?

Regards,
Chih-liang Chang


Johan Compagner wrote:
 
 Hmm when you specify the root AND the wicket servlet mapped to /*  then
 yes
 something goes wrong. I fixed this for 1.2.2 but this is not really the
 recommended approache
 You can run in the root just fine but don't specify the wicket servlet to
 /*
 
 That is only the best way for 2.0 where we have a filter.
 
 johan
 
 
 On 8/12/06, itsliang [EMAIL PROTECTED] wrote:


 Hi there,

 I've got a problem when I using BookmarkablePageLink. I wrote a very
 simple
 example to try out BookmarkablePageLink. In exmaple, you can find three
 web
 pages. In each web page, there are two links that can be used to link to
 the
 other two pages. And I only mount my second page as a BookmarkablePage.

 When I deploy the example to the root of my tomcat 5.5 (by extracting the
 war file to $TOMCAT$/webapps/ROOT/), which means I can access my app from
 http://localhost:8080/, the link in my second web page didn't work
 properly.
 However, if I not deploy the example to the root of my tomcat, let's say
 http://localhost:8080/TestBookmarkable/ for example, then everything
 works
 well without any problem.

 Is this a bug of wicket? or did I implement my example in the wrong way?
 The
 war file and source code of my example can be found here:
 http://www.nabble.com/user-files/280/TestBookmarkable.war
 TestBookmarkable.war
 http://www.nabble.com/user-files/281/TestBookmarkable.zip
 TestBookmarkable.zip

 Best regards,
 Chih-liang Chang

 For people who don't want to download these files, here is the source
 code:

 
 TestApplication.java

 package test;

 import test.page.FirstPage;
 import test.page.SecondPage;
 import wicket.protocol.http.WebApplication;

 public class TestApplication extends WebApplication {

 @Override
 public Class getHomePage() {
 return FirstPage.class;
 }

 @Override
 protected void init() {
 super.mountBookmarkablePage(/second, SecondPage.class);
 super.getMarkupSettings().setStripWicketTags(true);
 super.getMarkupSettings
 ().setStripXmlDeclarationFromOutput(true);
 super.init();
 }

 }

 
 FirstPage.java

 package test.page;

 import wicket.markup.html.WebPage;
 import wicket.markup.html.link.BookmarkablePageLink;
 import wicket.markup.html.link.PageLink;

 public class FirstPage extends WebPage {

 private static final long serialVersionUID = 1L;

 public FirstPage() {
 super.add(new BookmarkablePageLink(second,
 SecondPage.class));
 super.add(new PageLink(third, ThirdPage.class));
 }

 }

 
 SecondPage.java

 package test.page;

 import wicket.markup.html.WebPage;
 import wicket.markup.html.link.PageLink;

 public class SecondPage extends WebPage {

 private static final long serialVersionUID = 1L;

 public SecondPage() {
 super.add(new PageLink(first, FirstPage.class));
 super.add(new PageLink(third, ThirdPage.class));
 }

 }

 
 ThirdPage.java

 package test.page;

 import wicket.markup.html.WebPage;
 import wicket.markup.html.link.BookmarkablePageLink;
 import wicket.markup.html.link.PageLink;

 public class ThirdPage extends WebPage {

 private static final long serialVersionUID = 1L;

 public ThirdPage() {
 super.add(new PageLink(first, FirstPage.class));
 super.add(new BookmarkablePageLink(second,
 SecondPage.class));
 }

 }

 
 FirstPage.html

 ?xml version=1.0 encoding=BIG5 ?
 !DOCTYPE html PUBLIC
 -//W3C//DTD XHTML 1.0 Transitional//EN
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
 html xmlns=http://www.w3.org/1999/xhtml;
 xmlns:wicket=http://wicket.sourceforge.net;
 head
 meta http-equiv=Content-Type content=text/html; charset=BIG5 /
 titleInsert title here/title
 /head
 body
 pThis is the font size=+3first page/font./p
 p # second page /p
 p # third page /p
 /body
 /html

 
 SecondPage.html

 ?xml version=1.0 encoding=BIG5 ?
 !DOCTYPE html PUBLIC
 -//W3C//DTD XHTML 1.0 Transitional//EN
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
 html xmlns=http://www.w3.org/1999/xhtml;
 xmlns:wicket=http://wicket.sourceforge.net;
 head
 meta http-equiv=Content-Type content=text/html; charset=BIG5 /
 titleInsert title here/title
 /head
 body
 pThis is the font 

[Wicket-user] 优惠代开各类发票!

2006-08-15 Thread szgw1717sz
 贵公司负责人(经理/财务)您好: 
 我是深圳市伟业实业有限公司:有着良好的社会关系。每月有增值税电脑发票、海关缴款书
 和普通商品销售税发票(电脑运输、其它服务,广告,租赁业.优惠代开或合作,点数较低.本公
 司郑重承诺所用绝对是真票!更希望能够有机会与贵司合作!如贵司在发票的真伪方面有任何疑
 虑或担心,可上网查证或我司直接与贵司去税务局抵扣核对.彼此合作一次,必成永久朋友!多谢
 合作!如有打扰,敬请原谅!此信息长期有效,如须进一步洽商: 
 详情请电(24小时业务热线):013826563194
 [EMAIL PROTECTED]
 联系人:杨建

 顺祝商祺! 
   深圳市伟业实业有限公司

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user