You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by zh...@apache.org on 2008/01/10 23:16:03 UTC

svn commit: r610954 - in /incubator/shindig/trunk: features/setprefs/feature.xml features/setprefs/setprefs.js javascript/README javascript/container/sample1.html

Author: zhen
Date: Thu Jan 10 14:16:02 2008
New Revision: 610954

URL: http://svn.apache.org/viewvc?rev=610954&view=rev
Log:
Removed references to google.com/ig/ifpc.js.
Fixed https://issues.apache.org/jira/browse/SHINDIG-11.


Modified:
    incubator/shindig/trunk/features/setprefs/feature.xml
    incubator/shindig/trunk/features/setprefs/setprefs.js
    incubator/shindig/trunk/javascript/README
    incubator/shindig/trunk/javascript/container/sample1.html

Modified: incubator/shindig/trunk/features/setprefs/feature.xml
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/features/setprefs/feature.xml?rev=610954&r1=610953&r2=610954&view=diff
==============================================================================
--- incubator/shindig/trunk/features/setprefs/feature.xml (original)
+++ incubator/shindig/trunk/features/setprefs/feature.xml Thu Jan 10 14:16:02 2008
@@ -1,16 +1,20 @@
 <?xml version="1.0"?>
 <!--
-  Licensed 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
+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
+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.
+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.
 -->
 <feature>
   <name>setprefs</name>

Modified: incubator/shindig/trunk/features/setprefs/setprefs.js
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/features/setprefs/setprefs.js?rev=610954&r1=610953&r2=610954&view=diff
==============================================================================
--- incubator/shindig/trunk/features/setprefs/setprefs.js (original)
+++ incubator/shindig/trunk/features/setprefs/setprefs.js Thu Jan 10 14:16:02 2008
@@ -1,20 +1,25 @@
 /*
- * Licensed 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
+ * 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
+ * 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.
+ * 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.
  */
 
- /* This library augments gadgets.Prefs with functionality to store prefs
-  * dynamically.
-  */
+/**
+ * @fileoverview This library augments gadgets.Prefs with functionality
+ * to store prefs dynamically.
+ */
 
 /**
  * Stores a preference.
@@ -56,4 +61,5 @@
   gadgets.PrefStore_.setPref(this.moduleId_, key, val.join("|"));
 
   // TODO: Update user pref store somehow. Where do we hook into the container?
-};
\ No newline at end of file
+};
+

Modified: incubator/shindig/trunk/javascript/README
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/javascript/README?rev=610954&r1=610953&r2=610954&view=diff
==============================================================================
--- incubator/shindig/trunk/javascript/README (original)
+++ incubator/shindig/trunk/javascript/README Thu Jan 10 14:16:02 2008
@@ -18,7 +18,7 @@
 
    A) Create an HTML file including the following <head> boilerplate:
       <script type="text/javascript" src="json.js"></script>
-      <script type="text/javascript" src="http://www.google.com/ig/ifpc.js"></script>
+      <script type="text/javascript" src="ifpc.js"></script>
       <script type="text/javascript" src="cookies.js"></script>
       <script type="text/javascript" src="gadgets.js"></script>
 

Modified: incubator/shindig/trunk/javascript/container/sample1.html
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/javascript/container/sample1.html?rev=610954&r1=610953&r2=610954&view=diff
==============================================================================
--- incubator/shindig/trunk/javascript/container/sample1.html (original)
+++ incubator/shindig/trunk/javascript/container/sample1.html Thu Jan 10 14:16:02 2008
@@ -5,7 +5,7 @@
 <!-- default container look and feel -->
 <link rel="stylesheet" href="gadgets.css">
 <script type="text/javascript" src="json.js"></script>
-<script type="text/javascript" src="http://www.google.com/ig/ifpc.js"></script>
+<script type="text/javascript" src="ifpc.js"></script>
 <script type="text/javascript" src="cookies.js"></script>
 <script type="text/javascript" src="gadgets.js"></script>
 <script type="text/javascript">