Re: [Wicket-user] for IDEA users that wish a wicket plugin

2007-05-15 Thread Justin Lee
There's a plugin in wicket-stuff already.  An older version is already 
in the plugin repository called Wicket Assistant

ali wrote:
 IDEA ade the online Wish List survey where everybody is welcome to leave  
 their opinion, let it be a request for a new plugin or suggestion to  
 improve the existing one.

 please vote and add your features for wicket plugin
 a href=http://plugins.intellij.net/wishlist/item/?wid=95;wicket  
 plugin/a

   


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Creating Entire Forms in Java Code Only?

2007-04-09 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Actually I just did this at work but I used fragments rather than
panels.  We just need a simpler datatype-html widget look up so I just
went with fragments so that I don't need to build a bunch of java class
and html files.  The fragments are named according to the type they
represent so I can simply say :

Fragment f = new Fragment(item, typeName);
f.add(new TextField(...));

etc.

There are, of course, some if checks to determine which component to add
to f but this makes it pretty easy to add new widgets.  Now if we ever
need to start adding some very complex components I might move over to
using panels.  But for our simple form builder, the fragments work just
fine.


Eelco Hillenius wrote:
 Hello, I've been following the discussions here, and this one caught my eye.
 Does this mean that Wicket is ill suited for example for creating dynamic
 forms that are built dynamically at runtime after reading some page
 definition file from xml or some other data store. I havent looked into
 Wicket deeply, I just skimmed the surface, but I'm currently thinking about
 converting a Struts solution that builds forms based on form metadata stored
 in xml files. In my case, almost all jsp's have the same layout, and only
 differ in the form fields shown.
 
 On the contrairy, Wicket is very well suited for that. Panels is the magic 
 word.
 
 Eelco
 
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys-and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFGGiTLJnQfEGuJ90MRA+GxAKCqEmm3J1/k2O4xGD4x+7Q/Tw6PaQCdHyyh
5RWxlT4OYskq9NivC3mpa5Y=
=5LJx
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] datetime - DateTextField

2007-02-12 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

I do.  I blame eelco.  duck/

Igor Vaynberg wrote:
 sure, blame the tool
 
 -igor
 
 
 On 2/12/07, *Eelco Hillenius* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 
  Also note that forShortStyle(String, IModel) has an inconsistent
 return type
  as compared to the seven other static methods.
 
  Why the choice to return ITextFormatProvider instead of DateTextField?
 
 Heh. Letting Eclipse doing the refactoring without properly checking
 what it changed. :)
 
 Fixed as well.
 
 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
 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
 
 
 
 
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFF0OffJnQfEGuJ90MRA+syAJ9M41kGcSCag8gQk4WDVDo2FM/ZRgCgnetf
sDd54dJNlSHqN1gHu/fDHOI=
=5U5g
-END PGP SIGNATURE-

-
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] Problem of adding confirm javascript to link

2007-02-02 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

More simply, you could do this:

add(new AttributeModifier(onClick, true,
   new Model(javascript:return confirm('Are you sure you want to delete
this?');)));

Igor Vaynberg wrote:
 package wicket.misc;
 
 import wicket.Component;
 import wicket.ajax.ClientEvent;
 import wicket.behavior.AbstractBehavior;
 import wicket.markup.ComponentTag;
 import wicket.model.IModel;
 
 public class JavascriptConfirm extends AbstractBehavior {
 
 private final ClientEvent event;
 
 private final IModelString message;
 
 public JavascriptConfirm(final ClientEvent event, final
 IModelString message) {
 super();
 this.event = event;
 this.message = message;
 }
 
 public void onComponentTag(Component component, ComponentTag tag) {
 StringBuilder handler = new StringBuilder(128);
 handler.append(if (!confirm(');
 handler.append(message.getObject());
 handler.append(')) {return false;} );
 
 String script = tag.getAttributes().getString( event.getEvent());
 if (script != null) {
 handler.append(script);
 }
 
 tag.put(event.getEvent(), handler.toString());
 }
 
 @Override
 public void detach(Component component) {
 super.detach(component);
 message.detach();
 }
 }
 
 -igor
 
 
 On 2/2/07, *Carfield Yim*  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 
 For some delete link, I've add a confirm() javascript for
 Link.getOnClickScript() . However I found that even I click cancel at
 the javascript popup wicket will still execute the link. (delete the
 record in my case)
 
 How can I press the cancel message to wicket?
 
 -
 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
 
 
 
 
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFFw1DxJnQfEGuJ90MRA354AJ4/9yW2G9jqCsBoA49/TceCy5/0oACbBiyz
wutmcOpbx+Q/sD5Kx0wSK2E=
=hDch
-END PGP SIGNATURE-

-
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-contrib-javaee 1.0 release

2007-01-23 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

It's just annotations for the most part.  Crank it out.  It would've
been months ago if you'd have just done it when you asked last year.  :)

cowwoc wrote:
   Any JPA library in the works? Specifically I am looking for a
 replacement for wicket-stuff-hibernate-3.0
 
 Gili
 
 Filippo Diotalevi wrote:
 Hi,
just a quick post to announce that tonight I've released the first
 public version of wicket-contrib-javaee (1.0), a module for Wicket
 that provides integration with Java EE 5
 With wicket-javaee you can use in your wicket pages three annotations
 * @EJB
 * @PersistenceUnit
 * @Resource
 This release works with Wicket 1.2.x; a version for Wicket 2 is under
 construction.

 The release is available at:
 https://sourceforge.net/project/showfiles.php?group_id=134391package_id=219263

 the documentation is available at:
 http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-contrib-javaee

 --
 Filippo Diotalevi
 http://www.diotalevi.com
 http://www.jugmilano.it

 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys - and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 
 
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys - and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
 
 
 
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFFtt4AJnQfEGuJ90MRA+2bAJ9H/76NiiQpj3WvSq7m4NciYGD3YQCfUVJa
bQflAcEGYBy+JCTJYe22fb8=
=rrXR
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket-stuff site (Was: Re: Jar forwicket-contrib-scriptaculous?)

2007-01-11 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

I just signed up as cheeser.  How do I go about creating a space for the
JR stuff?  Do I need to be an admin for that or can any user do that?

Igor Vaynberg wrote:
 i already have, while i was setting up the other three :)
 
 -igor
 
 
 On 1/11/07, *Eelco Hillenius* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 
 Could you make me an admin as well? Thanks,
 
 Eelco
 
 On 1/11/07, Igor Vaynberg  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
  you, jim, and korbinian are now admins for the wicket-stuff spaces
 
  -igor
 
 
 
  On 1/11/07, Filippo Diotalevi  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
   On 1/11/07, Igor Vaynberg  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
http://81.17.46.170:8090/confluence
   
sign up for an account and i will grant you permissions
  
   Great Job igor!
   I've just signed up with the account 'fdiotalevi'
   --
   Filippo Diotalevi
   [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
   http://www.diotalevi.com/weblog
   http://www.jugmilano.it
  
  
 
 -
 
   Take Surveys. Earn Cash. Influence the Future of IT
   Join SourceForge.net 's Techsay panel and you'll get the chance
 to share
  your
   opinions on IT  business topics through brief surveys - and
 earn cash
  
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
 
 
 
 -
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance to
 share your
  opinions on IT  business topics through brief surveys - and earn cash
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 
 
 -
 
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to
 share your
 opinions on IT  business topics through brief surveys - and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 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
 
 
 
 
 
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys - and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
 
 
 
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFFpp/MJnQfEGuJ90MRA6g/AKDYxhU5LoTXA9i8aeuJhgl9xYzdGACfXFmz
5Cok7tkcLQUSvV+Hr5QTjJc=
=lD5o
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] wicket stuff stuff

2006-11-21 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

I've started work on JPA/toplink support in qwicket but we have a
post-Thanksgiving deadline so everything else is taking a back seat.

cowwoc wrote:
   I'd much prefer JPA integration. I don't see one as part of databinder.
 I know Cheeser was working on one. Has anyone got a finished version we
 could use?
 
 Gili
 
 Igor Vaynberg wrote:
 wicket-contrib-data-hibernate-3.0  can prob go to the glue factory now
 that databinder.net http://databinder.net is around

 -igor


 On 11/21/06, *cowwoc* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:

 James McLaughlin wrote:
  wicket-contrib-auth-class-roles  cowwoc
  wicket-contrib-data  cowwoc
  wicket-contrib-data-hibernate-3.0  cowwoc

 I am the owner of the first one and yes I plan on
 maintaining it. I am
 not the owner of the last two though I committed Netbeans project files
 for them.

 Gili



 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to
 share your
 opinions on IT  business topics through brief surveys - and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV

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





 

 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys - and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV


 

 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 
 
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys - and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
 
 
 
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFFY8LcJnQfEGuJ90MRAxZxAKDTbm1KPM9/Zcj+ewQ+HiMYhzNjFgCgl5iv
BZgVa3qOExZ7VdaE8O7sgRk=
=qhEb
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] setResponsepage keep data

2006-11-09 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Try something along these lines...

first page:

add(new Link(id) {
   public void onClick() {
  setResponsePage(new SomePage(getPage());
   }
}

the other page:

public class SomePage extends Page {
   private Page page;

   public SomePage(Page back) {
  page = back;

  add(new Link(back) {
 public void onClick() {
setResponsePage(page);
 }
  }
   }
}

Vincent Renaville wrote:
 Dear,
 
   I try to make an application with different pages (extends WebPage).
 The user can switch from a page to an other.
 I try to implement a serialization solution, so  when a person switch
 from a page to an other and after that he wanst to comeback to a
 previous page (with Link, not with go back button of IE) all the data is
 still there event if he doesn't press the submit button.
 
 
 
 
 -
 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

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD4DBQFFU1RJJnQfEGuJ90MRAyTEAJ9CAQk+Zbn68jD8U+9f7Qzy3NXv2wCWIr7s
ZCUG4lGi92eQFx8Qt0OC1A==
=MXFA
-END PGP SIGNATURE-

-
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] new initiative for a user guide

2006-10-05 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Stefan Kanev wrote:
 Maybe I didn't express myself cleary, sorry. JPA is very cool and all,
 but it requires jars that you have to download from Sun, because they
 aren't distributed freely (thus ibiblio.org). This is a major problem

It's not perfect, but check
https://maven-repository.dev.java.net/nonav/repository/

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFFJTg0JnQfEGuJ90MRAwavAKCPAdUPIFhYhuwN6yfAJBKMP34OxgCglVPE
wn5uvobrwfDTltAfe9SDrJ4=
=UAsR
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

I love you.  weep/

Anders Holmbech Brandt wrote:
 Hello wicket-users,
 
 I would just like to announce that I have started a wicket plugin for
 Intellij Idea and have uploadet to the plugin repository some minutes
 ago and its now available for use and download.
 
 Wicket Assistent
 
 
 Todolist:
 
 FEATURES:
 - Create warnings when there is a missing wicket id in the corresponding 
 java/html file - DONE
 
 TODOLIST:
 - Maybe use a compiled version of the ie webpage to check the hierarichy
 - ctrl+b on a wicket id should jump to the corresponding id in the java/html 
 file
 - create missing html file intention
 - create missing ids in the html file. How and where ?
 - create live template for easy creation of ie labels etc
 - create file templates for html files, java webpages, java panels etc.
 - rename/move rafactoring on the java/html/property file renames/moves the 
 others
 - rename refactoring of the wicket id in both the html and java file
 
 Known bugs:
 - If the wicket id is in a string variable the check does not work
 

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFFJWFGJnQfEGuJ90MRAwODAKDsLwW0K6SKZRABRnxwOwzgq00YywCeKTVs
6Wk4tihQ+bnUdxGhPBjkDpA=
=yvqL
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Two bits (but no shave or a haircut):

1.  Assistant is misspelled in the plug-in name
2.  Are you going to make the svn repo public?  I'd love to look at the
code and perhaps contribute.

Anders Holmbech Brandt wrote:
 Hello wicket-users,
 
 I would just like to announce that I have started a wicket plugin for
 Intellij Idea and have uploadet to the plugin repository some minutes
 ago and its now available for use and download.
 
 Wicket Assistent
 
 
 Todolist:
 
 FEATURES:
 - Create warnings when there is a missing wicket id in the corresponding 
 java/html file - DONE
 
 TODOLIST:
 - Maybe use a compiled version of the ie webpage to check the hierarichy
 - ctrl+b on a wicket id should jump to the corresponding id in the java/html 
 file
 - create missing html file intention
 - create missing ids in the html file. How and where ?
 - create live template for easy creation of ie labels etc
 - create file templates for html files, java webpages, java panels etc.
 - rename/move rafactoring on the java/html/property file renames/moves the 
 others
 - rename refactoring of the wicket id in both the html and java file
 
 Known bugs:
 - If the wicket id is in a string variable the check does not work
 

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFFJWyXJnQfEGuJ90MRA2SOAKC9wN7lFF8bHHcLVB7rEFNC3hxYdgCfR1Nl
DXbXRiEN6G8zNK8mSsUhOTk=
=G5kj
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Awesome.  That's great to hear.  Good luck with the contest.  Maybe it
can live in wicket's svn repo.

Anders Holmbech Brandt wrote:
 Hello Justin,
 
 Thursday, October 5, 2006, 10:35:35 PM, you wrote:
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: RIPEMD160
 
 Two bits (but no shave or a haircut):
 
 1.  Assistant is misspelled in the plug-in name
 fixed. :-)
 2.  Are you going to make the svn repo public?  I'd love to look at the
 code and perhaps contribute.
 
 Yep. After the 31. of October (end of plugin competition). I'm not yet sure 
 whether I'll create a
 sourceforge (or some other place) project for it or just host it myself.
 
 After that I would welcome all help, but until then I'll add as much
 as I have time for.
 

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFFJXKjJnQfEGuJ90MRA8cWAKDOHM8Fz28ZISZa8ibQaiNztr/6mACfd6KO
Imqqj20wlTpWqgVyz3NvnuI=
=442f
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

yeah.  i was just speaking generally not recommending a specific repo as
such.  perhaps one of wicket's repos would've been better.  8^)=


Igor Vaynberg wrote:
 On 10/5/06, *Justin Lee* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
 wrote:
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: RIPEMD160
 
 Awesome.  That's great to hear.  Good luck with the contest.  Maybe it
 can live in wicket's svn repo.
 
 
 you mean wicket-stuff 
 
 -Igor
 
 
 
 
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
 
 
 
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFFJXVNJnQfEGuJ90MRAwLDAJ9o87Bht+IzlVdchp3m7ZtxjN+l7gCguiy8
MAzQM+OjR4UqeejfTPBMIDs=
=BDpB
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] License for CMS (components)

2006-09-26 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Agreed.  Apache or BSD is my vote.  I'm much less likely to use anything
under the (L)GPL license.  IMNSHO, that the LGPL preserves the gist of
the GPL isn't a good a thing.  ;)

Martijn Dashorst wrote:
 I'm very biased against LGPL. The letter of the license is not
 applicable for Java use, and LGPL is strongly at odds with Apache
 license. If at some time we would like to adopt such components when
 we arrive at Apache, then this will prohibit reusing any code from
 this project.
 
 I'm in favor of Apache 2, since that is what most Wicket projects are
 based on. I would use a license that is at least compatible with
 Apache.
 
 Martijn
 
 On 9/26/06, Che Schneider [EMAIL PROTECTED] wrote:
 Hi,

 My vote goes to LGPL: not as restrictive as GPL but preserves the gist
 of it. :)

 // Che





 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf
 Of Ted Roeloffzen
 Sent: Tuesday, September 26, 2006 2:13 PM
 To: wicket-user
 Subject: [Wicket-user] License for CMS (components)

 Hello all,

 We are going to create a Wicket CMS and/or CMS Components,
 but we are not sure under which license to do this. Which
 license would you prefer? BSD, Apache, (L)GPL or another one?

 greets,

 Ted
 __
 DISCLAIMER: This e-mail message is intended for the
 addressee(s) or authorized recipient only. If you are not the
 addressee, or an authorized recipient, you are specifically
 advised that any use, distribution, publication, copying or
 repetition of this information is prohibited. If you have
 received this information in error, please notify us
 immediately (+31 (0)20 50 25 800) and destroy this
 message.__
 DISCLAIMER: This e-mail message is intended for the
 addressee(s) or authorized recipient only. If you are not the
 addressee, or an authorized recipient, you are specifically
 advised that any use, distribution, publication, copying or
 repetition of this information is prohibited. If you have
 received this information in error, please notify us
 immediately (+31 (0)20 50 25 800) and destroy this message.

 __
 DISCLAIMER: This e-mail message is intended for the addressee(s) or 
 authorized recipient only. If you are not the addressee, or an authorized 
 recipient, you are specifically advised that any use, distribution, 
 publication, copying or repetition of this information is prohibited. If you 
 have received this information in error, please notify us immediately (+31 
 (0)20 50 25 800) and destroy this message.

 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 
 

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFFGR+IJnQfEGuJ90MRA4LVAKDpea3D/D8fQ2suEySNb7TiQvn2QQCfS4tG
LijHNIDUVKmJ1q2EWAqi9Qk=
=neXT
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Developing a Wicket CMS

2006-09-13 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

If you're wanting your CMS to be anything more than a school projects, I
don't really consider JSR-170 to be an optional piece.  Both Liferay and
JBoss Portal are either adding or have already added support for it.
AFAIK, all the major players are as well.

Ted Roeloffzen wrote:
 Hello Wicket community,
 
  
 
  
 
 We, two IT-students, are currently working on our graduation assignment.
 
 Our assignment states that we develop a Wicket CMS, or at least
 components for the CMS.
 
 This assignment will take place from 4-9-2006 until late January of 2007.
 
 At this stage of the project we are just researching which options
 current popular CMS systems
 
 are offering and which we should implement in the Wicket CMS.
 
 At the same time we are researching how wicket works and which options
 are useful for using in the Wicket CMS.
 
 Through this mailinglist we would like to inform you about our
 assignment and we were hoping to get
 
 any suggestions and ideas from you, about which kind of components would
 you like to see and which not.
 
 We are also in doubt about using the JSR-170. Are you familiar with this
 JSR and if so what
 
 are your experiences with it. Should we use it or toss it out the window?
 
  
 
 We hope that you?re willing to cooperate with us and make this project
 into a success.
 
  
 
  
 
 Yours sincerely,
 
  
 
 Rick Postma
 
  
 
 
 
  
 
 Ted Roeloffzen
 
  
 
  
 
  
 
 
 
 
 -
 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

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFFCAeKJnQfEGuJ90MRA56CAJ9ZmmUzaxR1aVIHZryria/wEKigsgCfZcxJ
eHgmltzkJtIWcJnebiu4ST8=
=JdsZ
-END PGP SIGNATURE-

-
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 is down

2006-09-06 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

I wouldn't mind hosting qwicket on such a server either.

Martijn Dashorst wrote:
 +1 for wicket server. We should have a discussion on what we are going
 to do with our current site.
 
 Martijn
 
 On 9/6/06, Janne Hietamäki [EMAIL PROTECTED] wrote:
 Offering a server is really nice, but as mentioned before we (wicket)
 have our own dedicated server, and I would like to see all this
 wicket stuff collected to there, opposed to the current situation
 where everything is distributed into half dozen different servers..

 Janne

 On 6.9.2006, at 9.37, David Leangen wrote:


 Checked the stats.

 I don't think we need a big machine for this, and I don't think we
 need
 a dedicated machine, as you say. This will make it easier for me to
 free
 up resources. If the number of hits grows, we can upgrade as we go
 along.

 I'll see what I can dig up and get back to you asap.


 Cheers,
 Dave



 On Wed, 2006-09-06 at 08:30 +0200, Frank Bille wrote:
 Wauw, that's really nice of you. I don't think it would require an
 entire dedicated machine, and the setup now is that nothing is run as
 root. It's entirely run as non root (except apache for proxying
 stuff :) So a normal user login an a existing server would be enough.

 You can see stats for it here:

 http://billen.dk/cgi-bin/awstats.pl?config=woogle.billen.dk

 Frank

 On 9/6/06, David Leangen [EMAIL PROTECTED] wrote:

 Hi, Frank,

 That all sounds possible. I could also see if we could even
 get a
 dedicated machine, depending on funding is these days. In
 that
 case, you
 could have root access yourself.

 This could be my (small) contribution to Wicket.


 About how many hits do you get per day?


 Cheers,
 David



 On Tue, 2006-09-05 at 10:32 +0200, Frank Bille wrote:
 Very interesting. Do you have a possibility to setup a cron
 job?
 (that's how the index is updated) It's a little bit of a
 special setup
 I have:

   * Woogle app runs off a jetty
   * Every night I update the index using a
 shellscript/Nutch.
   * After the index is updated I restart jetty.
 That's how I could manage to get the index-db updated in the
 Woogle
 app..

 Frank


 On 9/5/06, David Leangen  [EMAIL PROTECTED] wrote:

 Ok, thanks!

 If you need a place to host, you could use my
 server.

 Cheers,
 Dave



 On Tue, 2006-09-05 at 10:03 +0200, Frank Bille
 wrote:
 Sorry about that. Woogle runs off my home server,
 which has
 a mirrored
 raid of SATA discs. All should be fine, but for
 some reason
 one of the
 discs keeps falling out of the raid (HW) and the
 raid stops
 working..
 grr...

 But it's up again.

 Frank


 On 9/5/06, David Leangen [EMAIL PROTECTED]
 wrote:
 Just thought I'd point out (sorry if this
 is not the
 right
 place):

 Tried using Woogle today and got a bad
 gateway
 error:
 Bad Gateway
 The proxy server received an invalid
 response from
 an upstream
 server.



 -
 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

 
 

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFE/sprJnQfEGuJ90MRAx5XAKCxFM3BwE041rXyQqBXkC8BJk5++wCfbBOZ
4Z++LPbBx3i3INIfFUMe0k8=
=QgIP
-END PGP SIGNATURE-

-
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 2.0: You are in DEVELOPMENT mode

2006-09-01 Thread Justin Lee
=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

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFE+F5GJnQfEGuJ90MRA2HwAJ9jDxDvLENxM5hjzaJRMp4Kd7jvZwCg9F2I
dYcNSeZJkqY3tPGY+BSpA84=
=MciP
-END PGP SIGNATURE-

-
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 CMS type components...

2006-08-29 Thread Justin Lee
@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
 
 
 -
 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

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFE9L4bJnQfEGuJ90MRA9pxAJ9MPcXo14MLYJdNvfZav0TV9WRzdwCfZ+9K
jAB3uW3Ztcu4Zn0fHEd6k6Q=
=M86D
-END PGP SIGNATURE-

-
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] Howard is bluffing here ...

2006-08-25 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

I'd like to point out the Tapestry 5.0 will be something like the third
major rewrite of some form or another in a row.

Francis Amanfo wrote:
 Hi all,
  
 I found this current post on Howard's blog. I quote it here:
  
 Wicket has a nice community and a few nice ideas, but it does not
 compare to what I have planned for Tapestry 5. I believe Java is going
 to thrive at the high end and performance is going to be one of the
 differentiators from Ruby on Rails. In addition, the Wicket model can't
 address the kind of short-cycle development issues that will be part of
 Tapestry 5. I think Wicket is fairly broken in that it stores the
 component model inside the HttpSession. This has been a critical flaw
 for JSF as well, where they've realized that they don't have a proper
 approach to handling true scalability. Wicket is a neater, cleaner
 version of Tapestry 1.0 or maybe 2.0. I've said in the past that I found
 it quite unambitious for starting from scratch. I'm now working on
 Tapestry 5 which is quite ambitious.
  
 Either this man is jealous of the success and popularity of Wicket or he
 might have forgotten to take his pills before hitting his fingers on his
 keyboard. Go remind him to do so the next time at:
  
 http://www.blogger.com/comment.g?blogID=4110180postID=115393199327621322
 http://www.blogger.com/comment.g?blogID=4110180postID=115393199327621322
  
 Regards
 
 
 
 
 -
 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

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFE7wGqJnQfEGuJ90MRA98AAKCIYPs/U4GG+RuzGTWIZLOkoofHRwCePaXL
9Wcs8vKSCSLu6CRcqqxGCGg=
=KaGn
-END PGP SIGNATURE-

-
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] Local inner class

2006-08-16 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

May Gosling have mercy on you if you change your class such that those
anonymous inner classes are ordered differently.  Debugging that should
loads of fun.  For some value of fun.

Matej Knopp wrote:
 Yes, it is fragile. But it's quite unusual to make components that need 
 own markup as anonymous classes. Usually anonymous classes are used only
 if you need to override methods like onClick or isVisible.
 
 -Matej
 
 Scott Swank wrote:
 Which is why I like to use named inner classes instead of anonymous
 ones if I'm going to tie html to them.  The whole foo$1.html,
 foo$2.html just feels a bit too fragile to me.

 On 8/16/06, Juergen Donnerstag [EMAIL PROTECTED] wrote:
 Name$1.html

 Juergen

 On 8/16/06, Michael Welter [EMAIL PROTECTED] wrote:
 I would like to do something like this:

   Border border = new Border( border ) {
 {
   BoxBorder nb = new BoxBorder( navigationBorder );
   nb.add( new PageLink( newClient,Insert.class ));
   nb.add( new PageLink( home,Home.class ));
   nb.add( new PageLink( signout,Signout.class ));
   add( nb );
   add( new BoxBorder( bodyBorder ));
   add( new BoxBorder( attributeBorder ));
 }
   };
   ...
   border.add(...);

 The resulting class file for this local inner class is Name$1.class.

 How do I structure the html for this?

 Thanks

 --
 Michael Welter
 Telecom Matters Corp.
 Denver, Colorado US
 +1.303.414.4980
 [EMAIL PROTECTED]
 www.TelecomMatters.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
 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


 
 
 -
 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

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFE44Q+JnQfEGuJ90MRAyJrAJ4w1MZwTE2noM6o4tpUq/0cIorLYgCgzyIN
+1Xr6cTH7V1GWd99tFbTFHs=
=t3bg
-END PGP SIGNATURE-

-
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] qwicket

2006-08-08 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Ok.  I finally got the new version uploaded.  My host was having some
issues last night.  Qwicket now supports basic bean definitions in the
UI. The CRUD pages still aren't there, but the requisite services and
DAOs are as well as the spring configurations. The spring setup and
project layout have changed a fair bit in this release. What was being
done with ant filters has been changed to use spring property
replacement. Customization of these property values are now stored in
src/conf/application-override.properties with the defaults in
src/conf/application.properties.

This release introduces Users into Qwicket itself. You can now save your
project and return to it at a later date. You can still work
anonymously, though, if you prefer. This release should be pretty solid
but it was little rushed to finish before I present at the Denver JUG on
the 9th so if you see something, please fill out a bug report using the
link in the menu on the left.

Md Mozammel Haque wrote:
 Thanks Igor! After manually adding most of the required jar files, and
 fixing/changing several jar files (for versioning issues), I am able to
 run my first qwicket webapp. It took quite an effort, though it was
 worth it. On my way to explore it to more detail...
 
 - Mozammel
 
 On 8/7/06, *Igor Vaynberg* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 
 the problem is that some jars provided by sun are not allowed to be
 redistributed. in this case javax.mail is the problem. you have to go
 and manually download the file from sun and put it into your local
 repo.
 
 if you try to run qwicket's maven build and then look under your maven
 repo you will see a folder javax/mail/mail/1.3.3. inside this folder
 you will see mail-1.3.3.pom but no jar - because it is only available
 from sun. inside the pom is a url to go download this file, once you
 download it rename the jar to mail-1.3.3.jar and put it into that
 folder.
 
 run the maven build again and you should be good to go. notice you
 might have to repeat this procedure for other dependencies that are
 only available from sun.
 
 but once you install them you wont have this problem anymore so its a
 one time deal.
 
 -Igor
 
 
 On 8/6/06, Md Mozammel Haque  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
  Yes, I also tried to run it but fell into same problem. Can you please
  explain little more regarding massage your maven repository? Or,
 the
  documentation/script that you are developing may be real helpful
 for running
  qwicket apps out of the box.
 
  - Mozammel
 
 
  On 8/6/06, Justin Lee  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 It does run out of the box, but you do need to massage your maven
 repository first.  I'm working on some documentation and a
 script to
 help do that as simply as possible.  The problem is that sun
 restricts
 the distribution of their jar files so that they can't be bundled.
 
 Michael Welter wrote:
 I used the qwicket web page to generate a skeleton
 project.  When I
 compiled, it was unable to get the jar files.  I added the jars
  manually.
 
 When I move the war file to Tomcat and try to bring up the
 first page, I
 get 404 not found.
 
 Will the skeleton project run out of the box (at least the
 first page)?
 
 Thanks,
 
 
 --
 Justin Lee
 http://www.antwerkz.com
 AIM : evan chooly
 Skype : evanchooly
  
  
 
 -
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net 's Techsay panel and you'll get the chance
 to share
  your
opinions on IT  business topics through brief surveys -- and
 earn cash
  
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
  
 
 
 
 
 
 -
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance to
 share your
  opinions on IT  business topics through brief surveys -- and earn
 cash
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user

Re: [Wicket-user] qwicket

2006-08-07 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

I'm pushing out a new version with updated docs today (and the bean
builder!).  The javamail 1.3.3 dep comes from commons-email but i'll see
if I can't override it that manually.  Thanks for the heads up, janne.

Igor Vaynberg wrote:
 thats good stuff, justin mind updating qwicket to 1.4?
 
 -Igor
 
 
 On 8/7/06, Janne Hietamäki [EMAIL PROTECTED] wrote:

 Version 1.4 of javamail can be redistributed, the jars can be found from
 ibiblio's maven repository.

 dependency
 groupIdjavax.activation/groupId
 artifactIdactivation/artifactId
 version1.1/version
 typejar/type
 scopecompile/scope
 /dependency
 dependency
 groupIdjavax.mail/groupId
 artifactIdmail/artifactId
 version1.4/version
 typejar/type
 scopecompile/scope
 /dependency



 On 7.8.2006, at 9.38, Igor Vaynberg wrote:

 the problem is that some jars provided by sun are not allowed to be
 redistributed. in this case javax.mail is the problem. you have to go
 and manually download the file from sun and put it into your local
 repo.


  Janne Hietamäki
 Cemron Ltd
 http://www.cemron.fi




 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV

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



 
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFE1zssJnQfEGuJ90MRA+6DAJ9CeCSu8AdOMBAncfbxgcZrE5bMdQCePIeY
45e424wdRY0GRLDBnytGfI4=
=ImMk
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] qwicket

2006-08-06 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

It does run out of the box, but you do need to massage your maven
repository first.  I'm working on some documentation and a script to
help do that as simply as possible.  The problem is that sun restricts
the distribution of their jar files so that they can't be bundled.

Michael Welter wrote:
 I used the qwicket web page to generate a skeleton project.  When I 
 compiled, it was unable to get the jar files.  I added the jars manually.
 
 When I move the war file to Tomcat and try to bring up the first page, I 
 get 404 not found.
 
 Will the skeleton project run out of the box (at least the first page)?
 
 Thanks,
 

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFE1fQzJnQfEGuJ90MRA1V0AJ4kBrE4SpYKSx2qJnFGMTh3gNHivgCfXiRt
osB0GEOeSKEuY3KYE4iz9wY=
=/Vec
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Page processed twice

2006-08-01 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

I'm seeing my page get processed twice which is causing some problems.
Granted some of those problems are likely design issues which I'm
addressing, but as a result I'm seeing two session objects get created.
 Is that double processing a result of being in development mode or is
that normal wicket workflow?

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFEz3QOJnQfEGuJ90MRA6TQAKDmpBwGcxN8Q2tLFbmCcRcO9jfHIACg63Mv
G/MMOlNWC/nN4LRWutfjrb8=
=qwAq
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Page processed twice

2006-08-01 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Yeah.  I don't do anything to the render strategy.  I have break points
set in my page constructor and various model objects and I'm seeing the
flow stop at those break points multiple times before the page gets
rendered.  I have to go meet with a client now but if this isn't
sufficient detail, i'll try to recreate it with a quickstart app and see
what we can find out.

Johan Compagner wrote:
 please give us a test case. Normally a page is only rendered once.
 What kind of Renderings Strategy do you use? the default one?
 
 johan
 
 
 On 8/1/06, * Justin Lee* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
 wrote:
 
 I'm seeing my page get processed twice which is causing some problems.
 Granted some of those problems are likely design issues which I'm
 addressing, but as a result I'm seeing two session objects get created.
 Is that double processing a result of being in development mode or is
 that normal wicket workflow?
 
 --
 Justin Lee
 http://www.antwerkz.com
 AIM : evan chooly
 Skype : evanchooly

- -
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to
share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
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



 

 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV


 

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

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFEz308JnQfEGuJ90MRA8IEAJ0VyXYu4clWrtc2Cx9Ut0v8TmX6TQCdFPhZ
0uCPreuPQRA7hPDIAcK7OjM=
=hXNc
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Page processed twice

2006-08-01 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

I'm up to date on
https://svn.sourceforge.net/svnroot/wicket/branches/WICKET_1_2

I *am* using a bookmarkable link to get to the page, fwiw.

Eelco Hillenius wrote:
 Which version are you using Justin?
 
 Eelco
 
 
 On 8/1/06, Johan Compagner [EMAIL PROTECTED] wrote:
 are you saying that your page is created twice?
 This can happen if it was a bookmarkable request. But the window.name
 (1.2.1) or wicket cookie (1.2)
 check did a redirect to your page. Because it noticed that you have opened
 another window (or wrongly noticed)


 johan



 On 8/1/06, Justin Lee [EMAIL PROTECTED] wrote:
 Yeah.  I don't do anything to the render strategy.  I have break points
 set in my page constructor and various model objects and I'm seeing the
 flow stop at those break points multiple times before the page gets
 rendered.  I have to go meet with a client now but if this isn't
 sufficient detail, i'll try to recreate it with a quickstart app and see
 what we can find out.
 
 Johan Compagner wrote:
 please give us a test case. Normally a page is only rendered once.
 What kind of Renderings Strategy do you use? the default one?

 johan


 On 8/1/06, * Justin Lee* [EMAIL PROTECTED] mailto: [EMAIL PROTECTED]
 wrote:

 I'm seeing my page get processed twice which is causing some problems.
 Granted some of those problems are likely design issues which I'm
 addressing, but as a result I'm seeing two session objects get created.
 Is that double processing a result of being in development mode or is
 that normal wicket workflow?

 --
 Justin Lee
 http://www.antwerkz.com
 AIM : evan chooly
 Skype : evanchooly
 -
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to
 share your
 opinions on IT  business topics through brief surveys -- and earn cash
 
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 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
 
 
 
 
 
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share
 your
 opinions on IT  business topics through brief surveys -- and earn cash

 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
 
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net

 https://lists.sourceforge.net/lists/listinfo/wicket-user
 --
 Justin Lee
 http://www.antwerkz.com
 AIM : evan chooly
 Skype : evanchooly


 -
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net 's Techsay panel and you'll get the chance to share
 your
opinions on IT  business topics through brief surveys -- and earn cash

 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV

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




 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFEz8l0JnQfEGuJ90MRA+9QAKDnq/n3QC8MgReNp6W6+kIFdGG3BwCeID7x
mtvMqotXbWz+A5karn8h76M=
=YsFI
-END PGP SIGNATURE

Re: [Wicket-user] Controlling 'class' parameter for a link element

2006-07-24 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Use an AttributeModifier on the Link.

Pierre-Yves wrote:
 hi,
 
 I am struggling with a new problem : I need to programmatically set the
 class attribute of a html link (  element). I tried to extends the Link
 element, but unfortunately, the onComponentTag method is final. (For some
 reasons, I cannot use another clickable element). Any idea ?
 
 Thanks,
 
 Pierre-Yves
 

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFExUi6JnQfEGuJ90MRA0s0AJ991belf8UX9wKGW863i5BcLaeoegCbBILS
S32kUFw0uZ4MeLeAfffLWeQ=
=ce6r
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] qwicket online

2006-07-21 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

As promised, I've converted qwicket to be a wicket app rather than a
Swing/JWS app.  You can try it out at http://qwicket.sf.net.  Nothing to
download anymore other than your code.  There might be a couple of minor
glitches here and there.  Please let me know if you find anything and
file something in the tracker.  You can read (a little bit) more at
http://www.antwerkz.com/wp/?p=1010.

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFEwS00JnQfEGuJ90MRAxYbAKDO2FigjfcMZfA7/60rhl9fDb0ObgCePLPX
n5DVOtoac4a6SC/fkslZedE=
=yxRe
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket-Template

2006-07-14 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

In a few days (hopefully) i'll have a web enabled version of qwicket
that'll generate a zip for you to download and unzip with a complete,
ready to use project with spring+hibernate already set up for you.
Hopefully that'll get you what you need.

Mark Derricutt wrote:
 I like the idea of this...   one thing i was thinking of the other day
 (and had seen discussed in passing in the IRC channel) was a maven
 archetype for wicket that built everything for you, which would generate
 something like what this gives?
 
 Mark
 
 On 7/14/06, *Gwyn Evans* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 
 I've added a Wicket Template module/package to Wicket-Stuff -
 
 (http://sourceforge.net/project/showfiles.php?group_id=134391package_id=197274
 
 http://sourceforge.net/project/showfiles.php?group_id=134391package_id=197274)
 
 Nothing too dramatic - basically a cut-down version of Quickstart,
 leaving the  Maven2 pom.xml together with a (very) basic WicketApp.
 It uses the Maven2 recommended folder layout and allows the creation
 of a standalone WAR or the running of the web-app via the mvn
 jetty6:run embedded server.
 
 
 
 
 
 
 -
 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

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFEuGMXJnQfEGuJ90MRA2gLAKDp6jRid2mRYeQNux+fRdBQ43lkOwCfeHCH
tJmiBKk6Gy9J4KWqzzkuvRM=
=EOHw
-END PGP SIGNATURE-


-
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] introducing qwicket

2006-07-10 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

I just uploaded the svn and website for my new project qwicket.  Qwicket
is a quickstart application that will produce the skeleton of a
spring+hibernate+wicket project.  I've said a bit more about it at
http://www.antwerkz.com/wp/?p=1006 and the official project site is at
http://qwicket.sf.net.  I had been planning on a Swing/JWS interface
like the blog entry says, but after talking to igor he's convinced me to
make it a web app as well.  Hopefully this will help a lot of you with
your wicket projects.  Feedback is always welcome.

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFEslrOJnQfEGuJ90MRA4VeAJ9hQdphC+2xjammvFonRGI9u3syhgCeOu3n
EwhUIxHciN3icHdvmapIB6U=
=sIqV
-END PGP SIGNATURE-


-
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] imp

2006-06-02 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

look at wicket-contrib-jasperreports

ketan gote wrote:
 hello
 frnds
 
 i want to implement various kind of report in wicket framework ,
 i am not getting idea.
 please tell me some kind of suggestion.
 
 -- 
 Regards
 
 Ketan D.Gote

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFEgEB8JnQfEGuJ90MRAzFtAJ4srsGDlcycUwOLJOKLsj+9Zn/Z6ACfbuC6
U2haMqh9WBPzjKpeXIqkqMw=
=rvAk
-END PGP SIGNATURE-


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Per page settings

2006-06-02 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Looks like at least one of your problems is doing string comparison
using ==.

jan_bar wrote:
 Hi,
 
 I am facing unpleasant troubles with setStripXmlDeclarationFromOutput. My
 application needs to output HTML pages with stripped XML prologue, but at
 the same time I have to serve XML files *with* the XML prologue. The
 settings like StripXmlDeclarationFromOutput or StripWicketTags (and other)
 or only application wide.
 
 Maybe, when Page.configureResponse() sees getMarkupType()==xml, it should
 not strip XML prologue even if StripXmlDeclarationFromOutput is set?
 
 Thanks for your support, Jan
 
 
 
 
 
 ---
 All the advantages of Linux Managed Hosting--Without the Cost and Risk!
 Fully trained technicians. The highest number of Red Hat certifications in
 the hosting industry. Fanatical Support. Click to learn more
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFEgFhvJnQfEGuJ90MRA2TKAKCHKnFYH4yHxY1pj87DXEtwMWzKvQCdFtAk
7dLgzS8246Lf3gO1Zg9i0+I=
=vvmu
-END PGP SIGNATURE-


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Localization

2006-05-09 Thread Justin Lee
,
 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?cmdlnkkid0709bid3057dat1642
 
  ___
  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?cmdlnkkid0709bid3057dat1642
 ___
 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___
 
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFEYLw1JnQfEGuJ90MRAxI4AKC6sP5Hg+NEdRCjWaqpnfEoeYG/dACgmuRb
g19Bia74R/sqXWCJfTrS45Q=
=KgAH
-END PGP SIGNATURE-



---
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] image ref within CSS

2006-04-24 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

/me tosses some popcorn in igor's gaping maw.

Igor Vaynberg wrote:
 im still recovering from shock!
 
 On 4/24/06, *Eelco Hillenius* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 
 Pfffew. Glad I didn't say something stupid this time ;)
 
 Eelco
 
 On 4/24/06, karthik Guru  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 
  yes worked..great!..my initializer that registers the gifs as a shared
  resource didn't run .I fixed that.
  thanks.
 
 
  On 4/24/06, Eelco Hillenius [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
  
   On 4/24/06, karthik Guru  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
   I have a CSS that refers to an image -
  
   span hello{
 float:left;
 background:#DAE0D2 url( test.gif) repeat-x bottom;
   }
  
   If I were to package the panel as a component, the gif needs to be
  packaged
   as well. Then the CSS reference to image -  url(test.gif)
   cannot be hardcoded.
 
  Did you try registering test.gif as a shared resource? Or e.g. all
  gif's in that package using a regexp. There are more components that
  work like that: DataPicker, YUI slider/ Calendar, or tinymce, which
   seem to work fine.
 
  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?cmdlnkkid0709bid3057dat1642 
 http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 
  --
   -- karthik --
 
 
 ---
 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?cmdlnkkid0709bid3057dat1642 
 http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFETQQ7JnQfEGuJ90MRAx+VAJ4y8lT6QUZNWGoXE8VKvxF5jbIG3QCgppJB
3dEXpBh52n3gS/rowU+NDLo=
=82zs
-END PGP SIGNATURE-


---
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] IMG reload via AJAX

2006-04-07 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

so...  NSUUID?

Igor Vaynberg wrote:
 no, not unique, but pretty darn close.
 
 -Igor
 
 
 On 4/7/06, *Eelco Hillenius* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 
 
  url=url+rand=+UUID.random().toString()
 
  but wait...even with that there is a chance of collission...hmmm
 
 
 Is there? Isn't UUID supposed to be unique in space and time?
 
 Eelco
 
 
 ---
 This SF.Net email is sponsored by xPML, a groundbreaking scripting
 language
 that extends applications into web and mobile media. Attend the live
 webcast
 and join the prime developer group breaking into this new coding
 territory!
 http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642 
 http://sel.as-us.falkag.net/sel?cmdlnkkid0944bid$1720dat1642
 ___
 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
 
 

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Skype : evanchooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFENufXJnQfEGuJ90MRAylKAKDMxUc2w9e67eVb/aKkLBWRTanZXACgr+MZ
KrXfZn2yD7unXd+cnSTpfgg=
=1zfd
-END PGP SIGNATURE-


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket 1.2 beta3 wicket:message tag broken?

2006-04-05 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

It was already said this was fixed in svn.

Tom van Zummeren wrote:
 I use quite a few wicket:message tags in my application. Since wicket 1.2 
 beta3 this tag doesn't work anymore, Wicket acts like he has never heard of 
 this tag before.
 
 I looked a bit into it and found out the tag wasn't registered as a known tag.
 So when I added this to my subclass of WebApplication:
 
 WicketTagIdentifier.registerWellKnownTagName(message);
 
 .. everything worked fine again.
 
 I consider this to be a bug. The resolver of wicket:message obviously 
 doesn't automatically register it's tag anymore. All the other resolvers do.
 
 
 Tom
 

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
Phone: 720.299.0101
Skype : evan chooly
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFEM809JnQfEGuJ90MRA9m7AKDjR26oiuz0HhH8VA/ii0Nh9Fp20gCeMwoE
bqgmB9FB2SbUYpM949Xs8Mo=
=7BoV
-END PGP SIGNATURE-


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] IDataProvider.size()

2006-03-21 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

IIRC, that will display Integer.MAX_VALUE on the page which is probably
not what you want.  You might look into caching that value.

Steve Knight wrote:
 If my SortableDataProvider implementation will always return the max
 number of results (I'm not using paging), is it safe to have the size()
 method simply return Integer.MAX_VALUE instead of performing a database
 query to count the actual results?
 
 Steve

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
720.299.0101
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFEIBGyJnQfEGuJ90MRA3YXAJ9LrXkc74ZWRXyZvMxYuN9FBafl7ACeNNxz
zHnAebjt0Eu3bnn9JPIJAZs=
=Jilb
-END PGP SIGNATURE-


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket / Databinder issue

2006-03-20 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

The Owner you see there is the class.  You need to tell hibernate that
Owner is a hibernated class.  If you're using spring that's done in
applicationContext.xml.

Thibaut Colar wrote:
 Hello there, I'm an experienced java developer, however new to wicket.
 
 I found wicket and think it looks great and decided to use it, though i
 wanted Hibernate too, so decided to use databinder.
 I installed databinder as explained on there site, and ran the examples
 locally without problems.
 
 For Info: I got databinder three days ago, i use java 5.0 and maven2,
 databinder uses i believe hibernate/ejb3 and wicket 1.1.
 
 Then i created my own Application using maven (as explained on the
 databinder site), it does compile, however as soon as i try to get
 something from the database (hibernate) it fails with this error:
 
 org.hibernate.hql.ast.QuerySyntaxException: Owner is not mapped. [from
 Owner order by name]
 
 Owner is my table name.
 
 The code i have is very very basic and short, and I've been over it 25
 hundred time, it is basically similar to the bookmarks example, yet it
 keeps failing with this error.
 
 I bet i am missing something obvious here, so please show me what it is :-)
 
 I put the whole code on my wiki (since it's kinda long in an email)
 
 http://wiki.colar.net/doku.php/databinder_issue
 
 Let me know what I'm doing wrong, so i can start sleeping again  :-)
 
 Thanks.
 
 
 ---
 This SF.Net email is sponsored by xPML, a groundbreaking scripting language
 that extends applications into web and mobile media. Attend the live
 webcast
 and join the prime developer group breaking into this new coding territory!
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
720.299.0101
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFEH2FYJnQfEGuJ90MRA8lCAKCrBs2KVJsDYtxSSsSpqMVZrz62dQCbBVNC
/Q5kPS0atIvjDa5NTR0pJRo=
=dU/Z
-END PGP SIGNATURE-


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] onSubmit vs onClick for form submission

2006-03-19 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Make sure the cancel button is type=button and not type=submit.
then just define an onClick for your cancel button to navigate where you
want.

Vincent Jenks wrote:
 So, I'm trying to figure out if I should do with my form buttons.  I
 have two buttons ('save' and 'cancel') but only the onSubmit event
 handler is fired.  I have a button inside of the form's constructor that
 has an onClick event but that never happens...apparently because the
 onSubmit 'trumps' the onClick event.
 
 Here's my class as it stands:
 
 private static class EditProductForm extends Form
 {
 public EditProductForm(String name, Product product)
 {
 super(name, new CompoundPropertyModel(product));

 //get collection of Category items
 IModel catsModel = new LoadableDetachableModel()
 {
 protected Object load()
 {
 return ProductProxy.getAllCategories(); //via proxy
 }
 };

 //add form components
 add(new
 TextField(productCode).add(RequiredValidator.getInstance ()));
 add(new TextField(name).add(RequiredValidator.getInstance()));
 add(new
 TextArea(summary).add(RequiredValidator.getInstance()));
 add(new Button(saveButton));

 //add reset button DOESN'T WORK!
 add(new Button(cancelButton)
 {
 public void onClick()
 {
 modelChanged();
 setResponsePage(new EditProduct());
 }
 });
 }

 public void onSubmit()
 {
 //save form values, redirect
 Product product = (Product)getModelObject();
 ProductProxy.addProduct(product);
 setResponsePage(new EditProduct());
 }
 }
 
 Should I leave onSubmit empty and use two onClick events for the form
 buttons?
 
 The form is doing validation, also, if that effects anything.
 
 Thanks!

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
720.299.0101
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFEHc0jJnQfEGuJ90MRA/G9AJ0S8yAzsWWQH802nSef+LS23qNbMACcCWjR
SDlWuEAvGEj6mweK4RudZ5U=
=WtvB
-END PGP SIGNATURE-


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] DataTable

2006-02-26 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

You could always add subclasses of AbstractColumn to provide whatever
data you wanted.  That combined with Fragments gives you loads of
flexibility.

Frank Silbermann wrote:
 In Wicket-Examples, Repeaters, there's an example of a DataTable from
 Wicket-Extensions.  The data provider supplies lists of javabeans, each
 bean representing a row in the table.  The PropertyColumn object for
 each column of the table gives information about the column title, its
 sortability, and the non-OGNL string used for pulling a cell's data out
 of the bean.
 
 In this example, the column names are hardcoded as bean properties, but
 what I want is to display any arbitrary JDBC ResultSet in a DataTable.
 Has anyone written code to do that?  (And if so, could I see it?
 ASP.NET has this feature, and I'm rewriting code that uses it.)
 
 If not, I was thinking that I could implement IDataProvider to contain
 information about the number and names of the columns taken from the
 ResultSetMetaData.  
 
 The data provider would hold a list of row objects, each of which would
 be (or contain) an indexed sequence (an Array or ArrayList) of atomic
 data objects, obtained by calling resultSet.getObject(index) varying
 index within the column count.
 
 My subclass of DataTable would be constructed with this data provider as
 an argument.  A loop (indexed within the column count) would create a
 list of PropertyColumn objects -- each with the display model based on
 the column name recorded from the ResultSetMetaData, and a non-OGNL
 property expression that makes use of List/Array indexing to access the
 specific field in the row.
 
 Does this sound like a good approach, or am I re-inventing the wheel
 here?
 
 
 ---
 This SF.Net email is sponsored by xPML, a groundbreaking scripting language
 that extends applications into web and mobile media. Attend the live webcast
 and join the prime developer group breaking into this new coding territory!
 http://sel.as-us.falkag.net/sel?cmd___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
720.299.0101
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.1 (Cygwin)

iD8DBQFEAiRwJnQfEGuJ90MRAzGxAJ91Zad4B32tAanSJVWzXTsPoVLlAACeIh0h
rllYzFJZHttgUUd2MwDDwn4=
=JJWl
-END PGP SIGNATURE-


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Parsing Error:Mismatch Close Tag Error

2006-02-22 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

 time so I posted it to the list. If you want to bitch me out, feel free
 to join IRC where flamewars belong :)

Come on by.  We're always open.

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
720.299.0101
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (Cygwin)

iD8DBQFD/NrYJnQfEGuJ90MRAzw9AKDTt5+HHgiMdVoe7k/VOqj8WdEfTQCgrUud
cZkngepY/ROrWTAYUWZwnU0=
=pPBj
-END PGP SIGNATURE-


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Parsing Error:Mismatch Close Tag Error

2006-02-21 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

 On an unrelated note, the junit tests fail on ObjectsTest; you might
 want to fix that.

And you might wanna submit a patch instead of just grousing on the
lists.  If you're so hot to run unit tests, you shouldn't complain about
failures unless you submit patches to fix them.  It's just rude.

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
720.299.0101
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (Cygwin)

iD8DBQFD+x3+JnQfEGuJ90MRA6ayAJ0R2JtnJYt3xOBS44RebRfB2QIeogCg2+fs
6j8kfP+p0jx+WZPugIQO7G4=
=J2X1
-END PGP SIGNATURE-


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] VOTE

2006-02-20 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Good news.  We've just decided you're not trolls.  bahrahrhum.

Alexandru Popescu wrote:
 I know that this might be early considering the lenght of the thread,
 but what is the voting result? :-).
 
 BR,
 
 ./alex
 --
 .w( the_mindstorm )p.
 
 
 On 2/17/06, Eelco Hillenius [EMAIL PROTECTED] wrote:
 Hi all,

 This is a non-binding (the developers ultimately decide) call votes
 concerning whether we should fold the upcomming constructor changes
 with our move to Java 5 or not. See for a discussion of those changes
 other threads, please use this thread for voting only.

 1. Give me the constructor change and the Java 5 functionality in one
 pass (Wicket 2.0)
 2. Do the constructor change in a seperate release (Wicket 1.3) and
 put Java 5 in the next (Wicket 2.0)
 3. I don't want either one and I want to stay on Wicket 1.2.

 This last option has no real effect except that you explicitly say
 that you prefer a long lasting support on 1.2 over new features.

 Also, take into consideration that the less versions we have to
 maintain seperately, the quicker we probably can implement them.

 Your votes please?

 Btw, it is still our plan to be up-to-date with Wicket In Action.

 Eelco


 ---
 This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
 for problems?  Stop!  Download the new AJAX search engine that makes
 searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
 http://sel.as-us.falkag.net/sel?cmdlnkkid3432bid#0486dat1642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 
 
 ---
 This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
 for problems?  Stop!  Download the new AJAX search engine that makes
 searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
 http://sel.as-us.falkag.net/sel?cmd___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
720.299.0101
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (Cygwin)

iD8DBQFD+kaXJnQfEGuJ90MRA2isAKDGMK3tTb0aegTc+OakUyIJ/BRCOgCgrm9B
0QFkqzqFBPGXRpRcO8dHM7I=
=EmWT
-END PGP SIGNATURE-


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] VOTE

2006-02-17 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

w00t!

 1. Give me the constructor change and the Java 5 functionality in one
 pass (Wicket 2.0)

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
720.299.0101
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (Cygwin)

iD8DBQFD9kfKJnQfEGuJ90MRA/TeAJ9am+RnU+7nHj5vTGijT+PasdCEiQCfQHKf
XDaFHbkKS4CxsvcUnHWWbNg=
=FfJI
-END PGP SIGNATURE-


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Post 1.2 roadmap

2006-02-16 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

The constructor change is going to be disruptive enough that maybe
switching both at once wouldn't be so bad.  That'd mean only two
branches to maintain which would be a lot less work on you guys.  That'd
be my vote.  It sucks for those who can't upgrade to 1.5 yet, but you
have to make sure you're not making too much work for yourself.  And 3
branches could get ugly fast.


Eelco Hillenius wrote:
 Yeah, that would mean supporting 1.2 and 1.3 as branches. 2.0 would be
 HEAD. For us it would be way less work if we'd move to 1.2 directly.
 But that would probably be a bummer for people that don't want to make
 the move to JDK 5, but who do want to take advantage of the
 constructor change.
 
 Eelco
 
 On 2/16/06, Philip A. Chapman [EMAIL PROTECTED] wrote:
 Eelco Hillenius wrote:
 SNIP
 Only thing for us is that we have to support both 1.2 and 1.3.
 Does that mean supporting 3 branches;  1.2, 1.3 and eventually 2.0?  Or
 did you mean support 1.2 and 1.3 until 2.0 comes out; then supporting
 1.3 and 2.0?

 Just curious on how much I should pity the committers.
 --
 Philip A. Chapman

 Desktop and Web Application Development:
 Java, .NET, PostgreSQL, MySQL, MSSQL
 Linux, Windows 2000, Windows XP



 
 
 ---
 This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
 for problems?  Stop!  Download the new AJAX search engine that makes
 searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
 http://sel.as-us.falkag.net/sel?cmd___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
720.299.0101
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (Cygwin)

iD8DBQFD9LudJnQfEGuJ90MRA0EEAJ985iq9DWPAG4RHekGmqiOkqyisBgCeOw2t
81qP9GYOjffV+aYOkyhzywQ=
=67QW
-END PGP SIGNATURE-


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Post 1.2 roadmap

2006-02-14 Thread Justin Lee
 through log files
 for problems?  Stop!  Download the new AJAX search engine that makes
 searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
 http://sel.as-us.falkag.net/sel?cmd___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

- --
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
720.299.0101
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (Cygwin)

iD8DBQFD8goEJnQfEGuJ90MRAwE7AKCe6ywVy3XloLibHFq91xWMAKKhAACgtmTV
jaKTt8pAv1OFDo+4kCRumRQ=
=RrGQ
-END PGP SIGNATURE-


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] RowSets

2006-01-23 Thread Justin Lee
Using an IRC client to connect to irc.freenode.net and then /join ##wicket.

Frank Silbermann wrote:
 In my browser I’ve tried “irc.freenode.net” and www.irc.freenode.net
 http://www.ifr.freenode.net/ and http://irc.freenode.net
 http://irc.freenode.net/  and all I get are 404 PAGE NOT FOUND
 messages.  What exactly do you mean by irc.freenode.net?
 
  
 
 -Original Message-
 *From:* [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] *On Behalf Of *Igor
 Vaynberg
 *To**:* wicket-user@lists.sourceforge.net
 
 btw if you have a lot of small questions we might be able to better help
 you at irc.freenode.net http://irc.freenode.net ##wicket
 
  
 


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid3432bid#0486dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Cancel button that doesn't do validation

2006-01-06 Thread Justin Lee
button.setDefaultFormProcessing(false);

Jonathan Carlson wrote:
 I hope I didn't just miss this in the documentation (or maybe I do :-)
 
 How would I turn off validation for a Cancel button on my form?  If
 it's already documented, please send me a link.  Thanks!
 
 - Jonathan
 
 
 
 __
 This email and any files transmitted with it are confidential and
 intended solely for the use of the individual or entity to whom they
 are addressed. If you have received this email in error please notify
 the system manager.
 
 Katun Corporation -- www.katun.com 
 _
 
 
 ---
 This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
 for problems?  Stop!  Download the new AJAX search engine that makes
 searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
 http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] How to reuse an existing page?

2005-09-26 Thread Justin Lee

I do this in one my form pages in onSubmit():

setResponsePage(findPage());


Trieu, Danny wrote:

Hi all,

 

It seems like every time you go to a Page, via click on a Link on a page 
or by setting setResponsePage(…) method


You always create a new page. And this new page will end up added to the 
PageMap of the current Session.


 

My question is, why do we have to create a new page every time?  If no, 
we don’t have to create a new page every time


Then How do you set response page to an existing page in PageMap? … and 
Is there any common pratices and howto


Example that I can refer to?

 

My reason for asking these question is because the overhead of 
constructing a new page on every single request can


Be a performance issues and that I need to understand the issues to make 
recommendation.


 


Thanks for any help.

 


--danny

 

//The essence of knowledge is, having it, to apply it; not having it, 
to confess your ignorance. -Confucius//


 



--
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
720.299.0101


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] adding children

2005-09-24 Thread Justin Lee
I was stepping through the wicket code trying to track down a problem 
with my page when I ran across some code.  In 
MarkupContainer.children_add()  there's this code:


if (this.children == null)
{
this.children = child;
}
else
{
// Get current list size
final int size = children_size();

// Create array that holds size + 1 elements
final Component[] children = new Component[size + 1];

// Loop through existing children copying them
for (int i = 0; i  size; i++)
{
children[i] = children_get(i);
}

// Add new child to the end
children[size] = child;

// Save new children
this.children = children;
}

It's look to me like a great case for System.arraycopy().  Now, i'm not 
all that familiar with the code so maybe there's a good reason for this, 
but I don't think i've ever seen a loop like this outperform 
System.arraycopy().  And perhaps it could use a List or a Set rather 
than an array since many of the operations are already provided. 
Likewise children_get() does full array scans looking for an item by ID 
when using a map would give much better performance.  But perhaps it was 
decided that the lists would likely be small enough not to matter.  But 
I can see this kind of thing adding up to some significant time in some 
cases.  Maybe there are some good decisions behind this code, but it 
doesn't appear to be documented anywhere.


Anyway, not to nit pick, I just saw that code and had to bring it up.

--
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
720.299.0101


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42 plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] multiple wicket borders

2005-09-12 Thread Justin Lee
Does anyone know what would cause me to get errors about multiple wicket 
borders when, as far as I can tell, I'm only adding one?


--
Justin Lee
http://www.antwerkz.com
AIM : evan chooly
720.299.0101


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user