Mouse Position Event Behavior

2010-03-04 Thread Michael Mosmann
Hi,

I am not sure how to implement something like an mouse position
behavior. I know, that i can use some form and ajaxsubmit behavior. But
that not the way i like it:)

any suggestions are welcome 

michael mosmann:)




Re: Mouse Position Event Behavior

2010-03-04 Thread Ernesto Reinaldo Barreiro
http://londonwicket.googlecode.com/files/LondonWicket-Paint.pdf ?

Ernesto


On Thu, Mar 4, 2010 at 11:11 AM, Michael Mosmann mich...@mosmann.de wrote:

 Hi,

 I am not sure how to implement something like an mouse position
 behavior. I know, that i can use some form and ajaxsubmit behavior. But
 that not the way i like it:)

 any suggestions are welcome

 michael mosmann:)





Re: Mouse Position Event Behavior

2010-03-04 Thread Michael Mosmann
Am Donnerstag, den 04.03.2010, 11:19 +0100 schrieb Ernesto Reinaldo
Barreiro:
 http://londonwicket.googlecode.com/files/LondonWicket-Paint.pdf ?
 
 Ernesto

thanks:)

mm:)



Re: Wicket Stuff Commit Access

2010-03-04 Thread Jeremy Thomerson
Added.  Sorry this took so long.

--
Jeremy Thomerson
http://www.wickettraining.com



On Thu, Feb 18, 2010 at 8:55 AM, Vijay Kiran v.ki...@1hippo.com wrote:

 vijaykiran


Re: Git migration for stuff

2010-03-04 Thread Antony Stubbs

Yes I can understand for Wicket but what about Stuff?


igor.vaynberg wrote:
 
 the bridge works ok most of the times. but, it still has a few rough
 edges. for example while running git svn dcommit and there is a
 conflict all commits after the one that caused the conflict are lost
 and you have to manually go dig them out of the old refs. stuff like
 that. also i could never get git cherry to work right. the pick works,
 but cherry doesnt list the differences. annoying things like that :)
 
 as for the plugin. it has the basics like history/diff. with git i
 find myself using the cli more often because its much better then svn
 so not so much need for the ide plugin...
 
 anywho. apache is not going to switch to git, so for wicket there is
 no choice. use git svn if you want to commit, or use the github/apache
 mirrors if you just want to submit patches.
 
 -igor
 
 On Wed, Mar 3, 2010 at 3:27 PM, Johan Compagner jcompag...@gmail.com
 wrote:
 How is the latest eclipse plugin support?

 But why not just use then  svn-git 'bridge' that git has build in?

 - Original message -
 What's the latest on Git migration? If not for Wicket proper, for
 Wicket-Stuff?
 Windows support as come a long way...



 
 


-
___

http://stubbisms.wordpress.com http://stubbisms.wordpress.com 
-- 
View this message in context: 
http://old.nabble.com/Git-migration-for-stuff-tp27774047p27786569.html
Sent from the Wicket - Dev mailing list archive at Nabble.com.



Re: Git migration for stuff

2010-03-04 Thread Antony Stubbs

Like the man said, the eclipse support ain't too bad. But the way Git works
you really don't _need_ integration.  If you want a good ui there's Tortoise
Git for windows or GitX for OSX.

git-svn is useful, but limits you. It's very slow and cannot support merges
(because it has to eventually fall back to SVN representation).


jcompagner-2 wrote:
 
 How is the latest eclipse plugin support?
 
 But why not just use then  svn-git 'bridge' that git has build in?
 
 - Original message -
 What's the latest on Git migration? If not for Wicket proper, for
 Wicket-Stuff?
 Windows support as come a long way...

 
 
 


-
___

http://stubbisms.wordpress.com http://stubbisms.wordpress.com 
-- 
View this message in context: 
http://old.nabble.com/Git-migration-for-stuff-tp27774047p27786581.html
Sent from the Wicket - Dev mailing list archive at Nabble.com.



Re: Git migration for stuff

2010-03-04 Thread Johan Compagner
no integration needed?
How do you compare (with the repository version or another version, branch)?

how do you check what is all incoming? (synchronize with working sets)
History view: getting a revision, comparing 2 revisions, getting the
contents?
Annotations?

I use above points daily. I cant do without it.

johan




On Thu, Mar 4, 2010 at 22:10, Antony Stubbs antony.stu...@gmail.com wrote:


 Like the man said, the eclipse support ain't too bad. But the way Git works
 you really don't _need_ integration.  If you want a good ui there's
 Tortoise
 Git for windows or GitX for OSX.

 git-svn is useful, but limits you. It's very slow and cannot support merges
 (because it has to eventually fall back to SVN representation).


 jcompagner-2 wrote:
 
  How is the latest eclipse plugin support?
 
  But why not just use then  svn-git 'bridge' that git has build in?
 
  - Original message -
  What's the latest on Git migration? If not for Wicket proper, for
  Wicket-Stuff?
  Windows support as come a long way...
 
 
 
 


 -
 ___

 http://stubbisms.wordpress.com http://stubbisms.wordpress.com
 --
 View this message in context:
 http://old.nabble.com/Git-migration-for-stuff-tp27774047p27786581.html
 Sent from the Wicket - Dev mailing list archive at Nabble.com.




Re: Git migration for stuff

2010-03-04 Thread Antony Stubbs

How do you compare (with the repository version or another version, branch)?
Something along the lines of (other ui tools might differ slightly):
gitk 1.2 1.3
gitk master origin
git diff master..origin/master
dit diff master..origin/feature-branch

history view:
getting a revision, 
git checkout 1.2

comparing 2 revisions,
git diff 1.2..1.3
in gitx:
git diff v0.5 v0.6 | gitx

getting the contents?
git checkout 1.4

Annotations?
git-annotate or git-blame (personal preference)

I hope that answers some of your question? Let me know if you are curious
about anything else?

(the no integration needed comment was more addressing SVN's need to be
integrated in order to track renames, or it dies.)


Johan Compagner wrote:
 
 no integration needed?
 How do you compare (with the repository version or another version,
 branch)?
 
 how do you check what is all incoming? (synchronize with working sets)
 History view: getting a revision, comparing 2 revisions, getting the
 contents?
 Annotations?
 
 I use above points daily. I cant do without it.
 
 johan
 
 
 
 
 On Thu, Mar 4, 2010 at 22:10, Antony Stubbs antony.stu...@gmail.com
 wrote:
 

 Like the man said, the eclipse support ain't too bad. But the way Git
 works
 you really don't _need_ integration.  If you want a good ui there's
 Tortoise
 Git for windows or GitX for OSX.

 git-svn is useful, but limits you. It's very slow and cannot support
 merges
 (because it has to eventually fall back to SVN representation).


 jcompagner-2 wrote:
 
  How is the latest eclipse plugin support?
 
  But why not just use then  svn-git 'bridge' that git has build in?
 
  - Original message -
  What's the latest on Git migration? If not for Wicket proper, for
  Wicket-Stuff?
  Windows support as come a long way...
 
 
 
 


 -
 ___

 http://stubbisms.wordpress.com http://stubbisms.wordpress.com
 --
 View this message in context:
 http://old.nabble.com/Git-migration-for-stuff-tp27774047p27786581.html
 Sent from the Wicket - Dev mailing list archive at Nabble.com.


 
 


-
___

http://stubbisms.wordpress.com http://stubbisms.wordpress.com 
-- 
View this message in context: 
http://old.nabble.com/Git-migration-for-stuff-tp27774047p27788018.html
Sent from the Wicket - Dev mailing list archive at Nabble.com.



Re: Git migration for stuff

2010-03-04 Thread Eelco Hillenius
On Thu, Mar 4, 2010 at 1:38 PM, Johan Compagner jcompag...@gmail.com wrote:
 no integration needed?
 How do you compare (with the repository version or another version, branch)?

 how do you check what is all incoming? (synchronize with working sets)
 History view: getting a revision, comparing 2 revisions, getting the
 contents?
 Annotations?

 I use above points daily. I cant do without it.

From my experience, you can do this stuff with the Git plugin for Eclipse.

Eelco


Re: Git migration for stuff

2010-03-04 Thread Andrew Lombardi
gitk works wonders with those things

On Mar 4, 2010, at 1:38 PM, Johan Compagner wrote:

 no integration needed?
 How do you compare (with the repository version or another version, branch)?
 
 how do you check what is all incoming? (synchronize with working sets)
 History view: getting a revision, comparing 2 revisions, getting the
 contents?
 Annotations?
 
 I use above points daily. I cant do without it.
 
 johan
 
 
 
 
 On Thu, Mar 4, 2010 at 22:10, Antony Stubbs antony.stu...@gmail.com wrote:
 
 
 Like the man said, the eclipse support ain't too bad. But the way Git works
 you really don't _need_ integration.  If you want a good ui there's
 Tortoise
 Git for windows or GitX for OSX.
 
 git-svn is useful, but limits you. It's very slow and cannot support merges
 (because it has to eventually fall back to SVN representation).
 
 
 jcompagner-2 wrote:
 
 How is the latest eclipse plugin support?
 
 But why not just use then  svn-git 'bridge' that git has build in?
 
 - Original message -
 What's the latest on Git migration? If not for Wicket proper, for
 Wicket-Stuff?
 Windows support as come a long way...
 
 
 
 
 
 
 -
 ___
 
 http://stubbisms.wordpress.com http://stubbisms.wordpress.com
 --
 View this message in context:
 http://old.nabble.com/Git-migration-for-stuff-tp27774047p27786581.html
 Sent from the Wicket - Dev mailing list archive at Nabble.com.
 
 


To our success!

Mystic Coders, LLC | Code Magic | www.mysticcoders.com

ANDREW LOMBARDI | and...@mysticcoders.com
2321 E 4th St. Ste C-128, Santa Ana CA 92705
ofc: 714-816-4488
fax: 714-782-6024
cell: 714-697-8046
linked-in: http://www.linkedin.com/in/andrewlombardi
twitter: http://www.twitter.com/kinabalu

Eco-Tip: Printing e-mails is usually a waste.


This message is for the named person's use only. You must not, directly or 
indirectly, use,
 disclose, distribute, print, or copy any part of this message if you are not 
the intended recipient.




Wicket 1.4.7 released

2010-03-04 Thread Igor Vaynberg
Wicket 1.4.7 is released!

This is the seventh maintenance release of 1.4.x series and brings over
30 bug fixes and improvements.

tag: https://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.7/

maven:

dependency
 groupIdorg.apache.wicket/groupId
 artifactIdwicket/artifactId
 version1.4.7/version
/dependency

download: http://www.apache.org/dyn/closer.cgi/wicket/1.4.7

changelog:https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=truepid=12310561fixfor=12314560

cheers,

-igor

PS. the website has been updated with the release announcement but is
still waiting to be replicated.


Re: Wicket 1.4.7 released

2010-03-04 Thread Andrew Lombardi
Congratulations!

On Mar 4, 2010, at 6:35 PM, Igor Vaynberg wrote:

 Wicket 1.4.7 is released!
 
 This is the seventh maintenance release of 1.4.x series and brings over
 30 bug fixes and improvements.
 
 tag: https://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.7/
 
 maven:
 
 dependency
 groupIdorg.apache.wicket/groupId
 artifactIdwicket/artifactId
 version1.4.7/version
 /dependency
 
 download: http://www.apache.org/dyn/closer.cgi/wicket/1.4.7
 
 changelog:https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=truepid=12310561fixfor=12314560
 
 cheers,
 
 -igor
 
 PS. the website has been updated with the release announcement but is
 still waiting to be replicated.


To our success!

Mystic Coders, LLC | Code Magic | www.mysticcoders.com

ANDREW LOMBARDI | and...@mysticcoders.com
2321 E 4th St. Ste C-128, Santa Ana CA 92705
ofc: 714-816-4488
fax: 714-782-6024
cell: 714-697-8046
linked-in: http://www.linkedin.com/in/andrewlombardi
twitter: http://www.twitter.com/kinabalu

Eco-Tip: Printing e-mails is usually a waste.


This message is for the named person's use only. You must not, directly or 
indirectly, use,
 disclose, distribute, print, or copy any part of this message if you are not 
the intended recipient.




Re: Git migration for stuff

2010-03-04 Thread Igor Vaynberg
that is all there in the egit plugin.

-igor

On Thu, Mar 4, 2010 at 1:38 PM, Johan Compagner jcompag...@gmail.com wrote:
 no integration needed?
 How do you compare (with the repository version or another version, branch)?

 how do you check what is all incoming? (synchronize with working sets)
 History view: getting a revision, comparing 2 revisions, getting the
 contents?
 Annotations?

 I use above points daily. I cant do without it.

 johan




 On Thu, Mar 4, 2010 at 22:10, Antony Stubbs antony.stu...@gmail.com wrote:


 Like the man said, the eclipse support ain't too bad. But the way Git works
 you really don't _need_ integration.  If you want a good ui there's
 Tortoise
 Git for windows or GitX for OSX.

 git-svn is useful, but limits you. It's very slow and cannot support merges
 (because it has to eventually fall back to SVN representation).


 jcompagner-2 wrote:
 
  How is the latest eclipse plugin support?
 
  But why not just use then  svn-git 'bridge' that git has build in?
 
  - Original message -
  What's the latest on Git migration? If not for Wicket proper, for
  Wicket-Stuff?
  Windows support as come a long way...
 
 
 
 


 -
 ___

 http://stubbisms.wordpress.com http://stubbisms.wordpress.com
 --
 View this message in context:
 http://old.nabble.com/Git-migration-for-stuff-tp27774047p27786581.html
 Sent from the Wicket - Dev mailing list archive at Nabble.com.