Re: wicket quickstart

2013-11-07 Thread Andrea Del Bene
Now I fixed it. For some reason the css and JavaScript code has been 
wrapped as CDATA...

Hi,

Is it my impression or the quickstart in the wicket site is not working?

http://wicket.apache.org/start/quickstart.html

thank you,
Filipe Roque
-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org




-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



wicket quickstart

2013-11-07 Thread Filipe Roque
Hi,

Is it my impression or the quickstart in the wicket site is not working?

http://wicket.apache.org/start/quickstart.html

thank you,
Filipe Roque
-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Newbie: add spring to wicket quickstart

2009-11-11 Thread nino martinez wael
I think wicket iolite has this aswell...


2009/11/10 Владимир Михайленко 

> Thank you, now it works.
>
> On Tue, Nov 10, 2009 at 8:29 PM, Pieter Degraeuwe <
> pieter.degrae...@systemworks.be> wrote:
>
> > You are getting this exception from a unittest. When you use WicketTester
> > in
> > combination with Spring injection, you have to tweak it a bit:
> > You have to add the spring applicationContext to the mock ServletContext:
> >
> > Soe here a expect that you already did construct the spring
> > applicationContext. Creating the WicketTester:
> >
> >tester = new WicketTester(createWebApplication()) {
> >@Override
> >public ServletContext newServletContext(String path) {
> >MockServletContext servletContext =
> (MockServletContext)
> > super.newServletContext(path);
> >
> >
> >
> servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE,
> > applicationContext);
> >return servletContext;
> >}
> >};
> >tester.getWicketSession().setLocale(getLocale());
> >new SpringComponentInjector(tester.getApplication(),
> > applicationContext);
> >testerHolder = tester;
> >
> >
> > That should do it:
> >
> > 2009/11/10 Владимир Михайленко 
> >
> > > Hello.
> > >
> > > I just created wicket quickstart project via maven and want add Spring
> DI
> > > to
> > > Wicket. So I added to WicketApplication:
> > >
> > >@Override
> > >protected void init()
> > >{
> > >super.init();
> > >addComponentInstantiationListener(new
> > > SpringComponentInjector(this));
> > >}
> > >
> > > In web.xml I added:
> > >
> > > 
> > >  contextConfigLocation
> > >/WEB-INF/applicationContext.xml
> > > 
> > >
> > >
> > >wicket.jobmd
> > >
> > >
> org.apache.wicket.protocol.http.WicketFilter
> > > 
> > >applicationFactoryClassName
> > >
> > >
> > >
> >
> org.apache.wicket.spring.SpringWebApplicationFactory
> > >
> > >
> > >applicationBean
> > >wicketApplication
> > >
> > > 
> > >
> > > 
> > >
> > >
> > >
> >
> org.springframework.web.context.ContextLoaderListener
> > > 
> > >
> > > In pom.xml:
> > >
> > >
> > >org.apache.wicket
> > >wicket-spring
> > >${wicket.version}
> > >
> > >
> > >org.springframework
> > >spring
> > >2.5.6
> > >
> > >
> > > In applicationContext.xml:
> > >
> > >  > > class="com.mihailenco.WicketApplication">
> > >
> > > Then when I build project in latest stable NetBeans I get this error in
> > > console:
> > >
> > > Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 1.579
> sec
> > > <<< FAILURE!
> > > testRenderMyPage(com.mihailenco.TestHomePage)  Time elapsed: 1.435 sec
> >  <<<
> > > ERROR!
> > > java.lang.IllegalStateException: No WebApplicationContext found: no
> > > ContextLoaderListener registered?
> > >at
> > >
> > >
> >
> org.springframework.web.context.support.WebApplicationContextUtils.getRequiredWebApplicationContext(WebApplicationContextUtils.java:70)
> > >at
> > >
> > >
> >
> org.apache.wicket.spring.injection.annot.SpringComponentInjector.(SpringComponentInjector.java:72)
> > >at
> > com.mihailenco.WicketApplication.init(WicketApplication.java:24)
> > >at
> > >
> org.apache.wicket.protocol.http.WicketFilter.init(WicketFilter.java:708)
> > >at
> > >
> > >
> >
> org.apache.wicket.protocol.http.MockWebApplication.(MockWebApplication.java:168)
> > >at
> > >
> > >
> >
> org.apache.wicket.util.tester.BaseWicketTester.(BaseWicketTester.java:217)
> > >at
> > >
> org.apache.wicket.util.tester.WicketTester.(WicketTester.java:317)
>

Re: Newbie: add spring to wicket quickstart

2009-11-10 Thread Владимир Михайленко
Thank you, now it works.

On Tue, Nov 10, 2009 at 8:29 PM, Pieter Degraeuwe <
pieter.degrae...@systemworks.be> wrote:

> You are getting this exception from a unittest. When you use WicketTester
> in
> combination with Spring injection, you have to tweak it a bit:
> You have to add the spring applicationContext to the mock ServletContext:
>
> Soe here a expect that you already did construct the spring
> applicationContext. Creating the WicketTester:
>
>tester = new WicketTester(createWebApplication()) {
>@Override
>public ServletContext newServletContext(String path) {
>MockServletContext servletContext = (MockServletContext)
> super.newServletContext(path);
>
>
> servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE,
> applicationContext);
>return servletContext;
>}
>};
>tester.getWicketSession().setLocale(getLocale());
>new SpringComponentInjector(tester.getApplication(),
> applicationContext);
>testerHolder = tester;
>
>
> That should do it:
>
> 2009/11/10 Владимир Михайленко 
>
> > Hello.
> >
> > I just created wicket quickstart project via maven and want add Spring DI
> > to
> > Wicket. So I added to WicketApplication:
> >
> >@Override
> >protected void init()
> >{
> >super.init();
> >addComponentInstantiationListener(new
> > SpringComponentInjector(this));
> >}
> >
> > In web.xml I added:
> >
> > 
> >  contextConfigLocation
> >/WEB-INF/applicationContext.xml
> > 
> >
> >
> >wicket.jobmd
> >
> > org.apache.wicket.protocol.http.WicketFilter
> > 
> >applicationFactoryClassName
> >
> >
> >
> org.apache.wicket.spring.SpringWebApplicationFactory
> >
> >
> >applicationBean
> >wicketApplication
> >
> > 
> >
> > 
> >
> >
> >
> org.springframework.web.context.ContextLoaderListener
> > 
> >
> > In pom.xml:
> >
> >
> >org.apache.wicket
> >wicket-spring
> >${wicket.version}
> >
> >
> >org.springframework
> >spring
> >2.5.6
> >
> >
> > In applicationContext.xml:
> >
> >  > class="com.mihailenco.WicketApplication">
> >
> > Then when I build project in latest stable NetBeans I get this error in
> > console:
> >
> > Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 1.579 sec
> > <<< FAILURE!
> > testRenderMyPage(com.mihailenco.TestHomePage)  Time elapsed: 1.435 sec
>  <<<
> > ERROR!
> > java.lang.IllegalStateException: No WebApplicationContext found: no
> > ContextLoaderListener registered?
> >at
> >
> >
> org.springframework.web.context.support.WebApplicationContextUtils.getRequiredWebApplicationContext(WebApplicationContextUtils.java:70)
> >at
> >
> >
> org.apache.wicket.spring.injection.annot.SpringComponentInjector.(SpringComponentInjector.java:72)
> >at
> com.mihailenco.WicketApplication.init(WicketApplication.java:24)
> >at
> > org.apache.wicket.protocol.http.WicketFilter.init(WicketFilter.java:708)
> >at
> >
> >
> org.apache.wicket.protocol.http.MockWebApplication.(MockWebApplication.java:168)
> >at
> >
> >
> org.apache.wicket.util.tester.BaseWicketTester.(BaseWicketTester.java:217)
> >at
> > org.apache.wicket.util.tester.WicketTester.(WicketTester.java:317)
> >at
> > org.apache.wicket.util.tester.WicketTester.(WicketTester.java:300)
> >at com.mihailenco.TestHomePage.setUp(TestHomePage.java:16)
> >at junit.framework.TestCase.runBare(TestCase.java:128)
> >at junit.framework.TestResult$1.protect(TestResult.java:106)
> >at junit.framework.TestResult.runProtected(TestResult.java:124)
> >at junit.framework.TestResult.run(TestResult.java:109)
> >at junit.framework.TestCase.run(TestCase.java:120)
> >at junit.framework.TestSuite.runTest(TestSuite.java:230)
> >at junit.framework.TestSuite.run(TestSuite.java:225)
> >at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> >at
> >
> >
&g

Re: Newbie: add spring to wicket quickstart

2009-11-10 Thread Pieter Degraeuwe
You are getting this exception from a unittest. When you use WicketTester in
combination with Spring injection, you have to tweak it a bit:
You have to add the spring applicationContext to the mock ServletContext:

Soe here a expect that you already did construct the spring
applicationContext. Creating the WicketTester:

tester = new WicketTester(createWebApplication()) {
@Override
public ServletContext newServletContext(String path) {
MockServletContext servletContext = (MockServletContext)
super.newServletContext(path);

servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE,
applicationContext);
return servletContext;
}
};
tester.getWicketSession().setLocale(getLocale());
new SpringComponentInjector(tester.getApplication(),
applicationContext);
testerHolder = tester;


That should do it:

2009/11/10 Владимир Михайленко 

> Hello.
>
> I just created wicket quickstart project via maven and want add Spring DI
> to
> Wicket. So I added to WicketApplication:
>
>@Override
>protected void init()
>{
>super.init();
>addComponentInstantiationListener(new
> SpringComponentInjector(this));
>}
>
> In web.xml I added:
>
> 
>  contextConfigLocation
>/WEB-INF/applicationContext.xml
> 
>
>
>wicket.jobmd
>
> org.apache.wicket.protocol.http.WicketFilter
> 
>applicationFactoryClassName
>
>
> org.apache.wicket.spring.SpringWebApplicationFactory
>
>
>applicationBean
>wicketApplication
>
> 
>
> 
>
>
> org.springframework.web.context.ContextLoaderListener
> 
>
> In pom.xml:
>
>
>org.apache.wicket
>wicket-spring
>${wicket.version}
>
>
>org.springframework
>spring
>2.5.6
>
>
> In applicationContext.xml:
>
>  class="com.mihailenco.WicketApplication">
>
> Then when I build project in latest stable NetBeans I get this error in
> console:
>
> Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 1.579 sec
> <<< FAILURE!
> testRenderMyPage(com.mihailenco.TestHomePage)  Time elapsed: 1.435 sec  <<<
> ERROR!
> java.lang.IllegalStateException: No WebApplicationContext found: no
> ContextLoaderListener registered?
>at
>
> org.springframework.web.context.support.WebApplicationContextUtils.getRequiredWebApplicationContext(WebApplicationContextUtils.java:70)
>at
>
> org.apache.wicket.spring.injection.annot.SpringComponentInjector.(SpringComponentInjector.java:72)
>at com.mihailenco.WicketApplication.init(WicketApplication.java:24)
>at
> org.apache.wicket.protocol.http.WicketFilter.init(WicketFilter.java:708)
>at
>
> org.apache.wicket.protocol.http.MockWebApplication.(MockWebApplication.java:168)
>at
>
> org.apache.wicket.util.tester.BaseWicketTester.(BaseWicketTester.java:217)
>at
> org.apache.wicket.util.tester.WicketTester.(WicketTester.java:317)
>at
> org.apache.wicket.util.tester.WicketTester.(WicketTester.java:300)
>at com.mihailenco.TestHomePage.setUp(TestHomePage.java:16)
>at junit.framework.TestCase.runBare(TestCase.java:128)
>at junit.framework.TestResult$1.protect(TestResult.java:106)
>at junit.framework.TestResult.runProtected(TestResult.java:124)
>at junit.framework.TestResult.run(TestResult.java:109)
>at junit.framework.TestCase.run(TestCase.java:120)
>at junit.framework.TestSuite.runTest(TestSuite.java:230)
>at junit.framework.TestSuite.run(TestSuite.java:225)
>at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>at
>
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>at
>
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>at java.lang.reflect.Method.invoke(Method.java:597)
>at
> org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213)
>at
>
> org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140)
>at
>
> org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127)
>at org.apache.maven.surefire.Surefire.run(Surefire.java:177)
>at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>

Newbie: add spring to wicket quickstart

2009-11-10 Thread Владимир Михайленко
Hello.

I just created wicket quickstart project via maven and want add Spring DI to
Wicket. So I added to WicketApplication:

@Override
protected void init()
{
super.init();
addComponentInstantiationListener(new
SpringComponentInjector(this));
}

In web.xml I added:

 
  contextConfigLocation
/WEB-INF/applicationContext.xml
 


wicket.jobmd

org.apache.wicket.protocol.http.WicketFilter
 
applicationFactoryClassName

org.apache.wicket.spring.SpringWebApplicationFactory


applicationBean
wicketApplication

 

 

org.springframework.web.context.ContextLoaderListener
 

In pom.xml:


org.apache.wicket
wicket-spring
${wicket.version}


org.springframework
spring
2.5.6


In applicationContext.xml:



Then when I build project in latest stable NetBeans I get this error in
console:

Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 1.579 sec
<<< FAILURE!
testRenderMyPage(com.mihailenco.TestHomePage)  Time elapsed: 1.435 sec  <<<
ERROR!
java.lang.IllegalStateException: No WebApplicationContext found: no
ContextLoaderListener registered?
at
org.springframework.web.context.support.WebApplicationContextUtils.getRequiredWebApplicationContext(WebApplicationContextUtils.java:70)
at
org.apache.wicket.spring.injection.annot.SpringComponentInjector.(SpringComponentInjector.java:72)
at com.mihailenco.WicketApplication.init(WicketApplication.java:24)
at
org.apache.wicket.protocol.http.WicketFilter.init(WicketFilter.java:708)
at
org.apache.wicket.protocol.http.MockWebApplication.(MockWebApplication.java:168)
at
org.apache.wicket.util.tester.BaseWicketTester.(BaseWicketTester.java:217)
at
org.apache.wicket.util.tester.WicketTester.(WicketTester.java:317)
at
org.apache.wicket.util.tester.WicketTester.(WicketTester.java:300)
at com.mihailenco.TestHomePage.setUp(TestHomePage.java:16)
at junit.framework.TestCase.runBare(TestCase.java:128)
at junit.framework.TestResult$1.protect(TestResult.java:106)
at junit.framework.TestResult.runProtected(TestResult.java:124)
at junit.framework.TestResult.run(TestResult.java:109)
at junit.framework.TestCase.run(TestCase.java:120)
at junit.framework.TestSuite.runTest(TestSuite.java:230)
at junit.framework.TestSuite.run(TestSuite.java:225)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213)
at
org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140)
at
org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127)
at org.apache.maven.surefire.Surefire.run(Surefire.java:177)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:345)
at
org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1009)

Did I missed something? Thank you.


Re: Wicket Quickstart for Ant

2009-08-20 Thread Christian Beil

Ok, then I'll do that.
Thanks for the quick help.
And thanks for WIA by the way :)

Christian



Martijn Dashorst schrieb:

There's no updated ant version available, though the build.xml should
be compatible, provided you modify the compiler source and target
versions to at least 1.5 compatibility for Wicket 1.4 onwards.

Martijn

On Thu, Aug 20, 2009 at 11:34 PM, Christian Beil wrote:
  

Hi all,

I'm currently reading 'Wicket in Action' and I also like the bonus chapter
where the Wicket QuickStart build script is set up.
Now that I want to try coding some Wicket applications myself, I'd like to
use Wicket QuickStart.
I saw that the Quickstart project on the homepage uses Maven:
http://wicket.apache.org/quickstart.html
I tried it out and everything works nicely.
But I don't like Maven very much and  would prefer to use Ant.
The SourceForge page for wicket-quickstart using Ant seems to end with
version 1.2.7:
http://sourceforge.net/projects/wicket/files/wicket-quickstart/
There is also Qwicket which does a little more than QuickStart.
The most recent version of Qwicket contains an Ant build script and seems to
use Wicket 1.3.0.

At the moment I would like to use the latest version of Wicket, 1.4, and an
Ant based QuickStart project.
I can build it myself, but I wanted to ask if the Ant version of the
QuickStart project is still updated somewhere.


Thanks,

Christian

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org







  



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Quickstart for Ant

2009-08-20 Thread Martijn Dashorst
There's no updated ant version available, though the build.xml should
be compatible, provided you modify the compiler source and target
versions to at least 1.5 compatibility for Wicket 1.4 onwards.

Martijn

On Thu, Aug 20, 2009 at 11:34 PM, Christian Beil wrote:
> Hi all,
>
> I'm currently reading 'Wicket in Action' and I also like the bonus chapter
> where the Wicket QuickStart build script is set up.
> Now that I want to try coding some Wicket applications myself, I'd like to
> use Wicket QuickStart.
> I saw that the Quickstart project on the homepage uses Maven:
> http://wicket.apache.org/quickstart.html
> I tried it out and everything works nicely.
> But I don't like Maven very much and  would prefer to use Ant.
> The SourceForge page for wicket-quickstart using Ant seems to end with
> version 1.2.7:
> http://sourceforge.net/projects/wicket/files/wicket-quickstart/
> There is also Qwicket which does a little more than QuickStart.
> The most recent version of Qwicket contains an Ant build script and seems to
> use Wicket 1.3.0.
>
> At the moment I would like to use the latest version of Wicket, 1.4, and an
> Ant based QuickStart project.
> I can build it myself, but I wanted to ask if the Ant version of the
> QuickStart project is still updated somewhere.
>
>
> Thanks,
>
> Christian
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>



-- 
Become a Wicket expert, learn from the best: http://wicketinaction.com
Apache Wicket 1.4 increases type safety for web applications
Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.4.0

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Wicket Quickstart for Ant

2009-08-20 Thread Christian Beil

Hi all,

I'm currently reading 'Wicket in Action' and I also like the bonus 
chapter where the Wicket QuickStart build script is set up.
Now that I want to try coding some Wicket applications myself, I'd like 
to use Wicket QuickStart.
I saw that the Quickstart project on the homepage uses Maven: 
http://wicket.apache.org/quickstart.html

I tried it out and everything works nicely.
But I don't like Maven very much and  would prefer to use Ant.
The SourceForge page for wicket-quickstart using Ant seems to end with 
version 1.2.7:

http://sourceforge.net/projects/wicket/files/wicket-quickstart/
There is also Qwicket which does a little more than QuickStart.
The most recent version of Qwicket contains an Ant build script and 
seems to use Wicket 1.3.0.


At the moment I would like to use the latest version of Wicket, 1.4, and 
an Ant based QuickStart project.
I can build it myself, but I wanted to ask if the Ant version of the 
QuickStart project is still updated somewhere.



Thanks,

Christian

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Wicket QuickStart app failing at TestHomePage (testRenderMyPage)

2009-05-31 Thread David Brown
Hello Wicketeers, I had QuickStart app running OK out-of-the-box. Then, I tried 
to create a couple of Panels (from WIA) for a couple of links that basically 
swap the text on the same page. Now, the project will not build because of Test 
errors (not failures). The particulars follow. In the mean time I will start 
with a fresh QuickStart project. If anyone has any ideas, rants-or-raves please 
advise, David.

OS: Windows XP
IDE: Ganymede
Wicket: 1.4rc
JDK: 1.5_15
Maven: 2.0.9


---
Test set: com.sexingtechnologies.TestHomePage
---
Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.984 sec <<< 
FAILURE!
testRenderMyPage(com.sexingtechnologies.TestHomePage)  Time elapsed: 0.906 sec  
<<< ERROR!
org.apache.wicket.markup.MarkupNotFoundException: Base markup of inherited 
markup not found. Component class: com.sexingtechnologies.HomePage Enable debug 
messages for org.apache.wicket.util.resource.Resource to get a list of all 
filenames tried.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-31 Thread James Carman
Is there a way through the maven eclipse plugin to set properties like
that for a project?

On Sat, May 30, 2009 at 11:35 PM, David Brown
 wrote:
> Hello Igor, thanks - that did the trick. Regards, David.
>
>
>
> - Original Message -
> From: "Igor Vaynberg" 
> To: users@wicket.apache.org
> Sent: Saturday, May 30, 2009 4:13:37 PM GMT -06:00 US/Canada Central
> Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so different?
>
> window/preferences/compiler/building - remove *.html from output
> folder/filtered resources
>
> -igor
>
> On Sat, May 30, 2009 at 2:09 PM, David Brown
>  wrote:
>> Hello Luther, thanks for the informative and speedy reply. I'm going to take 
>> things one-step-at-a-time. So far, Igor is right about running the 
>> Start.class (as found in the test-classes directory). The only issue now is 
>> the Eclipse bug-a-boo about not copying the .HTML files along with the 
>> .CLASS files. See RuntimeException included below. As soon as I learn how to 
>> turn off the filter I will try your way if this fails. Yes, I am basically 
>> looking for anyway of speeding up the: edit, build, deploy cycle. Directly 
>> deploying .WAR files is OK once but since I'm trying to develop something 
>> for work I'm running out of time quickly. Thanks and regards, David.
>>
>>
>>
>> - Original Message -----
>> From: "Luther Baker" 
>> To: users@wicket.apache.org
>> Sent: Saturday, May 30, 2009 9:36:55 AM GMT -06:00 US/Canada Central
>> Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so different?
>>
>> For what its worth, I run a few Wicket 1.4x projects as within
>> Eclipse/m2plugin and pages, etc refresh just fine. I use the Run/Debug
>> Configurations and create a Maven application and then select the jetty
>> plugin, correct workspace and jetty:run command.
>>
>> There are also Jetty options you can include directly in the POM file that
>> define how and when Jetty should regularly will scan the deployed files ...
>> restarting Jetty if changes detected.
>>
>> What I've described is too different mechanisms for picking up changes ...
>> is that what you're asking for?
>>
>> -Luther
>>
>>
>>
>> On Sat, May 30, 2009 at 7:53 AM, Ben Tilford  wrote:
>>
>>> Something that may be worth trying is mvn jetty:run-exploded
>>>
>>> On Fri, May 29, 2009 at 6:10 PM, Igor Vaynberg >> >wrote:
>>>
>>> > like i said, the best way is to right click the Start class and do run
>>> > as java application. you can, of course, do it any other way you like
>>> > - including installing jetty eclipse launcher plugin.
>>> >
>>> > -igor
>>> >
>>> > On Fri, May 29, 2009 at 3:17 PM, David Brown
>>> >  wrote:
>>> > > Hello Igor, thanks for the reply. Can I just ignore the QuickStart
>>> > embedded jetty and install jetty on Eclipse then do a run-as without any
>>> > issues? Please advise, David.
>>> > >
>>> > >
>>> > > - Original Message -
>>> > > From: "Igor Vaynberg" 
>>> > > To: users@wicket.apache.org
>>> > > Cc: "david" 
>>> > > Sent: Friday, May 29, 2009 4:51:02 PM GMT -06:00 US/Canada Central
>>> > > Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so
>>> different?
>>> > >
>>> > > why dont you just start the project from eclipse directly using the
>>> > > Start class, that way you get debug and hotswap - which should be the
>>> > > real "student's dream" :)
>>> > >
>>> > > -igor
>>> > >
>>> > > On Fri, May 29, 2009 at 2:53 PM, David Brown
>>> > >  wrote:
>>> > >> Hello Martin, Jeremy, dev, gurus, users and mortals. I have just
>>> > finished ch. 13 of the WIA.pdf. I have followed closely the reading using
>>> > the wicket-in-action eclipse project. I have the wicket-in-action running
>>> > under the: mvn jetty:run. The wicket-in-action project is redeployed
>>> every
>>> > 60 seconds (a student's dream). After finishing the 13th chapter I
>>> decided
>>> > to leave the nest for the 1.4rc QuickStart. The new QuickStart project
>>> > expanded and imported into the Eclipse workspace no-problemo. The mystery
>>> is
>>> > what am I doing wrong to get the aut

Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-30 Thread David Brown
Hello Igor, thanks - that did the trick. Regards, David.



- Original Message -
From: "Igor Vaynberg" 
To: users@wicket.apache.org
Sent: Saturday, May 30, 2009 4:13:37 PM GMT -06:00 US/Canada Central
Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so different?

window/preferences/compiler/building - remove *.html from output
folder/filtered resources

-igor

On Sat, May 30, 2009 at 2:09 PM, David Brown
 wrote:
> Hello Luther, thanks for the informative and speedy reply. I'm going to take 
> things one-step-at-a-time. So far, Igor is right about running the 
> Start.class (as found in the test-classes directory). The only issue now is 
> the Eclipse bug-a-boo about not copying the .HTML files along with the .CLASS 
> files. See RuntimeException included below. As soon as I learn how to turn 
> off the filter I will try your way if this fails. Yes, I am basically looking 
> for anyway of speeding up the: edit, build, deploy cycle. Directly deploying 
> .WAR files is OK once but since I'm trying to develop something for work I'm 
> running out of time quickly. Thanks and regards, David.
>
>
>
> - Original Message -
> From: "Luther Baker" 
> To: users@wicket.apache.org
> Sent: Saturday, May 30, 2009 9:36:55 AM GMT -06:00 US/Canada Central
> Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so different?
>
> For what its worth, I run a few Wicket 1.4x projects as within
> Eclipse/m2plugin and pages, etc refresh just fine. I use the Run/Debug
> Configurations and create a Maven application and then select the jetty
> plugin, correct workspace and jetty:run command.
>
> There are also Jetty options you can include directly in the POM file that
> define how and when Jetty should regularly will scan the deployed files ...
> restarting Jetty if changes detected.
>
> What I've described is too different mechanisms for picking up changes ...
> is that what you're asking for?
>
> -Luther
>
>
>
> On Sat, May 30, 2009 at 7:53 AM, Ben Tilford  wrote:
>
>> Something that may be worth trying is mvn jetty:run-exploded
>>
>> On Fri, May 29, 2009 at 6:10 PM, Igor Vaynberg > >wrote:
>>
>> > like i said, the best way is to right click the Start class and do run
>> > as java application. you can, of course, do it any other way you like
>> > - including installing jetty eclipse launcher plugin.
>> >
>> > -igor
>> >
>> > On Fri, May 29, 2009 at 3:17 PM, David Brown
>> >  wrote:
>> > > Hello Igor, thanks for the reply. Can I just ignore the QuickStart
>> > embedded jetty and install jetty on Eclipse then do a run-as without any
>> > issues? Please advise, David.
>> > >
>> > >
>> > > - Original Message -
>> > > From: "Igor Vaynberg" 
>> > > To: users@wicket.apache.org
>> > > Cc: "david" 
>> > > Sent: Friday, May 29, 2009 4:51:02 PM GMT -06:00 US/Canada Central
>> > > Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so
>> different?
>> > >
>> > > why dont you just start the project from eclipse directly using the
>> > > Start class, that way you get debug and hotswap - which should be the
>> > > real "student's dream" :)
>> > >
>> > > -igor
>> > >
>> > > On Fri, May 29, 2009 at 2:53 PM, David Brown
>> > >  wrote:
>> > >> Hello Martin, Jeremy, dev, gurus, users and mortals. I have just
>> > finished ch. 13 of the WIA.pdf. I have followed closely the reading using
>> > the wicket-in-action eclipse project. I have the wicket-in-action running
>> > under the: mvn jetty:run. The wicket-in-action project is redeployed
>> every
>> > 60 seconds (a student's dream). After finishing the 13th chapter I
>> decided
>> > to leave the nest for the 1.4rc QuickStart. The new QuickStart project
>> > expanded and imported into the Eclipse workspace no-problemo. The mystery
>> is
>> > what am I doing wrong to get the automatic 60 second re-deploy. As it
>> stands
>> > now I have to kill jetty, mvn package and then restart jetty (mvn
>> > jetty:run). I have pasted in the:
>> > >>
>> > >>
>> > >> **
>> > >> 
>> > >>    configuration
>> > >>    development
>> > >> 
>> > >> **
>> > >>
>> > >> from the wicket-in-action web.

Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-30 Thread Igor Vaynberg
window/preferences/compiler/building - remove *.html from output
folder/filtered resources

-igor

On Sat, May 30, 2009 at 2:09 PM, David Brown
 wrote:
> Hello Luther, thanks for the informative and speedy reply. I'm going to take 
> things one-step-at-a-time. So far, Igor is right about running the 
> Start.class (as found in the test-classes directory). The only issue now is 
> the Eclipse bug-a-boo about not copying the .HTML files along with the .CLASS 
> files. See RuntimeException included below. As soon as I learn how to turn 
> off the filter I will try your way if this fails. Yes, I am basically looking 
> for anyway of speeding up the: edit, build, deploy cycle. Directly deploying 
> .WAR files is OK once but since I'm trying to develop something for work I'm 
> running out of time quickly. Thanks and regards, David.
>
>
>
> - Original Message -
> From: "Luther Baker" 
> To: users@wicket.apache.org
> Sent: Saturday, May 30, 2009 9:36:55 AM GMT -06:00 US/Canada Central
> Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so different?
>
> For what its worth, I run a few Wicket 1.4x projects as within
> Eclipse/m2plugin and pages, etc refresh just fine. I use the Run/Debug
> Configurations and create a Maven application and then select the jetty
> plugin, correct workspace and jetty:run command.
>
> There are also Jetty options you can include directly in the POM file that
> define how and when Jetty should regularly will scan the deployed files ...
> restarting Jetty if changes detected.
>
> What I've described is too different mechanisms for picking up changes ...
> is that what you're asking for?
>
> -Luther
>
>
>
> On Sat, May 30, 2009 at 7:53 AM, Ben Tilford  wrote:
>
>> Something that may be worth trying is mvn jetty:run-exploded
>>
>> On Fri, May 29, 2009 at 6:10 PM, Igor Vaynberg > >wrote:
>>
>> > like i said, the best way is to right click the Start class and do run
>> > as java application. you can, of course, do it any other way you like
>> > - including installing jetty eclipse launcher plugin.
>> >
>> > -igor
>> >
>> > On Fri, May 29, 2009 at 3:17 PM, David Brown
>> >  wrote:
>> > > Hello Igor, thanks for the reply. Can I just ignore the QuickStart
>> > embedded jetty and install jetty on Eclipse then do a run-as without any
>> > issues? Please advise, David.
>> > >
>> > >
>> > > - Original Message -
>> > > From: "Igor Vaynberg" 
>> > > To: users@wicket.apache.org
>> > > Cc: "david" 
>> > > Sent: Friday, May 29, 2009 4:51:02 PM GMT -06:00 US/Canada Central
>> > > Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so
>> different?
>> > >
>> > > why dont you just start the project from eclipse directly using the
>> > > Start class, that way you get debug and hotswap - which should be the
>> > > real "student's dream" :)
>> > >
>> > > -igor
>> > >
>> > > On Fri, May 29, 2009 at 2:53 PM, David Brown
>> > >  wrote:
>> > >> Hello Martin, Jeremy, dev, gurus, users and mortals. I have just
>> > finished ch. 13 of the WIA.pdf. I have followed closely the reading using
>> > the wicket-in-action eclipse project. I have the wicket-in-action running
>> > under the: mvn jetty:run. The wicket-in-action project is redeployed
>> every
>> > 60 seconds (a student's dream). After finishing the 13th chapter I
>> decided
>> > to leave the nest for the 1.4rc QuickStart. The new QuickStart project
>> > expanded and imported into the Eclipse workspace no-problemo. The mystery
>> is
>> > what am I doing wrong to get the automatic 60 second re-deploy. As it
>> stands
>> > now I have to kill jetty, mvn package and then restart jetty (mvn
>> > jetty:run). I have pasted in the:
>> > >>
>> > >>
>> > >> **
>> > >> 
>> > >>    configuration
>> > >>    development
>> > >> 
>> > >> **
>> > >>
>> > >> from the wicket-in-action web.xml but no change. The Windows cmd
>> console
>> > shows the usual Wicket WARNING: running in development mode. I plan to
>> use
>> > the wicket-in-action almost verbatim including the Hibernate DAO for my
&

Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-30 Thread David Brown
Hello Luther, thanks for the informative and speedy reply. I'm going to take 
things one-step-at-a-time. So far, Igor is right about running the Start.class 
(as found in the test-classes directory). The only issue now is the Eclipse 
bug-a-boo about not copying the .HTML files along with the .CLASS files. See 
RuntimeException included below. As soon as I learn how to turn off the filter 
I will try your way if this fails. Yes, I am basically looking for anyway of 
speeding up the: edit, build, deploy cycle. Directly deploying .WAR files is OK 
once but since I'm trying to develop something for work I'm running out of time 
quickly. Thanks and regards, David.



- Original Message -
From: "Luther Baker" 
To: users@wicket.apache.org
Sent: Saturday, May 30, 2009 9:36:55 AM GMT -06:00 US/Canada Central
Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so different?

For what its worth, I run a few Wicket 1.4x projects as within
Eclipse/m2plugin and pages, etc refresh just fine. I use the Run/Debug
Configurations and create a Maven application and then select the jetty
plugin, correct workspace and jetty:run command.

There are also Jetty options you can include directly in the POM file that
define how and when Jetty should regularly will scan the deployed files ...
restarting Jetty if changes detected.

What I've described is too different mechanisms for picking up changes ...
is that what you're asking for?

-Luther



On Sat, May 30, 2009 at 7:53 AM, Ben Tilford  wrote:

> Something that may be worth trying is mvn jetty:run-exploded
>
> On Fri, May 29, 2009 at 6:10 PM, Igor Vaynberg  >wrote:
>
> > like i said, the best way is to right click the Start class and do run
> > as java application. you can, of course, do it any other way you like
> > - including installing jetty eclipse launcher plugin.
> >
> > -igor
> >
> > On Fri, May 29, 2009 at 3:17 PM, David Brown
> >  wrote:
> > > Hello Igor, thanks for the reply. Can I just ignore the QuickStart
> > embedded jetty and install jetty on Eclipse then do a run-as without any
> > issues? Please advise, David.
> > >
> > >
> > > - Original Message -
> > > From: "Igor Vaynberg" 
> > > To: users@wicket.apache.org
> > > Cc: "david" 
> > > Sent: Friday, May 29, 2009 4:51:02 PM GMT -06:00 US/Canada Central
> > > Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so
> different?
> > >
> > > why dont you just start the project from eclipse directly using the
> > > Start class, that way you get debug and hotswap - which should be the
> > > real "student's dream" :)
> > >
> > > -igor
> > >
> > > On Fri, May 29, 2009 at 2:53 PM, David Brown
> > >  wrote:
> > >> Hello Martin, Jeremy, dev, gurus, users and mortals. I have just
> > finished ch. 13 of the WIA.pdf. I have followed closely the reading using
> > the wicket-in-action eclipse project. I have the wicket-in-action running
> > under the: mvn jetty:run. The wicket-in-action project is redeployed
> every
> > 60 seconds (a student's dream). After finishing the 13th chapter I
> decided
> > to leave the nest for the 1.4rc QuickStart. The new QuickStart project
> > expanded and imported into the Eclipse workspace no-problemo. The mystery
> is
> > what am I doing wrong to get the automatic 60 second re-deploy. As it
> stands
> > now I have to kill jetty, mvn package and then restart jetty (mvn
> > jetty:run). I have pasted in the:
> > >>
> > >>
> > >> **
> > >> 
> > >>configuration
> > >>development
> > >> 
> > >> **
> > >>
> > >> from the wicket-in-action web.xml but no change. The Windows cmd
> console
> > shows the usual Wicket WARNING: running in development mode. I plan to
> use
> > the wicket-in-action almost verbatim including the Hibernate DAO for my
> > current gig. It is probably only a few weeks before they start holding my
> > feet to the fire.
> > >>
> > >> Please advise, David.
> > >>
> > >> -
> > >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > >> For additional commands, e-mail: users-h...@wicket.apache.org
> > >>
> > >>
> > >
> > > -
> > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > &

Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-30 Thread Martin Grigorov
Check project's sources (Project -> Properties -> Build path -> Sources)
and remove the excludes

El sáb, 30-05-2009 a las 11:08 -0500, da...@davidwbrown.name escribió:
> Hello Igor, thanks. I had to create an Eclipse Run/Launch property as the 
>  is not available on right click (but it works). The only issue now 
> is the corresponding HTML page cannot be found. I have seen this before on 
> this ML but I can no longer find the reference. Apparently, Eclipse 
> properties limits copying .HTML files with the classes. I have not found how 
> or where to change this. Any and all feedback welcomed. Regards, David.
> 
> 
> Igor Vaynberg wrote ..
> > like i said, the best way is to right click the Start class and do run
> > as java application. you can, of course, do it any other way you like
> > - including installing jetty eclipse launcher plugin.
> > 
> > -igor
> > 
> > On Fri, May 29, 2009 at 3:17 PM, David Brown
> >  wrote:
> > > Hello Igor, thanks for the reply. Can I just ignore the QuickStart 
> > > embedded jetty
> > and install jetty on Eclipse then do a run-as without any issues? Please 
> > advise,
> > David.
> > >
> > >
> > > - Original Message -
> > > From: "Igor Vaynberg" 
> > > To: users@wicket.apache.org
> > > Cc: "david" 
> > > Sent: Friday, May 29, 2009 4:51:02 PM GMT -06:00 US/Canada Central
> > > Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so different?
> > >
> > > why dont you just start the project from eclipse directly using the
> > > Start class, that way you get debug and hotswap - which should be the
> > > real "student's dream" :)
> > >
> > > -igor
> > >
> > > On Fri, May 29, 2009 at 2:53 PM, David Brown
> > >  wrote:
> > >> Hello Martin, Jeremy, dev, gurus, users and mortals. I have just 
> > >> finished ch.
> > 13 of the WIA.pdf. I have followed closely the reading using the 
> > wicket-in-action
> > eclipse project. I have the wicket-in-action running under the: mvn 
> > jetty:run.
> > The wicket-in-action project is redeployed every 60 seconds (a student's 
> > dream).
> > After finishing the 13th chapter I decided to leave the nest for the 1.4rc 
> > QuickStart.
> > The new QuickStart project expanded and imported into the Eclipse workspace 
> > no-problemo.
> > The mystery is what am I doing wrong to get the automatic 60 second 
> > re-deploy.
> > As it stands now I have to kill jetty, mvn package and then restart jetty 
> > (mvn
> > jetty:run). I have pasted in the:
> > >>
> > >>
> > >> **
> > >> 
> > >>  configuration
> > >>  development
> > >> 
> > >> **
> > >>
> > >> from the wicket-in-action web.xml but no change. The Windows cmd console 
> > >> shows
> > the usual Wicket WARNING: running in development mode. I plan to use the 
> > wicket-in-action
> > almost verbatim including the Hibernate DAO for my current gig. It is 
> > probably
> > only a few weeks before they start holding my feet to the fire.
> > >>
> > >> Please advise, David.
> > >>
> > >> -
> > >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > >> For additional commands, e-mail: users-h...@wicket.apache.org
> > >>
> > >>
> > >
> > > -
> > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > > For additional commands, e-mail: users-h...@wicket.apache.org
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > > For additional commands, e-mail: users-h...@wicket.apache.org
> > >
> > >
> > 
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-30 Thread david
Hello Igor, thanks. I had to create an Eclipse Run/Launch property as the  is not available on right click (but it works). The only issue now is the 
corresponding HTML page cannot be found. I have seen this before on this ML but 
I can no longer find the reference. Apparently, Eclipse properties limits 
copying .HTML files with the classes. I have not found how or where to change 
this. Any and all feedback welcomed. Regards, David.


Igor Vaynberg wrote ..
> like i said, the best way is to right click the Start class and do run
> as java application. you can, of course, do it any other way you like
> - including installing jetty eclipse launcher plugin.
>
> -igor
>
> On Fri, May 29, 2009 at 3:17 PM, David Brown
>  wrote:
> > Hello Igor, thanks for the reply. Can I just ignore the QuickStart embedded 
> > jetty
> and install jetty on Eclipse then do a run-as without any issues? Please 
> advise,
> David.
> >
> >
> > - Original Message -
> > From: "Igor Vaynberg" 
> > To: users@wicket.apache.org
> > Cc: "david" 
> > Sent: Friday, May 29, 2009 4:51:02 PM GMT -06:00 US/Canada Central
> > Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so different?
> >
> > why dont you just start the project from eclipse directly using the
> > Start class, that way you get debug and hotswap - which should be the
> > real "student's dream" :)
> >
> > -igor
> >
> > On Fri, May 29, 2009 at 2:53 PM, David Brown
> >  wrote:
> >> Hello Martin, Jeremy, dev, gurus, users and mortals. I have just finished 
> >> ch.
> 13 of the WIA.pdf. I have followed closely the reading using the 
> wicket-in-action
> eclipse project. I have the wicket-in-action running under the: mvn jetty:run.
> The wicket-in-action project is redeployed every 60 seconds (a student's 
> dream).
> After finishing the 13th chapter I decided to leave the nest for the 1.4rc 
> QuickStart.
> The new QuickStart project expanded and imported into the Eclipse workspace 
> no-problemo.
> The mystery is what am I doing wrong to get the automatic 60 second re-deploy.
> As it stands now I have to kill jetty, mvn package and then restart jetty (mvn
> jetty:run). I have pasted in the:
> >>
> >>
> >> **
> >> 
> >>    configuration
> >>    development
> >> 
> >> **
> >>
> >> from the wicket-in-action web.xml but no change. The Windows cmd console 
> >> shows
> the usual Wicket WARNING: running in development mode. I plan to use the 
> wicket-in-action
> almost verbatim including the Hibernate DAO for my current gig. It is probably
> only a few weeks before they start holding my feet to the fire.
> >>
> >> Please advise, David.
> >>
> >> -
> >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> >> For additional commands, e-mail: users-h...@wicket.apache.org
> >>
> >>
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-30 Thread Luther Baker
For what its worth, I run a few Wicket 1.4x projects as within
Eclipse/m2plugin and pages, etc refresh just fine. I use the Run/Debug
Configurations and create a Maven application and then select the jetty
plugin, correct workspace and jetty:run command.

There are also Jetty options you can include directly in the POM file that
define how and when Jetty should regularly will scan the deployed files ...
restarting Jetty if changes detected.

What I've described is too different mechanisms for picking up changes ...
is that what you're asking for?

-Luther



On Sat, May 30, 2009 at 7:53 AM, Ben Tilford  wrote:

> Something that may be worth trying is mvn jetty:run-exploded
>
> On Fri, May 29, 2009 at 6:10 PM, Igor Vaynberg  >wrote:
>
> > like i said, the best way is to right click the Start class and do run
> > as java application. you can, of course, do it any other way you like
> > - including installing jetty eclipse launcher plugin.
> >
> > -igor
> >
> > On Fri, May 29, 2009 at 3:17 PM, David Brown
> >  wrote:
> > > Hello Igor, thanks for the reply. Can I just ignore the QuickStart
> > embedded jetty and install jetty on Eclipse then do a run-as without any
> > issues? Please advise, David.
> > >
> > >
> > > - Original Message -
> > > From: "Igor Vaynberg" 
> > > To: users@wicket.apache.org
> > > Cc: "david" 
> > > Sent: Friday, May 29, 2009 4:51:02 PM GMT -06:00 US/Canada Central
> > > Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so
> different?
> > >
> > > why dont you just start the project from eclipse directly using the
> > > Start class, that way you get debug and hotswap - which should be the
> > > real "student's dream" :)
> > >
> > > -igor
> > >
> > > On Fri, May 29, 2009 at 2:53 PM, David Brown
> > >  wrote:
> > >> Hello Martin, Jeremy, dev, gurus, users and mortals. I have just
> > finished ch. 13 of the WIA.pdf. I have followed closely the reading using
> > the wicket-in-action eclipse project. I have the wicket-in-action running
> > under the: mvn jetty:run. The wicket-in-action project is redeployed
> every
> > 60 seconds (a student's dream). After finishing the 13th chapter I
> decided
> > to leave the nest for the 1.4rc QuickStart. The new QuickStart project
> > expanded and imported into the Eclipse workspace no-problemo. The mystery
> is
> > what am I doing wrong to get the automatic 60 second re-deploy. As it
> stands
> > now I have to kill jetty, mvn package and then restart jetty (mvn
> > jetty:run). I have pasted in the:
> > >>
> > >>
> > >> **
> > >> 
> > >>configuration
> > >>development
> > >> 
> > >> **
> > >>
> > >> from the wicket-in-action web.xml but no change. The Windows cmd
> console
> > shows the usual Wicket WARNING: running in development mode. I plan to
> use
> > the wicket-in-action almost verbatim including the Hibernate DAO for my
> > current gig. It is probably only a few weeks before they start holding my
> > feet to the fire.
> > >>
> > >> Please advise, David.
> > >>
> > >> -
> > >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > >> For additional commands, e-mail: users-h...@wicket.apache.org
> > >>
> > >>
> > >
> > > -
> > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > > For additional commands, e-mail: users-h...@wicket.apache.org
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > > For additional commands, e-mail: users-h...@wicket.apache.org
> > >
> > >
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
>


Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-30 Thread Ben Tilford
Something that may be worth trying is mvn jetty:run-exploded

On Fri, May 29, 2009 at 6:10 PM, Igor Vaynberg wrote:

> like i said, the best way is to right click the Start class and do run
> as java application. you can, of course, do it any other way you like
> - including installing jetty eclipse launcher plugin.
>
> -igor
>
> On Fri, May 29, 2009 at 3:17 PM, David Brown
>  wrote:
> > Hello Igor, thanks for the reply. Can I just ignore the QuickStart
> embedded jetty and install jetty on Eclipse then do a run-as without any
> issues? Please advise, David.
> >
> >
> > - Original Message -
> > From: "Igor Vaynberg" 
> > To: users@wicket.apache.org
> > Cc: "david" 
> > Sent: Friday, May 29, 2009 4:51:02 PM GMT -06:00 US/Canada Central
> > Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so different?
> >
> > why dont you just start the project from eclipse directly using the
> > Start class, that way you get debug and hotswap - which should be the
> > real "student's dream" :)
> >
> > -igor
> >
> > On Fri, May 29, 2009 at 2:53 PM, David Brown
> >  wrote:
> >> Hello Martin, Jeremy, dev, gurus, users and mortals. I have just
> finished ch. 13 of the WIA.pdf. I have followed closely the reading using
> the wicket-in-action eclipse project. I have the wicket-in-action running
> under the: mvn jetty:run. The wicket-in-action project is redeployed every
> 60 seconds (a student's dream). After finishing the 13th chapter I decided
> to leave the nest for the 1.4rc QuickStart. The new QuickStart project
> expanded and imported into the Eclipse workspace no-problemo. The mystery is
> what am I doing wrong to get the automatic 60 second re-deploy. As it stands
> now I have to kill jetty, mvn package and then restart jetty (mvn
> jetty:run). I have pasted in the:
> >>
> >>
> >> **
> >> 
> >>configuration
> >>development
> >> 
> >> **
> >>
> >> from the wicket-in-action web.xml but no change. The Windows cmd console
> shows the usual Wicket WARNING: running in development mode. I plan to use
> the wicket-in-action almost verbatim including the Hibernate DAO for my
> current gig. It is probably only a few weeks before they start holding my
> feet to the fire.
> >>
> >> Please advise, David.
> >>
> >> -
> >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> >> For additional commands, e-mail: users-h...@wicket.apache.org
> >>
> >>
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-29 Thread Igor Vaynberg
like i said, the best way is to right click the Start class and do run
as java application. you can, of course, do it any other way you like
- including installing jetty eclipse launcher plugin.

-igor

On Fri, May 29, 2009 at 3:17 PM, David Brown
 wrote:
> Hello Igor, thanks for the reply. Can I just ignore the QuickStart embedded 
> jetty and install jetty on Eclipse then do a run-as without any issues? 
> Please advise, David.
>
>
> - Original Message -
> From: "Igor Vaynberg" 
> To: users@wicket.apache.org
> Cc: "david" 
> Sent: Friday, May 29, 2009 4:51:02 PM GMT -06:00 US/Canada Central
> Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so different?
>
> why dont you just start the project from eclipse directly using the
> Start class, that way you get debug and hotswap - which should be the
> real "student's dream" :)
>
> -igor
>
> On Fri, May 29, 2009 at 2:53 PM, David Brown
>  wrote:
>> Hello Martin, Jeremy, dev, gurus, users and mortals. I have just finished 
>> ch. 13 of the WIA.pdf. I have followed closely the reading using the 
>> wicket-in-action eclipse project. I have the wicket-in-action running under 
>> the: mvn jetty:run. The wicket-in-action project is redeployed every 60 
>> seconds (a student's dream). After finishing the 13th chapter I decided to 
>> leave the nest for the 1.4rc QuickStart. The new QuickStart project expanded 
>> and imported into the Eclipse workspace no-problemo. The mystery is what am 
>> I doing wrong to get the automatic 60 second re-deploy. As it stands now I 
>> have to kill jetty, mvn package and then restart jetty (mvn jetty:run). I 
>> have pasted in the:
>>
>>
>> **
>> 
>>    configuration
>>    development
>> 
>> **
>>
>> from the wicket-in-action web.xml but no change. The Windows cmd console 
>> shows the usual Wicket WARNING: running in development mode. I plan to use 
>> the wicket-in-action almost verbatim including the Hibernate DAO for my 
>> current gig. It is probably only a few weeks before they start holding my 
>> feet to the fire.
>>
>> Please advise, David.
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-29 Thread David Brown
Hello Igor, thanks for the reply. Can I just ignore the QuickStart embedded 
jetty and install jetty on Eclipse then do a run-as without any issues? Please 
advise, David.


- Original Message -
From: "Igor Vaynberg" 
To: users@wicket.apache.org
Cc: "david" 
Sent: Friday, May 29, 2009 4:51:02 PM GMT -06:00 US/Canada Central
Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so different?

why dont you just start the project from eclipse directly using the
Start class, that way you get debug and hotswap - which should be the
real "student's dream" :)

-igor

On Fri, May 29, 2009 at 2:53 PM, David Brown
 wrote:
> Hello Martin, Jeremy, dev, gurus, users and mortals. I have just finished ch. 
> 13 of the WIA.pdf. I have followed closely the reading using the 
> wicket-in-action eclipse project. I have the wicket-in-action running under 
> the: mvn jetty:run. The wicket-in-action project is redeployed every 60 
> seconds (a student's dream). After finishing the 13th chapter I decided to 
> leave the nest for the 1.4rc QuickStart. The new QuickStart project expanded 
> and imported into the Eclipse workspace no-problemo. The mystery is what am I 
> doing wrong to get the automatic 60 second re-deploy. As it stands now I have 
> to kill jetty, mvn package and then restart jetty (mvn jetty:run). I have 
> pasted in the:
>
>
> **
> 
>    configuration
>    development
> 
> **
>
> from the wicket-in-action web.xml but no change. The Windows cmd console 
> shows the usual Wicket WARNING: running in development mode. I plan to use 
> the wicket-in-action almost verbatim including the Hibernate DAO for my 
> current gig. It is probably only a few weeks before they start holding my 
> feet to the fire.
>
> Please advise, David.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-29 Thread David Brown
Hello Ryan, thanks for the reply but I have the project imported successfully 
into Eclipse. David.

- Original Message -
From: "Ryan Gravener" 
To: users@wicket.apache.org
Cc: "david" 
Sent: Friday, May 29, 2009 4:53:33 PM GMT -06:00 US/Canada Central
Subject: Re: Wicket Quickstart vs WIA eclipse projects: why so different?

Yes, that is the real students dream.

mvn eclipse:eclipse


On Fri, May 29, 2009 at 5:51 PM, Igor Vaynberg wrote:

> why dont you just start the project from eclipse directly using the
> Start class, that way you get debug and hotswap - which should be the
> real "student's dream" :)
>
> -igor
>
> On Fri, May 29, 2009 at 2:53 PM, David Brown
>  wrote:
> > Hello Martin, Jeremy, dev, gurus, users and mortals. I have just finished
> ch. 13 of the WIA.pdf. I have followed closely the reading using the
> wicket-in-action eclipse project. I have the wicket-in-action running under
> the: mvn jetty:run. The wicket-in-action project is redeployed every 60
> seconds (a student's dream). After finishing the 13th chapter I decided to
> leave the nest for the 1.4rc QuickStart. The new QuickStart project expanded
> and imported into the Eclipse workspace no-problemo. The mystery is what am
> I doing wrong to get the automatic 60 second re-deploy. As it stands now I
> have to kill jetty, mvn package and then restart jetty (mvn jetty:run). I
> have pasted in the:
> >
> >
> > **
> > 
> >configuration
> >development
> > 
> > **
> >
> > from the wicket-in-action web.xml but no change. The Windows cmd console
> shows the usual Wicket WARNING: running in development mode. I plan to use
> the wicket-in-action almost verbatim including the Hibernate DAO for my
> current gig. It is probably only a few weeks before they start holding my
> feet to the fire.
> >
> > Please advise, David.
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-29 Thread Ryan Gravener
Yes, that is the real students dream.

mvn eclipse:eclipse


On Fri, May 29, 2009 at 5:51 PM, Igor Vaynberg wrote:

> why dont you just start the project from eclipse directly using the
> Start class, that way you get debug and hotswap - which should be the
> real "student's dream" :)
>
> -igor
>
> On Fri, May 29, 2009 at 2:53 PM, David Brown
>  wrote:
> > Hello Martin, Jeremy, dev, gurus, users and mortals. I have just finished
> ch. 13 of the WIA.pdf. I have followed closely the reading using the
> wicket-in-action eclipse project. I have the wicket-in-action running under
> the: mvn jetty:run. The wicket-in-action project is redeployed every 60
> seconds (a student's dream). After finishing the 13th chapter I decided to
> leave the nest for the 1.4rc QuickStart. The new QuickStart project expanded
> and imported into the Eclipse workspace no-problemo. The mystery is what am
> I doing wrong to get the automatic 60 second re-deploy. As it stands now I
> have to kill jetty, mvn package and then restart jetty (mvn jetty:run). I
> have pasted in the:
> >
> >
> > **
> > 
> >configuration
> >development
> > 
> > **
> >
> > from the wicket-in-action web.xml but no change. The Windows cmd console
> shows the usual Wicket WARNING: running in development mode. I plan to use
> the wicket-in-action almost verbatim including the Hibernate DAO for my
> current gig. It is probably only a few weeks before they start holding my
> feet to the fire.
> >
> > Please advise, David.
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-29 Thread Igor Vaynberg
why dont you just start the project from eclipse directly using the
Start class, that way you get debug and hotswap - which should be the
real "student's dream" :)

-igor

On Fri, May 29, 2009 at 2:53 PM, David Brown
 wrote:
> Hello Martin, Jeremy, dev, gurus, users and mortals. I have just finished ch. 
> 13 of the WIA.pdf. I have followed closely the reading using the 
> wicket-in-action eclipse project. I have the wicket-in-action running under 
> the: mvn jetty:run. The wicket-in-action project is redeployed every 60 
> seconds (a student's dream). After finishing the 13th chapter I decided to 
> leave the nest for the 1.4rc QuickStart. The new QuickStart project expanded 
> and imported into the Eclipse workspace no-problemo. The mystery is what am I 
> doing wrong to get the automatic 60 second re-deploy. As it stands now I have 
> to kill jetty, mvn package and then restart jetty (mvn jetty:run). I have 
> pasted in the:
>
>
> **
> 
>    configuration
>    development
> 
> **
>
> from the wicket-in-action web.xml but no change. The Windows cmd console 
> shows the usual Wicket WARNING: running in development mode. I plan to use 
> the wicket-in-action almost verbatim including the Hibernate DAO for my 
> current gig. It is probably only a few weeks before they start holding my 
> feet to the fire.
>
> Please advise, David.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-29 Thread David Brown
Hello Martin, Jeremy, dev, gurus, users and mortals. I have just finished ch. 
13 of the WIA.pdf. I have followed closely the reading using the 
wicket-in-action eclipse project. I have the wicket-in-action running under 
the: mvn jetty:run. The wicket-in-action project is redeployed every 60 seconds 
(a student's dream). After finishing the 13th chapter I decided to leave the 
nest for the 1.4rc QuickStart. The new QuickStart project expanded and imported 
into the Eclipse workspace no-problemo. The mystery is what am I doing wrong to 
get the automatic 60 second re-deploy. As it stands now I have to kill jetty, 
mvn package and then restart jetty (mvn jetty:run). I have pasted in the:


**

configuration
development

**

from the wicket-in-action web.xml but no change. The Windows cmd console shows 
the usual Wicket WARNING: running in development mode. I plan to use the 
wicket-in-action almost verbatim including the Hibernate DAO for my current 
gig. It is probably only a few weeks before they start holding my feet to the 
fire.

Please advise, David.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Quickstart Installation Guide for Beginners

2009-03-04 Thread Igor Vaynberg
i think somewhere off the main page should be fine. it is a nice
addition to the wiki, we might even have to make this a faq and link
to it off our website :)

-igor

On Wed, Mar 4, 2009 at 1:15 PM, Dane Laverty  wrote:
> Great. I've finished putting the pictures into the document. Is there a
> place on the wiki where I should locate the page?
>
> Dane
>
> -Original Message-
> From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com]
> Sent: Wednesday, March 04, 2009 10:55 AM
> To: users@wicket.apache.org
> Subject: Re: Wicket Quickstart Installation Guide for Beginners
>
> they are attached
>
> -igor
>
> On Wed, Mar 4, 2009 at 10:48 AM, Dane Laverty
>  wrote:
>> Alright Igor, that's all of them. Thanks for everyone's help with
> this.
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



RE: Wicket Quickstart Installation Guide for Beginners

2009-03-04 Thread Dane Laverty
Great. I've finished putting the pictures into the document. Is there a
place on the wiki where I should locate the page?

Dane

-Original Message-
From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] 
Sent: Wednesday, March 04, 2009 10:55 AM
To: users@wicket.apache.org
Subject: Re: Wicket Quickstart Installation Guide for Beginners

they are attached

-igor

On Wed, Mar 4, 2009 at 10:48 AM, Dane Laverty
 wrote:
> Alright Igor, that's all of them. Thanks for everyone's help with
this.
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Quickstart Installation Guide for Beginners

2009-03-04 Thread Igor Vaynberg
they are attached

-igor

On Wed, Mar 4, 2009 at 10:48 AM, Dane Laverty  wrote:
> Alright Igor, that's all of them. Thanks for everyone's help with this.
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



RE: Wicket Quickstart Installation Guide for Beginners

2009-03-04 Thread Dane Laverty
Alright Igor, that's all of them. Thanks for everyone's help with this.


Re: Wicket Quickstart Installation Guide for Beginners

2009-03-04 Thread Maarten Bosteels
I think you need to login first.

Here is wher you can create a JIRA account (can be used for all Apache
projects that use JIRA) :
https://issues.apache.org/jira/secure/Signup!default.jspa

Maarten

On Wed, Mar 4, 2009 at 5:27 PM, Dane Laverty wrote:

> Alright, I just created a JIRA account. I've browsed to the Wicket project,
> but I don't see any way to create a new issue. At the top of the screen I
> have "HOME", "BROWSE PROJECT" and "FIND ISSUES", and under that I see "Open
> Issues", "Road Map", "Change Log", "Popular Issues", "Subversion Commits",
> "Releases", "Versions", "Components", and "FishEye". Where should I go to
> create an issue?
>
> -Original Message-
> From: Martijn Dashorst [mailto:martijn.dasho...@gmail.com]
> Sent: Tuesday, March 03, 2009 11:14 PM
> To: users@wicket.apache.org
> Subject: Re: Wicket Quickstart Installation Guide for Beginners
>
> I think the admins disabled attachments for non-committers. Can you
> attach them through a JIRA issue? then someone with the correct
> permissions can upload them. Just make sure to give them identifiable
> names, and don't forget to check the "Intended for inclusion in Apache
> products" check box :)
>
> Martijn
>
> On Wed, Mar 4, 2009 at 1:45 AM, Dane Laverty 
> wrote:
> > Thanks, it looks good. I checked the Confluence website about adding
> > images to a page and it says:
> >
> >> To attach a file to a page,
> >>
> >>   1. Go to the page and click on the 'Attachments' tab.
> >>
> >>   2. Browse through your files and select the file you'd like to
> > attach.
> >>
> >>   3. Enter a description for the attachment in the 'Comment' text
> > field (optional).
> >>
> >>   4. Click 'Attach more files' if required.
> >>
> >>   5. Click 'Attach File'.
> >
> > I'm not seeing any 'Attachments' tab. Do I need different permissions?
> > Or do I have to link to an image hosted elsewhere?
> >
> >
> > -Original Message-
> > From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com]
> > Sent: Tuesday, March 03, 2009 4:23 PM
> > To: users@wicket.apache.org
> > Subject: Re: Wicket Quickstart Installation Guide for Beginners
> >
> > i got you most of the way there, you just need to upload images and
> > put them in the right place
> >
> > when you hit edit page, switch to the first tab which says "rich
> > format" that should give you a nice wysiwig editor to work with.
> >
> > -igor
> >
> > On Tue, Mar 3, 2009 at 4:08 PM, Dane Laverty 
> > wrote:
> >> I attempted to do that, but without any luck. I'm not at all familiar
> >> with wikis, but I'd be happy to do it if someone will point me in the
> >> right direction.
> >>
> >> -Original Message-
> >> From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com]
> >> Sent: Tuesday, March 03, 2009 3:44 PM
> >> To: users@wicket.apache.org
> >> Subject: Re: Wicket Quickstart Installation Guide for Beginners
> >>
> >> you can add a link to it off our wiki. or possibly upload it to the
> >> wiki, not sure how attachments there work.
> >>
> >> -igor
> >>
> >> -
> >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> >> For additional commands, e-mail: users-h...@wicket.apache.org
> >>
> >>
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
>
>
>
> --
> Become a Wicket expert, learn from the best: http://wicketinaction.com
> Apache Wicket 1.3.5 is released
> Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


RE: Wicket Quickstart Installation Guide for Beginners

2009-03-04 Thread Dane Laverty
Alright, I just created a JIRA account. I've browsed to the Wicket project, but 
I don't see any way to create a new issue. At the top of the screen I have 
"HOME", "BROWSE PROJECT" and "FIND ISSUES", and under that I see "Open Issues", 
"Road Map", "Change Log", "Popular Issues", "Subversion Commits", "Releases", 
"Versions", "Components", and "FishEye". Where should I go to create an issue?

-Original Message-
From: Martijn Dashorst [mailto:martijn.dasho...@gmail.com] 
Sent: Tuesday, March 03, 2009 11:14 PM
To: users@wicket.apache.org
Subject: Re: Wicket Quickstart Installation Guide for Beginners

I think the admins disabled attachments for non-committers. Can you
attach them through a JIRA issue? then someone with the correct
permissions can upload them. Just make sure to give them identifiable
names, and don't forget to check the "Intended for inclusion in Apache
products" check box :)

Martijn

On Wed, Mar 4, 2009 at 1:45 AM, Dane Laverty  wrote:
> Thanks, it looks good. I checked the Confluence website about adding
> images to a page and it says:
>
>> To attach a file to a page,
>>
>>   1. Go to the page and click on the 'Attachments' tab.
>>
>>   2. Browse through your files and select the file you'd like to
> attach.
>>
>>   3. Enter a description for the attachment in the 'Comment' text
> field (optional).
>>
>>   4. Click 'Attach more files' if required.
>>
>>   5. Click 'Attach File'.
>
> I'm not seeing any 'Attachments' tab. Do I need different permissions?
> Or do I have to link to an image hosted elsewhere?
>
>
> -Original Message-
> From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com]
> Sent: Tuesday, March 03, 2009 4:23 PM
> To: users@wicket.apache.org
> Subject: Re: Wicket Quickstart Installation Guide for Beginners
>
> i got you most of the way there, you just need to upload images and
> put them in the right place
>
> when you hit edit page, switch to the first tab which says "rich
> format" that should give you a nice wysiwig editor to work with.
>
> -igor
>
> On Tue, Mar 3, 2009 at 4:08 PM, Dane Laverty 
> wrote:
>> I attempted to do that, but without any luck. I'm not at all familiar
>> with wikis, but I'd be happy to do it if someone will point me in the
>> right direction.
>>
>> -Original Message-
>> From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com]
>> Sent: Tuesday, March 03, 2009 3:44 PM
>> To: users@wicket.apache.org
>> Subject: Re: Wicket Quickstart Installation Guide for Beginners
>>
>> you can add a link to it off our wiki. or possibly upload it to the
>> wiki, not sure how attachments there work.
>>
>> -igor
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>



-- 
Become a Wicket expert, learn from the best: http://wicketinaction.com
Apache Wicket 1.3.5 is released
Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Quickstart Installation Guide for Beginners

2009-03-03 Thread Nano Surbakti
Hi Dane,

Thanks for the tutorial. Very clear and straightforward. :)

--
Nano Surbakti

On Wed, Mar 4, 2009 at 6:36 AM, Dane Laverty  wrote:
> I tried attaching it, but I guess that doesn't work. You can check it
> out here:
>
> https://www.foodhandler.org/wicketGuide/WicketQuickstartGuide.pdf
>
> or here
>
> https://www.foodhandler.org/wicketGuide/WicketQuickstartGuide.doc
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Quickstart Installation Guide for Beginners

2009-03-03 Thread Martijn Dashorst
I think the admins disabled attachments for non-committers. Can you
attach them through a JIRA issue? then someone with the correct
permissions can upload them. Just make sure to give them identifiable
names, and don't forget to check the "Intended for inclusion in Apache
products" check box :)

Martijn

On Wed, Mar 4, 2009 at 1:45 AM, Dane Laverty  wrote:
> Thanks, it looks good. I checked the Confluence website about adding
> images to a page and it says:
>
>> To attach a file to a page,
>>
>>   1. Go to the page and click on the 'Attachments' tab.
>>
>>   2. Browse through your files and select the file you'd like to
> attach.
>>
>>   3. Enter a description for the attachment in the 'Comment' text
> field (optional).
>>
>>   4. Click 'Attach more files' if required.
>>
>>   5. Click 'Attach File'.
>
> I'm not seeing any 'Attachments' tab. Do I need different permissions?
> Or do I have to link to an image hosted elsewhere?
>
>
> -Original Message-
> From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com]
> Sent: Tuesday, March 03, 2009 4:23 PM
> To: users@wicket.apache.org
> Subject: Re: Wicket Quickstart Installation Guide for Beginners
>
> i got you most of the way there, you just need to upload images and
> put them in the right place
>
> when you hit edit page, switch to the first tab which says "rich
> format" that should give you a nice wysiwig editor to work with.
>
> -igor
>
> On Tue, Mar 3, 2009 at 4:08 PM, Dane Laverty 
> wrote:
>> I attempted to do that, but without any luck. I'm not at all familiar
>> with wikis, but I'd be happy to do it if someone will point me in the
>> right direction.
>>
>> -Original Message-
>> From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com]
>> Sent: Tuesday, March 03, 2009 3:44 PM
>> To: users@wicket.apache.org
>> Subject: Re: Wicket Quickstart Installation Guide for Beginners
>>
>> you can add a link to it off our wiki. or possibly upload it to the
>> wiki, not sure how attachments there work.
>>
>> -igor
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>



-- 
Become a Wicket expert, learn from the best: http://wicketinaction.com
Apache Wicket 1.3.5 is released
Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



RE: Wicket Quickstart Installation Guide for Beginners

2009-03-03 Thread Dane Laverty
Thanks, it looks good. I checked the Confluence website about adding
images to a page and it says:

> To attach a file to a page,
>
>   1. Go to the page and click on the 'Attachments' tab.
>
>   2. Browse through your files and select the file you'd like to
attach.
>
>   3. Enter a description for the attachment in the 'Comment' text
field (optional).
>
>   4. Click 'Attach more files' if required.
>
>   5. Click 'Attach File'.

I'm not seeing any 'Attachments' tab. Do I need different permissions?
Or do I have to link to an image hosted elsewhere?


-Original Message-
From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] 
Sent: Tuesday, March 03, 2009 4:23 PM
To: users@wicket.apache.org
Subject: Re: Wicket Quickstart Installation Guide for Beginners

i got you most of the way there, you just need to upload images and
put them in the right place

when you hit edit page, switch to the first tab which says "rich
format" that should give you a nice wysiwig editor to work with.

-igor

On Tue, Mar 3, 2009 at 4:08 PM, Dane Laverty 
wrote:
> I attempted to do that, but without any luck. I'm not at all familiar
> with wikis, but I'd be happy to do it if someone will point me in the
> right direction.
>
> -Original Message-
> From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com]
> Sent: Tuesday, March 03, 2009 3:44 PM
> To: users@wicket.apache.org
> Subject: Re: Wicket Quickstart Installation Guide for Beginners
>
> you can add a link to it off our wiki. or possibly upload it to the
> wiki, not sure how attachments there work.
>
> -igor
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Quickstart Installation Guide for Beginners

2009-03-03 Thread Igor Vaynberg
i got you most of the way there, you just need to upload images and
put them in the right place

when you hit edit page, switch to the first tab which says "rich
format" that should give you a nice wysiwig editor to work with.

-igor

On Tue, Mar 3, 2009 at 4:08 PM, Dane Laverty  wrote:
> I attempted to do that, but without any luck. I'm not at all familiar
> with wikis, but I'd be happy to do it if someone will point me in the
> right direction.
>
> -Original Message-
> From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com]
> Sent: Tuesday, March 03, 2009 3:44 PM
> To: users@wicket.apache.org
> Subject: Re: Wicket Quickstart Installation Guide for Beginners
>
> you can add a link to it off our wiki. or possibly upload it to the
> wiki, not sure how attachments there work.
>
> -igor
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



RE: Wicket Quickstart Installation Guide for Beginners

2009-03-03 Thread Dane Laverty
I attempted to do that, but without any luck. I'm not at all familiar
with wikis, but I'd be happy to do it if someone will point me in the
right direction.

-Original Message-
From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] 
Sent: Tuesday, March 03, 2009 3:44 PM
To: users@wicket.apache.org
Subject: Re: Wicket Quickstart Installation Guide for Beginners

you can add a link to it off our wiki. or possibly upload it to the
wiki, not sure how attachments there work.

-igor

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Quickstart Installation Guide for Beginners

2009-03-03 Thread Igor Vaynberg
you can add a link to it off our wiki. or possibly upload it to the
wiki, not sure how attachments there work.

-igor

On Tue, Mar 3, 2009 at 3:36 PM, Dane Laverty  wrote:
> I tried attaching it, but I guess that doesn't work. You can check it
> out here:
>
> https://www.foodhandler.org/wicketGuide/WicketQuickstartGuide.pdf
>
> or here
>
> https://www.foodhandler.org/wicketGuide/WicketQuickstartGuide.doc
>
> -Original Message-
> From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com]
> Sent: Tuesday, March 03, 2009 3:27 PM
> To: users@wicket.apache.org
> Subject: Re: Wicket Quickstart Installation Guide for Beginners
>
> you forgot the link :)
>
> -igor
>
> On Tue, Mar 3, 2009 at 3:21 PM, Dane Laverty 
> wrote:
>> I've just finished a Wicket Quickstart Guide for some of my coworkers
> who
>> are interested in using Wicket. It steps through installation of
> Maven,
>> Eclipse, M2Eclipse, WTP, and a Quickstart. I thought I'd pass it along
> here
>> in case it's of value to anyone else.
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



RE: Wicket Quickstart Installation Guide for Beginners

2009-03-03 Thread Dane Laverty
I tried attaching it, but I guess that doesn't work. You can check it
out here:

https://www.foodhandler.org/wicketGuide/WicketQuickstartGuide.pdf

or here

https://www.foodhandler.org/wicketGuide/WicketQuickstartGuide.doc 

-Original Message-
From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] 
Sent: Tuesday, March 03, 2009 3:27 PM
To: users@wicket.apache.org
Subject: Re: Wicket Quickstart Installation Guide for Beginners

you forgot the link :)

-igor

On Tue, Mar 3, 2009 at 3:21 PM, Dane Laverty 
wrote:
> I've just finished a Wicket Quickstart Guide for some of my coworkers
who
> are interested in using Wicket. It steps through installation of
Maven,
> Eclipse, M2Eclipse, WTP, and a Quickstart. I thought I'd pass it along
here
> in case it's of value to anyone else.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket Quickstart Installation Guide for Beginners

2009-03-03 Thread Igor Vaynberg
you forgot the link :)

-igor

On Tue, Mar 3, 2009 at 3:21 PM, Dane Laverty  wrote:
> I’ve just finished a Wicket Quickstart Guide for some of my coworkers who
> are interested in using Wicket. It steps through installation of Maven,
> Eclipse, M2Eclipse, WTP, and a Quickstart. I thought I’d pass it along here
> in case it’s of value to anyone else.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Wicket Quickstart Installation Guide for Beginners

2009-03-03 Thread Dane Laverty
I've just finished a Wicket Quickstart Guide for some of my coworkers
who are interested in using Wicket. It steps through installation of
Maven, Eclipse, M2Eclipse, WTP, and a Quickstart. I thought I'd pass it
along here in case it's of value to anyone else. 

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Re: Beginners questions: How integrate Spring+Wicket? Quickstart? Why is that directory hierarchy recommended?

2008-12-17 Thread jWeekend

Kent,

1 - In my opinion, by far the best way to get started (as you intend to go
on) is described  http://wicket.apache.org/quickstart.html here . Once you
have spent 37 seconds (roughly) mastering as much Maven as you'll need for
this purpose, this technique will see you good through most of your upcoming
Wicket projects and help you communicate/exchange stuff more easily with a
lot of other, very helpful Wicket developers. 

2 - Do you feel the structure you suggest is an improvement? Where will you
put test resources?

3 - There are several ways to do this - depends on the architecture you
decide on. You can get some ideas 
http://cwiki.apache.org/WICKET/wicket-phonebook.html here . 
You could inject your DAO instances into the service layer using raw Spring
IoC and inject service objects into your pages (or other Components) using
Wicket's @SpringBean. See the 3 tier service architecture described in your
copy of WiA. You can also read more 
http://cwiki.apache.org/WICKET/spring.html here .

If you have more specific questions (eg on how to use @SpringBean with non
Wicket-Components ...  etc), it's all quite easy once you know how as the
core developers have made a good job of this - you'll get used to that
feeling with Wicket - you'll get a lot of good help here as many people use
Wicket with Spring and ORM (JPA and/or Hibernate ...).

Regards - Cemal
http://www.jweekend.co.uk jWeekend 




Kent Larsson-3 wrote:
> 
> I've bought and read most of Wicket in Action (WIA), great book! I'm
> exited
> to use Wicket but I have some start up questions I feel I need to ask
> someone more experienced about.
> 
> The project will use Wicket + Spring + Hibernate which I suspect is a
> fairly
> common combination.
> 
> In the bonus chapter on how to setup an environment in WIA it mentions
> three
> ways to get a quick start:  Wicket's quick-start project generator (Wicket
> only), QWicket (sets up Wicket + Spring) and AppFuse Light (sets up Wicket
> +
> Spring + "a number of" ORM frameworks. Or alternativly I could set it up
> myself by hand. I don't want to use Maven 2 as I feel that I have reach my
> limit on new technologies for one project (I'm previously familiar with
> EJB
> 3.0, JPA, Servlet + JSP and Ant) and it seems like it requires some time
> to
> get used to.
> 
> http://wicket.apache.org/quickstart.html suggests this project structure:
> 
> .\myproject
>|   pom.xml
>|
>\---src
> 
>+---main
>|   +---java
>|   |   \---com
>|   |   \---mycompany
>|   |   HomePage.html
>|   |   HomePage.java
>|   |   WicketApplication.java
> 
>|   |
>|   +---resources
>|   |   log4j.properties
>|   |
>|   \---webapp
>|   \---WEB-INF
>|   web.xml
>|
>\---test
> 
>\---java
>\---com
>\---mycompany
>Start.java
> 
> I understand that parallell "normal source" and "test source" directory
> structures is a good thing. However, do you see an advantage in having
> /src/main/(java|resources|webapp)/* and /src/test/* ? Why not just have
> /src/* , /resources/* , /webapp/* and /test/* and flatten the hierarchy a
> bit? What do you use that indirection for?
> 
> My last question is how do you integration Spring and Wicket? As there are
> several ways I'm in search of some previous experience from people who
> have
> used these two frameworks together.
> 
> To sum up my mail in three questions:
> 
> 1. Do you recommend that I use some kind of quick start method? And if so,
> which one?
> 2. Why have main and test under the project root, and not src (alias main)
> ,
> resources, webapp and test? (It's only four directories.)
> 3. How do you recommend that I integrate Spring and Wicket?
> 
> MANY thanks for reading!
> 
> Best regards,
> Kent Larsson
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Beginners-questions%3A-How-integrate-Spring%2BWicket--Quickstart--Why-is-that-directory-hierarchy-recommended--tp21058097p21059761.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Beginners questions: How integrate Spring+Wicket? Quickstart? Why is that directory hierarchy recommended?

2008-12-17 Thread Kent Larsson
I've bought and read most of Wicket in Action (WIA), great book! I'm exited
to use Wicket but I have some start up questions I feel I need to ask
someone more experienced about.

The project will use Wicket + Spring + Hibernate which I suspect is a fairly
common combination.

In the bonus chapter on how to setup an environment in WIA it mentions three
ways to get a quick start:  Wicket's quick-start project generator (Wicket
only), QWicket (sets up Wicket + Spring) and AppFuse Light (sets up Wicket +
Spring + "a number of" ORM frameworks. Or alternativly I could set it up
myself by hand. I don't want to use Maven 2 as I feel that I have reach my
limit on new technologies for one project (I'm previously familiar with EJB
3.0, JPA, Servlet + JSP and Ant) and it seems like it requires some time to
get used to.

http://wicket.apache.org/quickstart.html suggests this project structure:

.\myproject
   |   pom.xml
   |
   \---src

   +---main
   |   +---java
   |   |   \---com
   |   |   \---mycompany
   |   |   HomePage.html
   |   |   HomePage.java
   |   |   WicketApplication.java

   |   |
   |   +---resources
   |   |   log4j.properties
   |   |
   |   \---webapp
   |   \---WEB-INF
   |   web.xml
   |
   \---test

   \---java
   \---com
   \---mycompany
   Start.java

I understand that parallell "normal source" and "test source" directory
structures is a good thing. However, do you see an advantage in having
/src/main/(java|resources|webapp)/* and /src/test/* ? Why not just have
/src/* , /resources/* , /webapp/* and /test/* and flatten the hierarchy a
bit? What do you use that indirection for?

My last question is how do you integration Spring and Wicket? As there are
several ways I'm in search of some previous experience from people who have
used these two frameworks together.

To sum up my mail in three questions:

1. Do you recommend that I use some kind of quick start method? And if so,
which one?
2. Why have main and test under the project root, and not src (alias main) ,
resources, webapp and test? (It's only four directories.)
3. How do you recommend that I integrate Spring and Wicket?

MANY thanks for reading!

Best regards,
Kent Larsson


Re: Wicket Quickstart maven archetype - "Archetype repository missing"

2008-02-14 Thread Nino Saturnino Martinez Vazquez Wael
Thanks. Had a million problems yesterday, thought it was because I ran 
on a windoze box.


Raphaël Piéroni wrote:

This is because of the recent release of maven archetype 2.0-alpha-1 release.

Please consider calling the old plugin version the time for the maven
team to fix the problem.

mvn org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7:create ...


Cheers.

Raphaël

2008/2/14, OliZilla <[EMAIL PROTECTED]>:
  

 Currently when I run the mvn quickstart command provided by the quickstart
 web page, maven complains:


 ...
 [INFO] [archetype:create]
 [INFO] Archetype repository missing. Using the one from
 [org.apache.wicket:wicket-archetype-quickstart:1.3.0-beta3 ->
 http://repo1.maven.org/maven2] found in catalog internal
 Define value for version: :


 Where it then waits for user input.
 I wasn't sure what was going on, as this had never happened before, so i
 just blindly hit return a couple of times. Of course the build then failed
 with the following message:


 [ERROR] BUILD ERROR
 [INFO]
 
 [INFO] The archetype generation must be configured here


 I found that if i entered "1.3.1" where it asked for a "value of version:"
 and then "com.yournamehere" where it asks for "value for package:" then my
 quickstart project was created successfully with the following log:


 Define value for version: : 1.3.1
 Define value for package: : com.myfrikinpackage
 Confirm properties configuration:
 groupId: com.mycompany
 artifactId: myproject3
 version: 1.3.1
 package: com.myfrikinpackage
  Y: : y
 [INFO]
 
 [INFO] Using following parameters for creating OldArchetype:
 wicket-archetype-quickstart:1.3.1
 [INFO]
 
 [INFO] Parameter: groupId, Value: com.mycompany
 [INFO] Parameter: packageName, Value: com.myfrikinpackage
 [INFO] Parameter: basedir, Value: /Users/oli/temp
 [INFO] Parameter: package, Value: com.myfrikinpackage
 [INFO] Parameter: version, Value: 1.3.1
 [INFO] Parameter: artifactId, Value: myproject3
 [INFO] * End of debug info from resources from generated
 POM ***
 [INFO] OldArchetype created in dir: /Users/oli/temp/myproject3
 [INFO]
 
 [INFO] BUILD SUCCESSFUL
 [INFO]
 


 A bit of googling would suggest this is a maven issue, see:
 
http://www.nabble.com/Archetype-repository-missing-and-asking-for-a-version-and-package-td15446552s2369.html
 
http://www.nabble.com/Archetype-repository-missing-and-asking-for-a-version-and-package-td15446552s2369.html


 on the appfuse mailing list, someone is having the same problem. I have
 tried clearing the offending part of my local repos, but I still can't run
 the command without some user input.


 The solution is very simple, but its not immediately obvious, so may put off
 new users (I discovered it trying to convince a collegue how easy it was to
 get up and running on Wicket, which was slightly embarrassing). Is any one
 else experiencing this, or know what is going on?


 Oli

--
 View this message in context: 
http://www.nabble.com/Wicket-Quickstart-maven-archetype---%22Archetype-repository-missing%22-tp15481228p15481228.html
 Sent from the Wicket - User mailing list archive at Nabble.com.




--
Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket Quickstart maven archetype - "Archetype repository missing"

2008-02-14 Thread Raphaël Piéroni
This is because of the recent release of maven archetype 2.0-alpha-1 release.

Please consider calling the old plugin version the time for the maven
team to fix the problem.

mvn org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7:create ...


Cheers.

Raphaël

2008/2/14, OliZilla <[EMAIL PROTECTED]>:
>
>  Currently when I run the mvn quickstart command provided by the quickstart
>  web page, maven complains:
>
>
>  ...
>  [INFO] [archetype:create]
>  [INFO] Archetype repository missing. Using the one from
>  [org.apache.wicket:wicket-archetype-quickstart:1.3.0-beta3 ->
>  http://repo1.maven.org/maven2] found in catalog internal
>  Define value for version: :
>
>
>  Where it then waits for user input.
>  I wasn't sure what was going on, as this had never happened before, so i
>  just blindly hit return a couple of times. Of course the build then failed
>  with the following message:
>
>
>  [ERROR] BUILD ERROR
>  [INFO]
>  
>  [INFO] The archetype generation must be configured here
>
>
>  I found that if i entered "1.3.1" where it asked for a "value of version:"
>  and then "com.yournamehere" where it asks for "value for package:" then my
>  quickstart project was created successfully with the following log:
>
>
>  Define value for version: : 1.3.1
>  Define value for package: : com.myfrikinpackage
>  Confirm properties configuration:
>  groupId: com.mycompany
>  artifactId: myproject3
>  version: 1.3.1
>  package: com.myfrikinpackage
>   Y: : y
>  [INFO]
>  
>  [INFO] Using following parameters for creating OldArchetype:
>  wicket-archetype-quickstart:1.3.1
>  [INFO]
>  
>  [INFO] Parameter: groupId, Value: com.mycompany
>  [INFO] Parameter: packageName, Value: com.myfrikinpackage
>  [INFO] Parameter: basedir, Value: /Users/oli/temp
>  [INFO] Parameter: package, Value: com.myfrikinpackage
>  [INFO] Parameter: version, Value: 1.3.1
>  [INFO] Parameter: artifactId, Value: myproject3
>  [INFO] * End of debug info from resources from generated
>  POM ***
>  [INFO] OldArchetype created in dir: /Users/oli/temp/myproject3
>  [INFO]
>  
>  [INFO] BUILD SUCCESSFUL
>  [INFO]
>  
>
>
>  A bit of googling would suggest this is a maven issue, see:
>  
> http://www.nabble.com/Archetype-repository-missing-and-asking-for-a-version-and-package-td15446552s2369.html
>  
> http://www.nabble.com/Archetype-repository-missing-and-asking-for-a-version-and-package-td15446552s2369.html
>
>
>  on the appfuse mailing list, someone is having the same problem. I have
>  tried clearing the offending part of my local repos, but I still can't run
>  the command without some user input.
>
>
>  The solution is very simple, but its not immediately obvious, so may put off
>  new users (I discovered it trying to convince a collegue how easy it was to
>  get up and running on Wicket, which was slightly embarrassing). Is any one
>  else experiencing this, or know what is going on?
>
>
>  Oli
>
> --
>  View this message in context: 
> http://www.nabble.com/Wicket-Quickstart-maven-archetype---%22Archetype-repository-missing%22-tp15481228p15481228.html
>  Sent from the Wicket - User mailing list archive at Nabble.com.
>


Wicket Quickstart maven archetype - "Archetype repository missing"

2008-02-14 Thread OliZilla

Currently when I run the mvn quickstart command provided by the quickstart
web page, maven complains:


...
[INFO] [archetype:create]
[INFO] Archetype repository missing. Using the one from
[org.apache.wicket:wicket-archetype-quickstart:1.3.0-beta3 ->
http://repo1.maven.org/maven2] found in catalog internal
Define value for version: :


Where it then waits for user input. 
I wasn't sure what was going on, as this had never happened before, so i
just blindly hit return a couple of times. Of course the build then failed
with the following message:


[ERROR] BUILD ERROR
[INFO]

[INFO] The archetype generation must be configured here


I found that if i entered "1.3.1" where it asked for a "value of version:"
and then "com.yournamehere" where it asks for "value for package:" then my
quickstart project was created successfully with the following log:


Define value for version: : 1.3.1
Define value for package: : com.myfrikinpackage
Confirm properties configuration:
groupId: com.mycompany
artifactId: myproject3
version: 1.3.1
package: com.myfrikinpackage
 Y: : y
[INFO]

[INFO] Using following parameters for creating OldArchetype:
wicket-archetype-quickstart:1.3.1
[INFO]

[INFO] Parameter: groupId, Value: com.mycompany
[INFO] Parameter: packageName, Value: com.myfrikinpackage
[INFO] Parameter: basedir, Value: /Users/oli/temp
[INFO] Parameter: package, Value: com.myfrikinpackage
[INFO] Parameter: version, Value: 1.3.1
[INFO] Parameter: artifactId, Value: myproject3
[INFO] * End of debug info from resources from generated
POM ***
[INFO] OldArchetype created in dir: /Users/oli/temp/myproject3
[INFO]

[INFO] BUILD SUCCESSFUL
[INFO]



A bit of googling would suggest this is a maven issue, see: 
http://www.nabble.com/Archetype-repository-missing-and-asking-for-a-version-and-package-td15446552s2369.html
http://www.nabble.com/Archetype-repository-missing-and-asking-for-a-version-and-package-td15446552s2369.html
 


on the appfuse mailing list, someone is having the same problem. I have
tried clearing the offending part of my local repos, but I still can't run
the command without some user input.


The solution is very simple, but its not immediately obvious, so may put off
new users (I discovered it trying to convince a collegue how easy it was to
get up and running on Wicket, which was slightly embarrassing). Is any one
else experiencing this, or know what is going on?


Oli 
-- 
View this message in context: 
http://www.nabble.com/Wicket-Quickstart-maven-archetype---%22Archetype-repository-missing%22-tp15481228p15481228.html
Sent from the Wicket - User mailing list archive at Nabble.com.


Re: Old Wicket QuickStart

2008-01-07 Thread Nino Saturnino Martinez Vazquez Wael

there you are:

http://cwiki.apache.org/confluence/display/WICKET/Blog+Tutorial

Nino Saturnino Martinez Vazquez Wael wrote:

i'll create a page for it on the wiki... and post the link here...

Kjetil Paulsen wrote:

Where can I find this blog? :)

On Jan 3, 2008 11:17 AM, Nino Saturnino Martinez Vazquez Wael
<[EMAIL PROTECTED]> wrote:
 

Yes I think so, dates anyone? Currently im free, although in the start
of next week our car has to go to the mechanic..

And what about topics? Should we have one about testing with wicket, 
and

while some where exploring testing with wicket others could fix bugs
with the wicket tester?

brtw:I have a nice blog tutorial for wicket, using JPA-SPRING and
hibernate for new comers...

regards Nino


Flemming Boller wrote:
   

dammit :-)

Cheers

/FLemming

ps:  Should we arrange on a wicket meeting in copenhagen, now that 
1.3.0 is

released  -> Nino, Frank ?

On Jan 2, 2008 10:11 PM, Flemming Boller 
<[EMAIL PROTECTED]> wrote:



 

Hi

First of all, congrats with the new release, great work!

I am behind a corporate firewall that "infect" downloading of 
jarfiles, so

I like the "old" wicket quickstart  :-)

I have updated the old "Wicket QuickStart" zip file for use with 
1.3.0.


I have only set it up with Eclipse and with JDK 1.4, so the jar 
file for

jmx is
excluded in the classpath together with wicke-velocity.

You can download it from my homepage, if you need it

http://boller.dk/wicket-quickstart-1.3.0.zip

Cheers and









  

--
Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]







  




--
Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Old Wicket QuickStart

2008-01-07 Thread Nino Saturnino Martinez Vazquez Wael

i'll create a page for it on the wiki... and post the link here...

Kjetil Paulsen wrote:

Where can I find this blog? :)

On Jan 3, 2008 11:17 AM, Nino Saturnino Martinez Vazquez Wael
<[EMAIL PROTECTED]> wrote:
  

Yes I think so, dates anyone? Currently im free, although in the start
of next week our car has to go to the mechanic..

And what about topics? Should we have one about testing with wicket, and
while some where exploring testing with wicket others could fix bugs
with the wicket tester?

brtw:I have a nice blog tutorial for wicket, using JPA-SPRING and
hibernate for new comers...

regards Nino


Flemming Boller wrote:


dammit :-)

Cheers

/FLemming

ps:  Should we arrange on a wicket meeting in copenhagen, now that 1.3.0 is
released  -> Nino, Frank ?

On Jan 2, 2008 10:11 PM, Flemming Boller <[EMAIL PROTECTED]> wrote:


  

Hi

First of all, congrats with the new release, great work!

I am behind a corporate firewall that "infect" downloading of jarfiles, so
I like the "old" wicket quickstart  :-)

I have updated the old "Wicket QuickStart" zip file for use with 1.3.0.

I have only set it up with Eclipse and with JDK 1.4, so the jar file for
jmx is
excluded in the classpath together with wicke-velocity.

You can download it from my homepage, if you need it

http://boller.dk/wicket-quickstart-1.3.0.zip

Cheers and









  

--
Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]







  


--
Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Old Wicket QuickStart

2008-01-07 Thread Kjetil Paulsen
Where can I find this blog? :)

On Jan 3, 2008 11:17 AM, Nino Saturnino Martinez Vazquez Wael
<[EMAIL PROTECTED]> wrote:
> Yes I think so, dates anyone? Currently im free, although in the start
> of next week our car has to go to the mechanic..
>
> And what about topics? Should we have one about testing with wicket, and
> while some where exploring testing with wicket others could fix bugs
> with the wicket tester?
>
> brtw:I have a nice blog tutorial for wicket, using JPA-SPRING and
> hibernate for new comers...
>
> regards Nino
>
>
> Flemming Boller wrote:
> > dammit :-)
> >
> > Cheers
> >
> > /FLemming
> >
> > ps:  Should we arrange on a wicket meeting in copenhagen, now that 1.3.0 is
> > released  -> Nino, Frank ?
> >
> > On Jan 2, 2008 10:11 PM, Flemming Boller <[EMAIL PROTECTED]> wrote:
> >
> >
> >> Hi
> >>
> >> First of all, congrats with the new release, great work!
> >>
> >> I am behind a corporate firewall that "infect" downloading of jarfiles, so
> >> I like the "old" wicket quickstart  :-)
> >>
> >> I have updated the old "Wicket QuickStart" zip file for use with 1.3.0.
> >>
> >> I have only set it up with Eclipse and with JDK 1.4, so the jar file for
> >> jmx is
> >> excluded in the classpath together with wicke-velocity.
> >>
> >> You can download it from my homepage, if you need it
> >>
> >> http://boller.dk/wicket-quickstart-1.3.0.zip
> >>
> >> Cheers and
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >
> >
>
> --
> Nino Martinez Wael
> Java Specialist @ Jayway DK
> http://www.jayway.dk
> +45 2936 7684
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-- 
/**
 kjetil
 */
-
Kjetil H.Paulsen
[EMAIL PROTECTED]
[EMAIL PROTECTED] | http://gofaster.no
-
-Many secrets of art and nature
   are thought by the unlearned to be magical-

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Old Wicket QuickStart

2008-01-03 Thread Nino Saturnino Martinez Vazquez Wael
Yes I think so, dates anyone? Currently im free, although in the start 
of next week our car has to go to the mechanic..


And what about topics? Should we have one about testing with wicket, and 
while some where exploring testing with wicket others could fix bugs 
with the wicket tester?


brtw:I have a nice blog tutorial for wicket, using JPA-SPRING and 
hibernate for new comers...


regards Nino

Flemming Boller wrote:

dammit :-)

Cheers

/FLemming

ps:  Should we arrange on a wicket meeting in copenhagen, now that 1.3.0 is
released  -> Nino, Frank ?

On Jan 2, 2008 10:11 PM, Flemming Boller <[EMAIL PROTECTED]> wrote:

  

Hi

First of all, congrats with the new release, great work!

I am behind a corporate firewall that "infect" downloading of jarfiles, so
I like the "old" wicket quickstart  :-)

I have updated the old "Wicket QuickStart" zip file for use with 1.3.0.

I have only set it up with Eclipse and with JDK 1.4, so the jar file for
jmx is
excluded in the classpath together with wicke-velocity.

You can download it from my homepage, if you need it

http://boller.dk/wicket-quickstart-1.3.0.zip

Cheers and










  


--
Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Old Wicket QuickStart

2008-01-02 Thread Flemming Boller
dammit :-)

Cheers

/FLemming

ps:  Should we arrange on a wicket meeting in copenhagen, now that 1.3.0 is
released  -> Nino, Frank ?

On Jan 2, 2008 10:11 PM, Flemming Boller <[EMAIL PROTECTED]> wrote:

> Hi
>
> First of all, congrats with the new release, great work!
>
> I am behind a corporate firewall that "infect" downloading of jarfiles, so
> I like the "old" wicket quickstart  :-)
>
> I have updated the old "Wicket QuickStart" zip file for use with 1.3.0.
>
> I have only set it up with Eclipse and with JDK 1.4, so the jar file for
> jmx is
> excluded in the classpath together with wicke-velocity.
>
> You can download it from my homepage, if you need it
>
> http://boller.dk/wicket-quickstart-1.3.0.zip
>
> Cheers and
>
>
>
>
>
>
>


Old Wicket QuickStart

2008-01-02 Thread Flemming Boller
Hi

First of all, congrats with the new release, great work!

I am behind a corporate firewall that "infect" downloading of jarfiles, so I
like the "old" wicket quickstart  :-)

I have updated the old "Wicket QuickStart" zip file for use with 1.3.0.

I have only set it up with Eclipse and with JDK 1.4, so the jar file for jmx
is
excluded in the classpath together with wicke-velocity.

You can download it from my homepage, if you need it

http://boller.dk/wicket-quickstart-1.3.0.zip

Cheers and