From a grateful newbie

2010-05-31 Thread Ioannis Mavroukakis
...a word of thanks to the wealth of info that is 
http://wicketstuff.org/wicket14/ . As I'm stumbling through building a site 
with Wicket, I've consistently referred to this site
for the bulk of my queries. So thank you to the maintainers, and all the people 
on this list patiently answering questions.

Yiannis.

Re: Loading and/or accessing file resources trouble

2010-05-24 Thread Ioannis Mavroukakis
Well the advice to use PackageResource for example

http://apache-wicket.1842946.n4.nabble.com/How-to-read-the-properties-file-in-wicket-td1855403.html

I was expecting some nice clean way in wicket to provide access to a file 
deployed alongside the rest of the classes, my bad.

Y.

On 23 May 2010, at 20:50, Igor Vaynberg wrote:

> what is that have to do with wicket?
> 
> -igor
> 
> On Sun, May 23, 2010 at 11:05 AM, Ioannis Mavroukakis
>  wrote:
>> Hello fellow Wicketers.
>> 
>> Apologies if this question has been answered  before, but taking a stroll 
>> through the list archives didn't dispel my confusion. I am using db4o for a 
>> trivial
>> site I am building, and I am trying to figure out what is the canonical 
>> Wicket way to obtain a File reference to the DB file, the location of which 
>> will have to be
>> outside the war deployment path.
>> 
>> Thanks in advance,
>> 
>> Yiannis
>> -
>> 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
> 
> 
> __
> This email has been scanned by the MessageLabs Email Security System.
> For more information please visit http://www.messagelabs.com/email 
> __



Re: Loading and/or accessing file resources trouble

2010-05-23 Thread Ioannis Mavroukakis
Well the advice to use PackageResource for example

http://apache-wicket.1842946.n4.nabble.com/How-to-read-the-properties-file-in-wicket-td1855403.html

I was expecting some nice clean way in wicket to provide access to a file 
deployed alongside the rest of the classes, my bad.

Y.

On 23 May 2010, at 20:50, Igor Vaynberg wrote:

> what is that have to do with wicket?
> 
> -igor
> 
> On Sun, May 23, 2010 at 11:05 AM, Ioannis Mavroukakis
>  wrote:
>> Hello fellow Wicketers.
>> 
>> Apologies if this question has been answered  before, but taking a stroll 
>> through the list archives didn't dispel my confusion. I am using db4o for a 
>> trivial
>> site I am building, and I am trying to figure out what is the canonical 
>> Wicket way to obtain a File reference to the DB file, the location of which 
>> will have to be
>> outside the war deployment path.
>> 
>> Thanks in advance,
>> 
>> Yiannis
>> -
>> 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
> 
> 
> __
> This email has been scanned by the MessageLabs Email Security System.
> For more information please visit http://www.messagelabs.com/email 
> __



Loading and/or accessing file resources trouble

2010-05-23 Thread Ioannis Mavroukakis
Hello fellow Wicketers.

Apologies if this question has been answered  before, but taking a stroll 
through the list archives didn't dispel my confusion. I am using db4o for a 
trivial
site I am building, and I am trying to figure out what is the canonical Wicket 
way to obtain a File reference to the DB file, the location of which will have 
to be
outside the war deployment path.

Thanks in advance,

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



Re: Changing css class based on page

2010-05-19 Thread Ioannis Mavroukakis
Thanks Jeremy I appreciate the pointer :-)

Y.
On 18 May 2010, at 14:26, Jeremy Thomerson wrote:

> I'd suggest modifying the class rather than the ID in case you end up doing 
> something with ajax later.
> 
> Jeremy Thomerson
> http://www.wickettraining.com
> -- sent from a wireless device
> 
> 
> -----Original Message-
> From: Ioannis Mavroukakis 
> Sent: Tuesday, May 18, 2010 4:07 AM
> To: users@wicket.apache.org
> Subject: Re: Changing css class based on page
> 
> In fact it was a lot simpler than I thought, this works like a charm.
> 
>   private Link pageLink(final String id, final Class clazz) {
>   final BookmarkablePageLink link = new BookmarkablePageLink(id, 
> clazz);
>   link.add(new AttributeModifier("id", true, new 
> AbstractReadOnlyModel() {
>   @Override
>   public String getObject() {
>   return 
> AbstractBasePage.this.getClass().equals(clazz) ? "current" : "";
>       }
>   }));
>   return link;
>   }
> 
> 
> On 17 May 2010, at 22:40, Ioannis Mavroukakis wrote:
> 
>> Thanks Jeremy that's great help as that's the route I considered initially 
>> going down, trying to make it reusable is the next step..
>> 
>> Y.
>> On 17 May 2010, at 22:28, Jeremy Thomerson wrote:
>> 
>>> link1.add(new AttributeModifier("class", true, new
>>> AbstractReadOnlyModel() {
>>> public String getObject() {
>>> return AbstractBasePage.this.getClass().equals(LinkOnePageClass.class) ?
>>> "selectedPage" : "notSelectedPage";
>>> }
>>> });
>>> 
>>> There's probably a way to make that more reusable - but that should get you
>>> started.
>>> 
>>> --
>>> Jeremy Thomerson
>>> http://www.wickettraining.com
>>> 
>>> 
>>> 
>>> On Mon, May 17, 2010 at 4:24 PM, Ioannis Mavroukakis <
>>> imavrouka...@gameaccount.com> wrote:
>>> 
>>>> Hey guys got a newbish question I cannot get my head around, and I would
>>>> appreciate any help.
>>>> 
>>>> I've got an AbstractBasePage template using markup inheritance. It very
>>>> simply has some BookmarkablePageLink's which are common
>>>> across all pages. What I want to do, is have a different css class for the
>>>> active link (i.e. the one whose page you are on) and another for the
>>>> inactive ones
>>>> and I cannot for the life of me figure out what's the best way to do it
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 
> 
> __
> This email has been scanned by the MessageLabs Email Security System.
> For more information please visit http://www.messagelabs.com/email 
> __


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



Re: Changing css class based on page

2010-05-18 Thread Ioannis Mavroukakis
In fact it was a lot simpler than I thought, this works like a charm.

private Link pageLink(final String id, final Class clazz) {
final BookmarkablePageLink link = new BookmarkablePageLink(id, 
clazz);
link.add(new AttributeModifier("id", true, new 
AbstractReadOnlyModel() {
@Override
public String getObject() {
return 
AbstractBasePage.this.getClass().equals(clazz) ? "current" : "";
}
}));
return link;
}


On 17 May 2010, at 22:40, Ioannis Mavroukakis wrote:

> Thanks Jeremy that's great help as that's the route I considered initially 
> going down, trying to make it reusable is the next step..
> 
> Y.
> On 17 May 2010, at 22:28, Jeremy Thomerson wrote:
> 
>> link1.add(new AttributeModifier("class", true, new
>> AbstractReadOnlyModel() {
>> public String getObject() {
>> return AbstractBasePage.this.getClass().equals(LinkOnePageClass.class) ?
>> "selectedPage" : "notSelectedPage";
>> }
>> });
>> 
>> There's probably a way to make that more reusable - but that should get you
>> started.
>> 
>> --
>> Jeremy Thomerson
>> http://www.wickettraining.com
>> 
>> 
>> 
>> On Mon, May 17, 2010 at 4:24 PM, Ioannis Mavroukakis <
>> imavrouka...@gameaccount.com> wrote:
>> 
>>> Hey guys got a newbish question I cannot get my head around, and I would
>>> appreciate any help.
>>> 
>>> I've got an AbstractBasePage template using markup inheritance. It very
>>> simply has some BookmarkablePageLink's which are common
>>> across all pages. What I want to do, is have a different css class for the
>>> active link (i.e. the one whose page you are on) and another for the
>>> inactive ones
>>> and I cannot for the life of me figure out what's the best way to do it.
>>> Is it something I should be doing in code ?
>>> 
>>> TIA!
>>> 
>>> Yiannis.
>> 
>> 
>> __
>> This email has been scanned by the MessageLabs Email Security System.
>> For more information please visit http://www.messagelabs.com/email 
>> __
> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 
> 
> __
> This email has been scanned by the MessageLabs Email Security System.
> For more information please visit http://www.messagelabs.com/email 
> __
> 
> __
> This email has been scanned by the MessageLabs Email Security System.
> For more information please visit http://www.messagelabs.com/email 
> __



Re: Changing css class based on page

2010-05-17 Thread Ioannis Mavroukakis
Thanks Jeremy that's great help as that's the route I considered initially 
going down, trying to make it reusable is the next step..

Y.
On 17 May 2010, at 22:28, Jeremy Thomerson wrote:

> link1.add(new AttributeModifier("class", true, new
> AbstractReadOnlyModel() {
> public String getObject() {
>  return AbstractBasePage.this.getClass().equals(LinkOnePageClass.class) ?
> "selectedPage" : "notSelectedPage";
> }
> });
> 
> There's probably a way to make that more reusable - but that should get you
> started.
> 
> --
> Jeremy Thomerson
> http://www.wickettraining.com
> 
> 
> 
> On Mon, May 17, 2010 at 4:24 PM, Ioannis Mavroukakis <
> imavrouka...@gameaccount.com> wrote:
> 
>> Hey guys got a newbish question I cannot get my head around, and I would
>> appreciate any help.
>> 
>> I've got an AbstractBasePage template using markup inheritance. It very
>> simply has some BookmarkablePageLink's which are common
>> across all pages. What I want to do, is have a different css class for the
>> active link (i.e. the one whose page you are on) and another for the
>> inactive ones
>> and I cannot for the life of me figure out what's the best way to do it.
>> Is it something I should be doing in code ?
>> 
>> TIA!
>> 
>> Yiannis.
> 
> 
> __
> This email has been scanned by the MessageLabs Email Security System.
> For more information please visit http://www.messagelabs.com/email 
> __


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



Changing css class based on page

2010-05-17 Thread Ioannis Mavroukakis
Hey guys got a newbish question I cannot get my head around, and I would 
appreciate any help.

I've got an AbstractBasePage template using markup inheritance. It very simply 
has some BookmarkablePageLink's which are common
across all pages. What I want to do, is have a different css class for the 
active link (i.e. the one whose page you are on) and another for the inactive 
ones
and I cannot for the life of me figure out what's the best way to do it.  Is it 
something I should be doing in code ?

TIA!

Yiannis.

Re: London Wicket Event, Saturday November 21st

2009-10-07 Thread Ioannis Mavroukakis
If my mate can't lend me his handheld, I'll see about perhaps renting  
something for the day...



Y.
On 7 Oct 2009, at 16:15, Igor Vaynberg wrote:


until i see some video proof i will continue to operate under my
assumption - there are no presentations, this is just an excuse to get
out of the house and go to a pub :)

-igor

On Wed, Oct 7, 2009 at 3:42 AM, jWeekend  
 wrote:


Igor,

Are you bringing your video-recorder? We'll get you over here  
sooner or

later, maybe for our 3rd year anniversary event in the Summer!

Several people have tried to help us with this, but so far the  
results have
not been good enough (really!). We've even knocked-up a special app  
to
publish these wonderful presentations we've been lucky enough to  
enjoy so
many of, so I expect we will give it another go for sure this time,  
but no

promises yet.

Regards - Cemal
jWeekend
OO & Java Technologies, Wicket Training and Development


igor.vaynberg wrote:


can we expect video this time? :)

-igor

On Tue, Oct 6, 2009 at 6:10 AM, jWeekend >

wrote:
Our next London Wicket Event will be held on Saturday, November  
21st.

This is going to be quite some event again, with Matej Knopp (SVK),
Jeremy
Thomerson (USA) and Alastair Maw (UK), all core developers,  
amongst our 5

or
6 presenters.
I am still working on securing a suitable location and fine  
tuning the
schedule (probably at least 5 or 6 hours) and the exact format,  
but keep

your diary clear if you'd like to come along and we will set up
registration
at the usual place [1] in the next few days (do not register  
until we've

updated the data for the registration page) once the
location/format/logistics are nailed down.
Watch this space ...

Regards - Cemal
jWeekend
OO & Java Technologies, Wicket Training and Development
http://jWeekend.com

[1] http://jweekend.com/dev/LWUGReg


-
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





--
View this message in context: 
http://www.nabble.com/London-Wicket-Event%2C-Saturday-November-21st-tp25768507p25783880.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




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


__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__



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



Re: London Wicket Event, Saturday November 21st

2009-10-07 Thread Ioannis Mavroukakis
I've got a handheld video recorder I might be able to borrow off of a  
friend..don't know if it will last for 6 hours though!!


On 7 Oct 2009, at 11:42, jWeekend wrote:



Igor,

Are you bringing your video-recorder? We'll get you over here sooner  
or

later, maybe for our 3rd year anniversary event in the Summer!

Several people have tried to help us with this, but so far the  
results have

not been good enough (really!). We've even knocked-up a special app to
publish these wonderful presentations we've been lucky enough to  
enjoy so
many of, so I expect we will give it another go for sure this time,  
but no

promises yet.

Regards - Cemal
jWeekend
OO & Java Technologies, Wicket Training and Development


igor.vaynberg wrote:


can we expect video this time? :)

-igor

On Tue, Oct 6, 2009 at 6:10 AM, jWeekend  


wrote:
Our next London Wicket Event will be held on Saturday, November  
21st.

This is going to be quite some event again, with Matej Knopp (SVK),
Jeremy
Thomerson (USA) and Alastair Maw (UK), all core developers,  
amongst our 5

or
6 presenters.
I am still working on securing a suitable location and fine tuning  
the
schedule (probably at least 5 or 6 hours) and the exact format,  
but keep

your diary clear if you'd like to come along and we will set up
registration
at the usual place [1] in the next few days (do not register until  
we've

updated the data for the registration page) once the
location/format/logistics are nailed down.
Watch this space ...

Regards - Cemal
jWeekend
OO & Java Technologies, Wicket Training and Development
http://jWeekend.com

[1] http://jweekend.com/dev/LWUGReg


-
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





--
View this message in context: 
http://www.nabble.com/London-Wicket-Event%2C-Saturday-November-21st-tp25768507p25783880.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


__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__



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



Re: August London Wicket Event (just a drink?)

2009-09-23 Thread Ioannis Mavroukakis

Oct 7 is looming and is the page updated? nooo! :-P

Y.

On 5 Aug 2009, at 20:18, jWeekend wrote:

As many of our guests enjoy their hard-won summer holidays, we will  
hold our next London Wicket Event on October 7th (dates/location/ 
presentation TBC here soon).
In the meantime, for those of you who may be about to experience  
withdrawal symptoms missing our  apres-Wicket refreshments, we're  
fixing a quiet drink on Monday evening. Send us a note on the  
jWeekend "Contact Us" page if you can make it and I'll send you a  
confirmation the venue (central London) and times (19:00ish) when  
they're fixed.


Regards - Cemal
jWeekend
OO & Java Technologies
http://jWeekend.com


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


__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email  
__



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



Re: London Wicket event on Wednesday

2009-06-10 Thread Ioannis Mavroukakis

Don't know if he has, care to elaborate? Are you hinting at some issue?

On 10 Jun 2009, at 16:53, Igor Vaynberg wrote:


well, i hope al has been paying attention to what is happening in the
experimental branch which will be merged into trunk when 1.4 goes
final.

-igor

On Wed, Jun 10, 2009 at 8:50 AM, Ioannis
Mavroukakis wrote:

Bookmarkable everything.

On 10 Jun 2009, at 16:47, Igor Vaynberg wrote:


which code would that be?

-igor

On Wed, Jun 10, 2009 at 8:42 AM, Ioannis
Mavroukakis wrote:


Sorry I meant londonwicket ..pebkac :-) IIRC the code Al demo-ed is
probably
going
to be included in Wicket, don't quite remember when though.


On 10 Jun 2009, at 16:36, francisco treacy wrote:


Hi Ioannis,

What wiki? There's nothing at http://code.google.com/p/londonwicket 
.

Could you point me to it?

Thanks!

2009/6/10 Ioannis Mavroukakis :


Hi Francisco,

Code should be in the wiki, video unfortunately not, but next  
meeting

around
I will try to borrow a camera
and record the proceedings..

On 10 Jun 2009, at 15:34, francisco treacy wrote:


Hi all,

Are there by any chance available slides, or a video, or code  
from the

last London Wicket meetup?

londonwicket hasn't been updated for a while now.

I am particularly interested in the *Bookmarkable Everything*.

Thanks!

Francisco


2009/6/2 Alastair Maw :


Hi, folks.
Quick reminder that there's a London Wicket Users Group meet- 
up on

Wednesday
evening at Google UK in Victoria.

It's rather late in the day for me to be announcing the topic  
of my

talk,
but it's going to be interesting:

*Bookmarkable Everything*

Wicket is great at managing server side state for you, but  
you still

write a
lot of boilerplate code for users to easily bookmark your  
pages.
AJAX makes the problem ten times harder. Come along on  
Wednesday for

instant
parameterised pain relief.

Sign up here: http://jweekend.co.uk/dev/LWUGReg

Alastair



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


__
This email has been scanned by the MessageLabs Email Security  
System.

For more information please visit http://www.messagelabs.com/email
__



-
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


__
This email has been scanned by the MessageLabs Email Security  
System.

For more information please visit http://www.messagelabs.com/email
__



-
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


__
This email has been scanned by the MessageLabs Email Security  
System.

For more information please visit http://www.messagelabs.com/email
__



-
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


__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__



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



Re: London Wicket event on Wednesday

2009-06-10 Thread Ioannis Mavroukakis

Bookmarkable everything.

On 10 Jun 2009, at 16:47, Igor Vaynberg wrote:


which code would that be?

-igor

On Wed, Jun 10, 2009 at 8:42 AM, Ioannis
Mavroukakis wrote:
Sorry I meant londonwicket ..pebkac :-) IIRC the code Al demo-ed is  
probably

going
to be included in Wicket, don't quite remember when though.


On 10 Jun 2009, at 16:36, francisco treacy wrote:


Hi Ioannis,

What wiki? There's nothing at http://code.google.com/p/londonwicket.
Could you point me to it?

Thanks!

2009/6/10 Ioannis Mavroukakis :


Hi Francisco,

Code should be in the wiki, video unfortunately not, but next  
meeting

around
I will try to borrow a camera
and record the proceedings..

On 10 Jun 2009, at 15:34, francisco treacy wrote:


Hi all,

Are there by any chance available slides, or a video, or code  
from the

last London Wicket meetup?

londonwicket hasn't been updated for a while now.

I am particularly interested in the *Bookmarkable Everything*.

Thanks!

Francisco


2009/6/2 Alastair Maw :


Hi, folks.
Quick reminder that there's a London Wicket Users Group meet-up  
on

Wednesday
evening at Google UK in Victoria.

It's rather late in the day for me to be announcing the topic  
of my

talk,
but it's going to be interesting:

*Bookmarkable Everything*

Wicket is great at managing server side state for you, but you  
still

write a
lot of boilerplate code for users to easily bookmark your pages.
AJAX makes the problem ten times harder. Come along on  
Wednesday for

instant
parameterised pain relief.

Sign up here: http://jweekend.co.uk/dev/LWUGReg

Alastair



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


__
This email has been scanned by the MessageLabs Email Security  
System.

For more information please visit http://www.messagelabs.com/email
__



-
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


__
This email has been scanned by the MessageLabs Email Security  
System.

For more information please visit http://www.messagelabs.com/email
__



-
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


__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__



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



Re: London Wicket event on Wednesday

2009-06-10 Thread Ioannis Mavroukakis
Sorry I meant londonwicket ..pebkac :-) IIRC the code Al demo-ed is  
probably going

to be included in Wicket, don't quite remember when though.


On 10 Jun 2009, at 16:36, francisco treacy wrote:


Hi Ioannis,

What wiki? There's nothing at http://code.google.com/p/londonwicket.
Could you point me to it?

Thanks!

2009/6/10 Ioannis Mavroukakis :

Hi Francisco,

Code should be in the wiki, video unfortunately not, but next  
meeting around

I will try to borrow a camera
and record the proceedings..

On 10 Jun 2009, at 15:34, francisco treacy wrote:


Hi all,

Are there by any chance available slides, or a video, or code from  
the

last London Wicket meetup?

londonwicket hasn't been updated for a while now.

I am particularly interested in the *Bookmarkable Everything*.

Thanks!

Francisco


2009/6/2 Alastair Maw :


Hi, folks.
Quick reminder that there's a London Wicket Users Group meet-up on
Wednesday
evening at Google UK in Victoria.

It's rather late in the day for me to be announcing the topic of  
my talk,

but it's going to be interesting:

*Bookmarkable Everything*

Wicket is great at managing server side state for you, but you  
still

write a
lot of boilerplate code for users to easily bookmark your pages.
AJAX makes the problem ten times harder. Come along on Wednesday  
for

instant
parameterised pain relief.

Sign up here: http://jweekend.co.uk/dev/LWUGReg

Alastair



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


__
This email has been scanned by the MessageLabs Email Security  
System.

For more information please visit http://www.messagelabs.com/email
__



-
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


__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__



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



Re: London Wicket event on Wednesday

2009-06-10 Thread Ioannis Mavroukakis

Hi Francisco,

Code should be in the wiki, video unfortunately not, but next meeting  
around I will try to borrow a camera

and record the proceedings..

On 10 Jun 2009, at 15:34, francisco treacy wrote:


Hi all,

Are there by any chance available slides, or a video, or code from the
last London Wicket meetup?

londonwicket hasn't been updated for a while now.

I am particularly interested in the *Bookmarkable Everything*.

Thanks!

Francisco


2009/6/2 Alastair Maw :

Hi, folks.
Quick reminder that there's a London Wicket Users Group meet-up on  
Wednesday

evening at Google UK in Victoria.

It's rather late in the day for me to be announcing the topic of my  
talk,

but it's going to be interesting:

*Bookmarkable Everything*

Wicket is great at managing server side state for you, but you  
still write a

lot of boilerplate code for users to easily bookmark your pages.
AJAX makes the problem ten times harder. Come along on Wednesday  
for instant

parameterised pain relief.

Sign up here: http://jweekend.co.uk/dev/LWUGReg

Alastair



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


__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__



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