You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2012/01/02 09:20:12 UTC

git commit: WICKET-3367 Rewrite all JavaScript inline event handlers to be proper attached event handlers

Updated Branches:
  refs/heads/master b9c828842 -> 584eb79b8


WICKET-3367
Rewrite all JavaScript inline event handlers to be proper attached event handlers

Add Apache licences


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/584eb79b
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/584eb79b
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/584eb79b

Branch: refs/heads/master
Commit: 584eb79b88c75deceeaef201791d63c976e9f0c5
Parents: b9c8288
Author: martin-g <mg...@apache.org>
Authored: Mon Jan 2 10:20:00 2012 +0200
Committer: martin-g <mg...@apache.org>
Committed: Mon Jan 2 10:20:00 2012 +0200

----------------------------------------------------------------------
 .../src/test/js/data/ajax/complexComponentId.xml   |   17 +++++++++++++++
 .../test/js/data/ajax/componentDoesNotExistsId.xml |   17 +++++++++++++++
 wicket-core/src/test/js/data/ajax/componentId.xml  |   17 +++++++++++++++
 .../test/js/data/ajax/componentToReplaceTitle.xml  |   17 +++++++++++++++
 wicket-core/src/test/js/data/ajax/evaluationId.xml |   17 +++++++++++++++
 .../js/data/ajax/evaluationIdentifierAndCodeId.xml |   17 +++++++++++++++
 .../src/test/js/data/ajax/priorityEvaluationId.xml |   17 +++++++++++++++
 7 files changed, 119 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/584eb79b/wicket-core/src/test/js/data/ajax/complexComponentId.xml
----------------------------------------------------------------------
diff --git a/wicket-core/src/test/js/data/ajax/complexComponentId.xml b/wicket-core/src/test/js/data/ajax/complexComponentId.xml
index 8fc6212..52154e8 100644
--- a/wicket-core/src/test/js/data/ajax/complexComponentId.xml
+++ b/wicket-core/src/test/js/data/ajax/complexComponentId.xml
@@ -1,3 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
 <ajax-response><component id="componentToReplace"><![CDATA[
 
     <table id="componentToReplace">

http://git-wip-us.apache.org/repos/asf/wicket/blob/584eb79b/wicket-core/src/test/js/data/ajax/componentDoesNotExistsId.xml
----------------------------------------------------------------------
diff --git a/wicket-core/src/test/js/data/ajax/componentDoesNotExistsId.xml b/wicket-core/src/test/js/data/ajax/componentDoesNotExistsId.xml
index 18c9e35..080004e 100644
--- a/wicket-core/src/test/js/data/ajax/componentDoesNotExistsId.xml
+++ b/wicket-core/src/test/js/data/ajax/componentDoesNotExistsId.xml
@@ -1 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
 <ajax-response><component id="componentToReplaceDoesNotExist"><![CDATA[<span id="componentToReplaceDoesNotExist">new body</span>]]></component></ajax-response>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/wicket/blob/584eb79b/wicket-core/src/test/js/data/ajax/componentId.xml
----------------------------------------------------------------------
diff --git a/wicket-core/src/test/js/data/ajax/componentId.xml b/wicket-core/src/test/js/data/ajax/componentId.xml
index 44d4c1e..3214b05 100644
--- a/wicket-core/src/test/js/data/ajax/componentId.xml
+++ b/wicket-core/src/test/js/data/ajax/componentId.xml
@@ -1 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
 <ajax-response><component id="componentToReplace"><![CDATA[<span id="componentToReplace">new body</span>]]></component></ajax-response>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/wicket/blob/584eb79b/wicket-core/src/test/js/data/ajax/componentToReplaceTitle.xml
----------------------------------------------------------------------
diff --git a/wicket-core/src/test/js/data/ajax/componentToReplaceTitle.xml b/wicket-core/src/test/js/data/ajax/componentToReplaceTitle.xml
index 8a5b97f..cb6f73d 100644
--- a/wicket-core/src/test/js/data/ajax/componentToReplaceTitle.xml
+++ b/wicket-core/src/test/js/data/ajax/componentToReplaceTitle.xml
@@ -1 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
 <ajax-response><component id="titleId"><![CDATA[<title id="titleId">new title</title>]]></component></ajax-response>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/wicket/blob/584eb79b/wicket-core/src/test/js/data/ajax/evaluationId.xml
----------------------------------------------------------------------
diff --git a/wicket-core/src/test/js/data/ajax/evaluationId.xml b/wicket-core/src/test/js/data/ajax/evaluationId.xml
index fd62e5b..fb294d0 100644
--- a/wicket-core/src/test/js/data/ajax/evaluationId.xml
+++ b/wicket-core/src/test/js/data/ajax/evaluationId.xml
@@ -1 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
 <ajax-response><evaluate>start(); ok(true, 'Evaluation must be executed!');</evaluate></ajax-response>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/wicket/blob/584eb79b/wicket-core/src/test/js/data/ajax/evaluationIdentifierAndCodeId.xml
----------------------------------------------------------------------
diff --git a/wicket-core/src/test/js/data/ajax/evaluationIdentifierAndCodeId.xml b/wicket-core/src/test/js/data/ajax/evaluationIdentifierAndCodeId.xml
index ed4f352..7cb65d6 100644
--- a/wicket-core/src/test/js/data/ajax/evaluationIdentifierAndCodeId.xml
+++ b/wicket-core/src/test/js/data/ajax/evaluationIdentifierAndCodeId.xml
@@ -1 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
 <ajax-response><evaluate>ignored|start(); ok(true, 'Evaluation with identifier must be executed!'); arguments[0]();</evaluate></ajax-response>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/wicket/blob/584eb79b/wicket-core/src/test/js/data/ajax/priorityEvaluationId.xml
----------------------------------------------------------------------
diff --git a/wicket-core/src/test/js/data/ajax/priorityEvaluationId.xml b/wicket-core/src/test/js/data/ajax/priorityEvaluationId.xml
index 374f0f7..1aa4559 100644
--- a/wicket-core/src/test/js/data/ajax/priorityEvaluationId.xml
+++ b/wicket-core/src/test/js/data/ajax/priorityEvaluationId.xml
@@ -1 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
 <ajax-response><priority-evaluate>start(); ok(true, 'Priority Evaluation must be executed!');</priority-evaluate></ajax-response>
\ No newline at end of file