You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mm...@apache.org on 2005/07/15 13:45:17 UTC

svn commit: r219181 - in /myfaces: build/trunk/NOTICE.txt build/trunk/licenses/ build/trunk/licenses/license-aculo-cs.txt sandbox/trunk/src/java/org/apache/myfaces/custom/ajaxsuggest/AjaxInputSuggestRenderer.java

Author: mmarinschek
Date: Fri Jul 15 04:45:15 2005
New Revision: 219181

URL: http://svn.apache.org/viewcvs?rev=219181&view=rev
Log:
added licenses

Added:
    myfaces/build/trunk/licenses/
    myfaces/build/trunk/licenses/license-aculo-cs.txt
Modified:
    myfaces/build/trunk/NOTICE.txt
    myfaces/sandbox/trunk/src/java/org/apache/myfaces/custom/ajaxsuggest/AjaxInputSuggestRenderer.java

Modified: myfaces/build/trunk/NOTICE.txt
URL: http://svn.apache.org/viewcvs/myfaces/build/trunk/NOTICE.txt?rev=219181&r1=219180&r2=219181&view=diff
==============================================================================
--- myfaces/build/trunk/NOTICE.txt (original)
+++ myfaces/build/trunk/NOTICE.txt Fri Jul 15 04:45:15 2005
@@ -3,7 +3,7 @@
 
 ------------------------------------------------------------------------
 See the file LICENSE.txt
-See licenses for accompanying products in the "doc/license" directory.
+See licenses for accompanying products in the "/licenses" subdirectory.
 ------------------------------------------------------------------------
 
 This product includes software developed by Heng Yuan

Added: myfaces/build/trunk/licenses/license-aculo-cs.txt
URL: http://svn.apache.org/viewcvs/myfaces/build/trunk/licenses/license-aculo-cs.txt?rev=219181&view=auto
==============================================================================
--- myfaces/build/trunk/licenses/license-aculo-cs.txt (added)
+++ myfaces/build/trunk/licenses/license-aculo-cs.txt Fri Jul 15 04:45:15 2005
@@ -0,0 +1,20 @@
+Copyright (c) 2005 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file

Modified: myfaces/sandbox/trunk/src/java/org/apache/myfaces/custom/ajaxsuggest/AjaxInputSuggestRenderer.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/src/java/org/apache/myfaces/custom/ajaxsuggest/AjaxInputSuggestRenderer.java?rev=219181&r1=219180&r2=219181&view=diff
==============================================================================
--- myfaces/sandbox/trunk/src/java/org/apache/myfaces/custom/ajaxsuggest/AjaxInputSuggestRenderer.java (original)
+++ myfaces/sandbox/trunk/src/java/org/apache/myfaces/custom/ajaxsuggest/AjaxInputSuggestRenderer.java Fri Jul 15 04:45:15 2005
@@ -130,8 +130,7 @@
         }
         if (ajaxInputSuggest.getPopupId() != null)
         {
-            out.writeAttribute(HTML.ID_ATTR,
-                    component.getClientId(context)+ajaxInputSuggest.getPopupId(), null);
+            out.writeAttribute(HTML.ID_ATTR,ajaxInputSuggest.getPopupId(), null);
         }
         else
         {
@@ -155,7 +154,7 @@
         out.writeText("','",null);
         if (ajaxInputSuggest.getPopupId() != null)
         {
-            out.writeText(component.getClientId(context)+ajaxInputSuggest.getPopupId(), null);
+            out.writeText(ajaxInputSuggest.getPopupId(), null);
         }
         else
         {