You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cz...@apache.org on 2013/07/26 10:47:46 UTC

svn commit: r1507218 - in /felix/trunk/webconsole-plugins/event: ./ src/main/appended-resources/ src/main/appended-resources/META-INF/ src/main/resources/res/ src/main/resources/res/ui/

Author: cziegeler
Date: Fri Jul 26 08:47:46 2013
New Revision: 1507218

URL: http://svn.apache.org/r1507218
Log:
Add changelog and update to latest parent pom

Added:
    felix/trunk/webconsole-plugins/event/changelog.txt   (with props)
    felix/trunk/webconsole-plugins/event/src/main/appended-resources/
    felix/trunk/webconsole-plugins/event/src/main/appended-resources/META-INF/
    felix/trunk/webconsole-plugins/event/src/main/appended-resources/META-INF/DEPENDENCIES
Removed:
    felix/trunk/webconsole-plugins/event/LICENSE
    felix/trunk/webconsole-plugins/event/NOTICE
Modified:
    felix/trunk/webconsole-plugins/event/pom.xml
    felix/trunk/webconsole-plugins/event/src/main/resources/res/events.html
    felix/trunk/webconsole-plugins/event/src/main/resources/res/ui/addremove.js
    felix/trunk/webconsole-plugins/event/src/main/resources/res/ui/propeditor.js

Added: felix/trunk/webconsole-plugins/event/changelog.txt
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/event/changelog.txt?rev=1507218&view=auto
==============================================================================
--- felix/trunk/webconsole-plugins/event/changelog.txt (added)
+++ felix/trunk/webconsole-plugins/event/changelog.txt Fri Jul 26 08:47:46 2013
@@ -0,0 +1,18 @@
+Changes from 1.0.2 to 1.0.4
+---------------------------
+
+** New Feature
+    * [FELIX-2331] - webconsole event plugin should be able to send/post events.
+
+** Bug
+    * [FELIX-3960] - exception in the event plugin
+    * [FELIX-3449] - Event plugin cannot send events without properties
+
+** Improvement
+    * [FELIX-4185] - Add category OSGi to event web console plugin 
+    * [FELIX-3454] - Add German language support for Event and UPnP plugins
+
+** Task
+    * [FELIX-3440] - native2ascii doesn't work for event plugin
+    * [FELIX-3268] - Cannot build webconsole and webconsole-plugins with JDK 7
+

Propchange: felix/trunk/webconsole-plugins/event/changelog.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: felix/trunk/webconsole-plugins/event/changelog.txt
------------------------------------------------------------------------------
    svn:keywords = Id

Propchange: felix/trunk/webconsole-plugins/event/changelog.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: felix/trunk/webconsole-plugins/event/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/event/pom.xml?rev=1507218&r1=1507217&r2=1507218&view=diff
==============================================================================
--- felix/trunk/webconsole-plugins/event/pom.xml (original)
+++ felix/trunk/webconsole-plugins/event/pom.xml Fri Jul 26 08:47:46 2013
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.apache.felix</groupId>
         <artifactId>felix-parent</artifactId>
-        <version>1.2.0</version>
+        <version>2.1</version>
         <relativePath>../../../pom/pom.xml</relativePath>
     </parent>
 
@@ -98,6 +98,19 @@
                     </instructions>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <includes>
+                        <include>src/**</include>
+                    </includes>
+                    <excludes>
+                        <exclude>src/main/resources/res/events.html</exclude>
+                        <exclude>src/main/appended-resources/**</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 

Added: felix/trunk/webconsole-plugins/event/src/main/appended-resources/META-INF/DEPENDENCIES
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/event/src/main/appended-resources/META-INF/DEPENDENCIES?rev=1507218&view=auto
==============================================================================
--- felix/trunk/webconsole-plugins/event/src/main/appended-resources/META-INF/DEPENDENCIES (added)
+++ felix/trunk/webconsole-plugins/event/src/main/appended-resources/META-INF/DEPENDENCIES Fri Jul 26 08:47:46 2013
@@ -0,0 +1,17 @@
+
+I. Included Software
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+Licensed under the Apache License 2.0.
+
+II. Used Software
+
+This product uses software developed at
+The OSGi Alliance (http://www.osgi.org/).
+Copyright (c) OSGi Alliance (2000, 2012).
+Licensed under the Apache License 2.0.
+
+
+III. License Summary
+- Apache License 2.0

Modified: felix/trunk/webconsole-plugins/event/src/main/resources/res/events.html
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/event/src/main/resources/res/events.html?rev=1507218&r1=1507217&r2=1507218&view=diff
==============================================================================
--- felix/trunk/webconsole-plugins/event/src/main/resources/res/events.html (original)
+++ felix/trunk/webconsole-plugins/event/src/main/resources/res/events.html Fri Jul 26 08:47:46 2013
@@ -1,4 +1,4 @@
-<script type="text/javascript" src="${pluginRoot}/res/ui/addremove.js"></script>
+<script type="text/javascript" src="${pluginRoot}/res/ui/addremove.js"></script>
 <script type="text/javascript" src="${pluginRoot}/res/ui/propeditor.js"></script>
 <script type="text/javascript" src="${pluginRoot}/res/ui/events.js"></script>
 <script type="text/javascript">

Modified: felix/trunk/webconsole-plugins/event/src/main/resources/res/ui/addremove.js
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/event/src/main/resources/res/ui/addremove.js?rev=1507218&r1=1507217&r2=1507218&view=diff
==============================================================================
--- felix/trunk/webconsole-plugins/event/src/main/resources/res/ui/addremove.js (original)
+++ felix/trunk/webconsole-plugins/event/src/main/resources/res/ui/addremove.js Fri Jul 26 08:47:46 2013
@@ -1,4 +1,19 @@
 /*
+ * 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.
+ * 
 	Structure is:
 	<div class="my-element-container">
 		<div class="multiInput">

Modified: felix/trunk/webconsole-plugins/event/src/main/resources/res/ui/propeditor.js
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/event/src/main/resources/res/ui/propeditor.js?rev=1507218&r1=1507217&r2=1507218&view=diff
==============================================================================
--- felix/trunk/webconsole-plugins/event/src/main/resources/res/ui/propeditor.js (original)
+++ felix/trunk/webconsole-plugins/event/src/main/resources/res/ui/propeditor.js Fri Jul 26 08:47:46 2013
@@ -1,4 +1,19 @@
 /*
+ * 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.
+ * 
 	Structure is:
 	<div class="propeditor">
 		<div>