[jira] [Created] (TAP5-2005) Regarding Mouse Events on Tapestry Components

2012-09-30 Thread vishal bansode (JIRA)
vishal bansode created TAP5-2005:


 Summary: Regarding Mouse Events on Tapestry Components
 Key: TAP5-2005
 URL: https://issues.apache.org/jira/browse/TAP5-2005
 Project: Tapestry 5
  Issue Type: Question
Reporter: vishal bansode


How do I implement Mouse events like onmouseout, onmouseup, rollover on 
tapestry components like Input Field or div tag.
Is there any EventConstant or external Extension library which can help me to 
solve this problem?
I dont want to use any basic functionality of html for mouse events which uses 
scripts at client side.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[CONF] Apache Tapestry > Developer Information

2012-09-30 Thread confluence







Developer Information
Page edited by Bob Harner


Comment:
Added the beginnings of a Developer Tools section


 Changes (2)
 




This is a list of information useful to people _developing_ Tapestry itself (rather than developers _using_ Tapestry).  
h2. How Tos  
* [Confluence Site Setup] -- all about how Confluence is used to edit the content of the static documentation site * [Release Process] -- how to produce a release * [Developer Bible] -- random thoughts from Howard related to being a Tapestry committer 
 h2. Developer Tools  * [Jenkins automated build results|https://builds.apache.org/job/tapestry-trunk-freestyle/] -- trunk * [Browse Git source|https://git-wip-us.apache.org/repos/asf?p=tapestry-5.git] 
* [The Tapestry Jail] -- information about our FreeBSD jail at typestry.zones.apache.org 


Full Content

This is a list of information useful to people developing Tapestry itself (rather than developers using Tapestry).

How Tos


	Confluence Site Setup – all about how Confluence is used to edit the content of the static documentation site
	Release Process – how to produce a release
	Developer Bible – random thoughts from Howard related to being a Tapestry committer



Developer Tools


	Jenkins automated build results – trunk
	Browse Git source
	The tapestry jail – information about our FreeBSD jail at typestry.zones.apache.org





Change Notification Preferences

View Online
|
View Changes









git commit: Fixed TAP5-2004 ("Tapestry-Ioc fails to build on Windows") with patch from Chris Poulsen

2012-09-30 Thread bobharner
Updated Branches:
  refs/heads/5.3 db4ff9b7d -> 35443aa07


Fixed TAP5-2004 ("Tapestry-Ioc fails to build on Windows")
with patch from Chris Poulsen

Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/35443aa0
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/35443aa0
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/35443aa0

Branch: refs/heads/5.3
Commit: 35443aa0792c66e122cdd41b5fdd788dd6e77c41
Parents: db4ff9b
Author: bharner 
Authored: Sun Sep 30 16:24:41 2012 -0400
Committer: bharner 
Committed: Sun Sep 30 16:24:41 2012 -0400

--
 .../java/org/apache/tapestry5/ioc/ReloadTest.java  |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/35443aa0/tapestry-ioc/src/test/java/org/apache/tapestry5/ioc/ReloadTest.java
--
diff --git 
a/tapestry-ioc/src/test/java/org/apache/tapestry5/ioc/ReloadTest.java 
b/tapestry-ioc/src/test/java/org/apache/tapestry5/ioc/ReloadTest.java
index 4120f1f..e06e155 100644
--- a/tapestry-ioc/src/test/java/org/apache/tapestry5/ioc/ReloadTest.java
+++ b/tapestry-ioc/src/test/java/org/apache/tapestry5/ioc/ReloadTest.java
@@ -1,4 +1,4 @@
-// Copyright 2010 The Apache Software Foundation
+// Copyright 2012 The Apache Software Foundation
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -68,7 +68,7 @@ public class ReloadTest extends IOCTestCase
 
 // URLClassLoader REQUIRES that File URLs end with a slash! That's a 
half hour of my life gone!
 
-URL classesURL = new URL("file:" + classesDir.getCanonicalPath() + 
"/");
+URL classesURL = new URL(classesDir.toURI().toString() + "/");
 
 System.out.println("Reload classes dir: " + classesURL);