You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by li...@apache.org on 2010/11/18 00:43:19 UTC

svn commit: r1036287 [2/3] - in /shindig/trunk: ./ config/ content/container/ content/editor/ content/editor/CodeMirror-0.8/ content/editor/CodeMirror-0.8/css/ content/editor/CodeMirror-0.8/js/ content/gadgets/compliance-1.0/ content/samplecontainer/ex...

Modified: shindig/trunk/content/gadgets/compliance-1.0/nestedCustomTagsWithFriends.xml
URL: http://svn.apache.org/viewvc/shindig/trunk/content/gadgets/compliance-1.0/nestedCustomTagsWithFriends.xml?rev=1036287&r1=1036286&r2=1036287&view=diff
==============================================================================
--- shindig/trunk/content/gadgets/compliance-1.0/nestedCustomTagsWithFriends.xml (original)
+++ shindig/trunk/content/gadgets/compliance-1.0/nestedCustomTagsWithFriends.xml Wed Nov 17 23:43:08 2010
@@ -1,95 +1,95 @@
-<?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.
--->
-<Module >
-  <ModulePrefs title="Complex Custom Tag Nesting" 
-  description="Testing of custom tag nesting with different repeaters and split repeat with If filtering">
-    <Require feature="opensocial-1.0"/>
-    <Require feature="opensocial-templates"/>
-  </ModulePrefs>
-  <Content type="html" view="canvas">
-    <script type="text/os-data">
-      <os:ViewerRequest key='vwr' fields="@all" />
-      <os:PeopleRequest key='myfriends' fields="@all" userid="@viewer" groupid="@friends" startIndex="1" count="100" />
-    </script>
-    <!-- ==================== CUSTOM TAG ONE - VIEWER DATA =================== -->
-    <script type="text/os-template" tag="my:ViewerData">
-      <div style="font-weight:bold;color:${My.titleColor}">Summary for ${My.person.displayName}
-	  <img src="${My.person.thumbnailUrl}" style="margin-left:250px;" />
-	  </div>
-      <div style="padding:4px;width:250px;border:1px solid green;background:#999;">
-Age: ${My.person.age} <br />
-Gender: ${My.person.gender} <br />
-      </div>
-    </script>
-
-    <!-- ==================== CUSTOM TAG TWO - SimplePerson =================== -->
-    <script type="text/os-template" tag="my:SimplePerson">
-      <div style="font-weight:bold;color:${My.titleColor}">Simple for ${My.person.displayName}</div>
-      <div style="padding:4px;width:250px;border:1px solid green;background:#999;">
-      <os:Badge person="${My.person}" />
-Age: ${My.person.age} <br />
-      </div>
-    </script>
-
-    <!-- ==================== CUSTOM TAG THREE - FriendList =================== -->
-    <script type="text/os-template" tag="my:FriendList">
-    <h2>List of Friends</h2>
-  <os:Repeat expression="${My.people}">
-    <my:SimplePerson titleColor="blue">
-    <person>${Cur}</person>
-    </my:SimplePerson>
-  </os:Repeat>
-    </script>
-
-
-
-    <script type="text/os-template">
-      <style type="text/css">
-        body{
-        background:#eee;
-        color:#222;
-        }
-      </style>
-    </script>
-  </Content>
-
-    <Content type="html" view="canvas">
-    <script type="text/os-template">
-    <h1>Tags Sample</h1>
-    
-<my:ViewerData person="${vwr}" titleColor="orange" />
-
-And the Friend List <br/>
-
-<my:FriendList>
-<people>${myfriends}</people>
-</my:FriendList>
-
-<hr />
-   
-    
-    
-      <hr style="clear:both;" />
-    </script>
-  </Content>
-
-</Module>
-
-
+<?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.
+-->
+<Module >
+  <ModulePrefs title="Complex Custom Tag Nesting" 
+  description="Testing of custom tag nesting with different repeaters and split repeat with If filtering">
+    <Require feature="opensocial-1.0"/>
+    <Require feature="opensocial-templates"/>
+  </ModulePrefs>
+  <Content type="html" view="canvas">
+    <script type="text/os-data">
+      <os:ViewerRequest key='vwr' fields="@all" />
+      <os:PeopleRequest key='myfriends' fields="@all" userid="@viewer" groupid="@friends" startIndex="1" count="100" />
+    </script>
+    <!-- ==================== CUSTOM TAG ONE - VIEWER DATA =================== -->
+    <script type="text/os-template" tag="my:ViewerData">
+      <div style="font-weight:bold;color:${My.titleColor}">Summary for ${My.person.displayName}
+	  <img src="${My.person.thumbnailUrl}" style="margin-left:250px;" />
+	  </div>
+      <div style="padding:4px;width:250px;border:1px solid green;background:#999;">
+Age: ${My.person.age} <br />
+Gender: ${My.person.gender} <br />
+      </div>
+    </script>
+
+    <!-- ==================== CUSTOM TAG TWO - SimplePerson =================== -->
+    <script type="text/os-template" tag="my:SimplePerson">
+      <div style="font-weight:bold;color:${My.titleColor}">Simple for ${My.person.displayName}</div>
+      <div style="padding:4px;width:250px;border:1px solid green;background:#999;">
+      <os:Badge person="${My.person}" />
+Age: ${My.person.age} <br />
+      </div>
+    </script>
+
+    <!-- ==================== CUSTOM TAG THREE - FriendList =================== -->
+    <script type="text/os-template" tag="my:FriendList">
+    <h2>List of Friends</h2>
+  <os:Repeat expression="${My.people}">
+    <my:SimplePerson titleColor="blue">
+    <person>${Cur}</person>
+    </my:SimplePerson>
+  </os:Repeat>
+    </script>
+
+
+
+    <script type="text/os-template">
+      <style type="text/css">
+        body{
+        background:#eee;
+        color:#222;
+        }
+      </style>
+    </script>
+  </Content>
+
+    <Content type="html" view="canvas">
+    <script type="text/os-template">
+    <h1>Tags Sample</h1>
+    
+<my:ViewerData person="${vwr}" titleColor="orange" />
+
+And the Friend List <br/>
+
+<my:FriendList>
+<people>${myfriends}</people>
+</my:FriendList>
+
+<hr />
+   
+    
+    
+      <hr style="clear:both;" />
+    </script>
+  </Content>
+
+</Module>
+
+

Propchange: shindig/trunk/content/gadgets/compliance-1.0/nestedCustomTagsWithFriends.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/gadgets/compliance-1.0/nestedCustomTagsWithFriends.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: shindig/trunk/content/gadgets/compliance-1.0/osVarTestGadget.xml
URL: http://svn.apache.org/viewvc/shindig/trunk/content/gadgets/compliance-1.0/osVarTestGadget.xml?rev=1036287&r1=1036286&r2=1036287&view=diff
==============================================================================
--- shindig/trunk/content/gadgets/compliance-1.0/osVarTestGadget.xml (original)
+++ shindig/trunk/content/gadgets/compliance-1.0/osVarTestGadget.xml Wed Nov 17 23:43:08 2010
@@ -1,159 +1,159 @@
-<?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.
--->
-<Module xmlns:os="http://ns.opensocial.org/2008/markup" xmlns:myspace="http://ns.opensocial.org/2008/x" xmlns:my="http://ns.opensocial.org/2008/z">
-  <ModulePrefs title="OsVar Test Gadget" description="Test cases on osVar"
-  thumbnail=""
-  >
-    <Require feature="opensocial-1.0"/>
-    <Require feature="opensocial-templates"/>
-  </ModulePrefs>
-  <Content type="html" view="canvas">
-    <script type="text/os-data">
-      <os:ViewerRequest key='vwr' />
-      <os:PeopleRequest key='myfriends' userid="@viewer" groupid="@friends" />
-      <os:Var key="dpVar" >I am registered with Data Pipeline</os:Var>
-      <os:Var key="jsonArrayVar" >[1,"one", "three"]</os:Var>
-      <os:Var key="jsonObjectVar" >{"id":'jsonId',"displayName":"faux Person"}</os:Var>
-    </script>
-
-
-    <script type="text/os-template" tag="vartest:Embedded">
-<div style="border:4px solid gray;padding:4px;margin:10px;float:left;">
-vartest:Embedded tag <br/>
-<b>My.someVal:</b> ${My.someVal}
-</div>
-    </script>
-
-
-<script type="text/os-template" tag="vartest:InDefinition">
-	<os:Var key="altKey" >Built altKey contains someVal: ${My.someVal}</os:Var>
-	<div style="border:4px solid red;padding:4px;margin:10px;float:left;">
-	vartest:InDefinition tag <br/>
-	<b>altKey:</b> ${altKey}
-	</div>
-</script>
-
-<script type="text/os-template" tag="vartest:InDefinition2">
-	<os:Var key="altKey" >Built altKey contains someVal: ${My.someVal}</os:Var>
-	<div style="border:4px solid orange;padding:4px;margin:10px;float:left;">
-	vartest:InDefinition2 tag <br/>
-	<b>altKey:</b> ${My.altKey}
-	</div>
-</script>
-
-
-
-    <script type="text/os-template">
-<h1>os:Var Test Cases</h1>
-<p>
-Testing var "foo"
-</p>
-<p>Before set: ${foo}</p>
-<os:Var key="foo" value="0" />
-<p>Initial set: ${foo}</p>
-<os:Var key="foo" >${foo + 1}</os:Var>
-<p>Added one with EL: ${foo}</p>
-
-<os:Var key="sum" value="0" />
-<h3>Looping increment to sum</h3>
-        <os:Repeat expression="${Top.myfriends}">
-<os:Var key="sum" value="${sum+1}" />
-          <div>
-		  Item: ${Context.Index} is ${Cur.displayName}
-		  </div>
-        </os:Repeat>
-<p>Sum: ${sum}</p>
-
-<hr />
-<h2>Custom Tags</h2>
-<vartest:Embedded someVal="Created with attr param" />
-<vartest:Embedded >
-<someVal>Created with Element Param</someVal>
-</vartest:Embedded>
-
-<vartest:Embedded >
-<os:Var key="someVal">osVar registered value</os:Var>
-</vartest:Embedded>
-
-<br style="clear:both;" />
-
-<vartest:InDefinition >
-<os:Var key="someVal">Any value will do here</os:Var>
-</vartest:InDefinition>
-
-<vartest:InDefinition2 >
-<os:Var key="someVal">Another value is good</os:Var>
-</vartest:InDefinition2>
-
-
-<br style="clear:both;" />
-<p>Deregistered altKey (should be empty): <span id='afterDeregKey'>${altKey}</span></p>
-
-
-<hr style="clear:left;" />
-<h2>Data Pipeline variables</h2>
-string: ${dpVar}
-
-<hr />
-<h2>Json Data</h2>
-
-jsonArrayVar.length: ${jsonArrayVar.length} <br/>
-jsonArrayVar[0]: ${jsonArrayVar[0]} <br/>
-jsonArrayVar[1]: ${jsonArrayVar[1]} <br/>
-jsonArrayVar[2]: ${jsonArrayVar[2]} <br/>
-
-
-jsonObjectVar.length: ${jsonObjectVar.length} <br/>
-jsonObjectVar.id: ${jsonObjectVar.id} <br/>
-jsonObjectVar.displayName: ${jsonObjectVar.displayName} <br/>
-
-<h4>Repeating Data</h4>
-<b>jsonArrayVar</b>
-<ul>
-<li repeat="jsonArrayVar">${Cur}</li>
-</ul>
-
-<b>jsonObjectVar</b>
-<ul>
-<li repeat="jsonObjectVar">${Cur}</li>
-</ul>
-
-
-<script type="text/javascript">
-
-function testKeyDeregistration(){
-	var el = document.getElementById("afterDeregKey");
-	if(el.innerHTML.length > 0){
-		el.style.backgroundColor="red";
-		el.style.color="white";
-	}
-	else{
-		el.style.backgroundColor="#CCFFCC;";
-	}
-}
-
-
-testKeyDeregistration();
-</script>
-	  </script>
-  </Content>
-</Module>
-
-
+<?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.
+-->
+<Module xmlns:os="http://ns.opensocial.org/2008/markup" xmlns:myspace="http://ns.opensocial.org/2008/x" xmlns:my="http://ns.opensocial.org/2008/z">
+  <ModulePrefs title="OsVar Test Gadget" description="Test cases on osVar"
+  thumbnail=""
+  >
+    <Require feature="opensocial-1.0"/>
+    <Require feature="opensocial-templates"/>
+  </ModulePrefs>
+  <Content type="html" view="canvas">
+    <script type="text/os-data">
+      <os:ViewerRequest key='vwr' />
+      <os:PeopleRequest key='myfriends' userid="@viewer" groupid="@friends" />
+      <os:Var key="dpVar" >I am registered with Data Pipeline</os:Var>
+      <os:Var key="jsonArrayVar" >[1,"one", "three"]</os:Var>
+      <os:Var key="jsonObjectVar" >{"id":'jsonId',"displayName":"faux Person"}</os:Var>
+    </script>
+
+
+    <script type="text/os-template" tag="vartest:Embedded">
+<div style="border:4px solid gray;padding:4px;margin:10px;float:left;">
+vartest:Embedded tag <br/>
+<b>My.someVal:</b> ${My.someVal}
+</div>
+    </script>
+
+
+<script type="text/os-template" tag="vartest:InDefinition">
+	<os:Var key="altKey" >Built altKey contains someVal: ${My.someVal}</os:Var>
+	<div style="border:4px solid red;padding:4px;margin:10px;float:left;">
+	vartest:InDefinition tag <br/>
+	<b>altKey:</b> ${altKey}
+	</div>
+</script>
+
+<script type="text/os-template" tag="vartest:InDefinition2">
+	<os:Var key="altKey" >Built altKey contains someVal: ${My.someVal}</os:Var>
+	<div style="border:4px solid orange;padding:4px;margin:10px;float:left;">
+	vartest:InDefinition2 tag <br/>
+	<b>altKey:</b> ${My.altKey}
+	</div>
+</script>
+
+
+
+    <script type="text/os-template">
+<h1>os:Var Test Cases</h1>
+<p>
+Testing var "foo"
+</p>
+<p>Before set: ${foo}</p>
+<os:Var key="foo" value="0" />
+<p>Initial set: ${foo}</p>
+<os:Var key="foo" >${foo + 1}</os:Var>
+<p>Added one with EL: ${foo}</p>
+
+<os:Var key="sum" value="0" />
+<h3>Looping increment to sum</h3>
+        <os:Repeat expression="${Top.myfriends}">
+<os:Var key="sum" value="${sum+1}" />
+          <div>
+		  Item: ${Context.Index} is ${Cur.displayName}
+		  </div>
+        </os:Repeat>
+<p>Sum: ${sum}</p>
+
+<hr />
+<h2>Custom Tags</h2>
+<vartest:Embedded someVal="Created with attr param" />
+<vartest:Embedded >
+<someVal>Created with Element Param</someVal>
+</vartest:Embedded>
+
+<vartest:Embedded >
+<os:Var key="someVal">osVar registered value</os:Var>
+</vartest:Embedded>
+
+<br style="clear:both;" />
+
+<vartest:InDefinition >
+<os:Var key="someVal">Any value will do here</os:Var>
+</vartest:InDefinition>
+
+<vartest:InDefinition2 >
+<os:Var key="someVal">Another value is good</os:Var>
+</vartest:InDefinition2>
+
+
+<br style="clear:both;" />
+<p>Deregistered altKey (should be empty): <span id='afterDeregKey'>${altKey}</span></p>
+
+
+<hr style="clear:left;" />
+<h2>Data Pipeline variables</h2>
+string: ${dpVar}
+
+<hr />
+<h2>Json Data</h2>
+
+jsonArrayVar.length: ${jsonArrayVar.length} <br/>
+jsonArrayVar[0]: ${jsonArrayVar[0]} <br/>
+jsonArrayVar[1]: ${jsonArrayVar[1]} <br/>
+jsonArrayVar[2]: ${jsonArrayVar[2]} <br/>
+
+
+jsonObjectVar.length: ${jsonObjectVar.length} <br/>
+jsonObjectVar.id: ${jsonObjectVar.id} <br/>
+jsonObjectVar.displayName: ${jsonObjectVar.displayName} <br/>
+
+<h4>Repeating Data</h4>
+<b>jsonArrayVar</b>
+<ul>
+<li repeat="jsonArrayVar">${Cur}</li>
+</ul>
+
+<b>jsonObjectVar</b>
+<ul>
+<li repeat="jsonObjectVar">${Cur}</li>
+</ul>
+
+
+<script type="text/javascript">
+
+function testKeyDeregistration(){
+	var el = document.getElementById("afterDeregKey");
+	if(el.innerHTML.length > 0){
+		el.style.backgroundColor="red";
+		el.style.color="white";
+	}
+	else{
+		el.style.backgroundColor="#CCFFCC;";
+	}
+}
+
+
+testKeyDeregistration();
+</script>
+	  </script>
+  </Content>
+</Module>
+
+

Propchange: shindig/trunk/content/gadgets/compliance-1.0/osVarTestGadget.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/gadgets/compliance-1.0/osVarTestGadget.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: shindig/trunk/content/gadgets/compliance-1.0/ownerRequestViewerRequest.xml
URL: http://svn.apache.org/viewvc/shindig/trunk/content/gadgets/compliance-1.0/ownerRequestViewerRequest.xml?rev=1036287&r1=1036286&r2=1036287&view=diff
==============================================================================
--- shindig/trunk/content/gadgets/compliance-1.0/ownerRequestViewerRequest.xml (original)
+++ shindig/trunk/content/gadgets/compliance-1.0/ownerRequestViewerRequest.xml Wed Nov 17 23:43:08 2010
@@ -1,42 +1,42 @@
-<?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.
--->
-<Module>
-  <ModulePrefs title="Testing Owner and Viewer" 
-  description="Often the values of owner and viewer will be the same"
->
-    <Require feature="opensocial-1.0"/>
-  </ModulePrefs>
-  <Content type="html" view="canvas">
-    <script xmlns:os="http://ns.opensocial.org/2008/markup" type="text/os-data">
-      <os:ViewerRequest key="vwr" fields="@all" />
-      <os:OwnerRequest key="owner" fields="@all" />
-   </script>
-    <script  type="text/os-template">
-    <h2>Owner Viewer Request App</h2>
-	
-	Viewer Name: ${vwr.displayName} <br/>
-	<p>
-	Owner Name: ${owner.displayName}
-	</p>
-	
-	
-    </script>
-  </Content>
+<?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.
+-->
+<Module>
+  <ModulePrefs title="Testing Owner and Viewer" 
+  description="Often the values of owner and viewer will be the same"
+>
+    <Require feature="opensocial-1.0"/>
+  </ModulePrefs>
+  <Content type="html" view="canvas">
+    <script xmlns:os="http://ns.opensocial.org/2008/markup" type="text/os-data">
+      <os:ViewerRequest key="vwr" fields="@all" />
+      <os:OwnerRequest key="owner" fields="@all" />
+   </script>
+    <script  type="text/os-template">
+    <h2>Owner Viewer Request App</h2>
+	
+	Viewer Name: ${vwr.displayName} <br/>
+	<p>
+	Owner Name: ${owner.displayName}
+	</p>
+	
+	
+    </script>
+  </Content>
 </Module>
\ No newline at end of file

Propchange: shindig/trunk/content/gadgets/compliance-1.0/ownerRequestViewerRequest.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/gadgets/compliance-1.0/ownerRequestViewerRequest.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: shindig/trunk/content/gadgets/compliance-1.0/sampleAlbumAndContents.xml
URL: http://svn.apache.org/viewvc/shindig/trunk/content/gadgets/compliance-1.0/sampleAlbumAndContents.xml?rev=1036287&r1=1036286&r2=1036287&view=diff
==============================================================================
--- shindig/trunk/content/gadgets/compliance-1.0/sampleAlbumAndContents.xml (original)
+++ shindig/trunk/content/gadgets/compliance-1.0/sampleAlbumAndContents.xml Wed Nov 17 23:43:08 2010
@@ -1,47 +1,47 @@
-<?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.
--->
-<Module xmlns:os="http://ns.opensocial.org/2008/markup" >
-  <ModulePrefs title="First photo album app" description="Media items using EL in the data pipeline call">
-    <Require feature="opensocial-1.0"/>
-    <Require feature="opensocial-templates"/>
-  </ModulePrefs>
-  <Content type="html" view="canvas">
-    <script type="text/os-data">
-	<os:ViewerRequest key='vwr' />
-	<os:AlbumsRequest key='myalbums' userid="@viewer" groupid="@self" />
-	<os:MediaItemsRequest key='mediaItems' userid="@viewer" groupid="@self" albumid="${myalbums[0].id}" />
-    </script>
- 
-    <script type="text/os-template">
-<h1>First photos for ${vwr.displayName}</h1>
- 
-<h2>Contents of album: ${myalbums[0].caption}</h2>
- 
-<os:Repeat expression="${mediaItems}">
-  <div class="photo">
-    <img src="${Cur.thumbnailUrl}" />
-    Photo: ${Cur.title} 
-  </div>
-</os:Repeat>
-	  </script>
-  </Content>
- 
-</Module>
-
+<?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.
+-->
+<Module xmlns:os="http://ns.opensocial.org/2008/markup" >
+  <ModulePrefs title="First photo album app" description="Media items using EL in the data pipeline call">
+    <Require feature="opensocial-1.0"/>
+    <Require feature="opensocial-templates"/>
+  </ModulePrefs>
+  <Content type="html" view="canvas">
+    <script type="text/os-data">
+	<os:ViewerRequest key='vwr' />
+	<os:AlbumsRequest key='myalbums' userid="@viewer" groupid="@self" />
+	<os:MediaItemsRequest key='mediaItems' userid="@viewer" groupid="@self" albumid="${myalbums[0].id}" />
+    </script>
+ 
+    <script type="text/os-template">
+<h1>First photos for ${vwr.displayName}</h1>
+ 
+<h2>Contents of album: ${myalbums[0].caption}</h2>
+ 
+<os:Repeat expression="${mediaItems}">
+  <div class="photo">
+    <img src="${Cur.thumbnailUrl}" />
+    Photo: ${Cur.title} 
+  </div>
+</os:Repeat>
+	  </script>
+  </Content>
+ 
+</Module>
+

Propchange: shindig/trunk/content/gadgets/compliance-1.0/sampleAlbumAndContents.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/gadgets/compliance-1.0/sampleAlbumAndContents.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/content/samplecontainer/examples/ActivityStreams/ActivityStreamGadget.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/ActivityStreams/ActivityStreamGadget.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/content/samplecontainer/examples/ActivityStreams/ActivityStreamTemplate.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/ActivityStreams/ActivityStreamTemplate.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/content/samplecontainer/examples/ActivityStreams/ActivityStreamsRender.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/ActivityStreams/ActivityStreamsRender.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/content/samplecontainer/examples/ActivityStreams/OpenSocialWrapper.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/ActivityStreams/OpenSocialWrapper.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/content/samplecontainer/examples/ContainerPublish.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/ContainerPublish.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/content/samplecontainer/examples/FlashBridgeCajaExample.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/FlashBridgeCajaExample.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/content/samplecontainer/examples/FlashCajaExample.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/FlashCajaExample.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: shindig/trunk/content/samplecontainer/examples/commoncontainer/index.html
URL: http://svn.apache.org/viewvc/shindig/trunk/content/samplecontainer/examples/commoncontainer/index.html?rev=1036287&r1=1036286&r2=1036287&view=diff
==============================================================================
--- shindig/trunk/content/samplecontainer/examples/commoncontainer/index.html (original)
+++ shindig/trunk/content/samplecontainer/examples/commoncontainer/index.html Wed Nov 17 23:43:08 2010
@@ -1,130 +1,130 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!--
- * 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.
--->
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
-<head>
-
-<!-- My OpenSocial Beginnings -->
-<link rel="stylesheet" href="/container/gadgets.css">
-<script type="text/javascript"
-	src="/gadgets/js/container:rpc:pubsub-2.js?c=1&debug=1&container=default""></script>
-<script
-	src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
-<script
-	src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>
-<link rel="stylesheet"
-	href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/cupertino/jquery-ui.css"
-	type="text/css" media="all" />
-<script type="text/javascript" src="./testContainer.js"></script>
-<script type="text/javascript" src="./testGadgets.js"></script>
-<script type="text/javascript" src="./layout.js"></script>
-
-<style>
-#content {
-	display: table;
-	width: 100%;
-}
-
-#testArea {
-	display: table-cell;
-	width: 75%;
-	padding-left:22px;
-}
-
-#controlPanel {
-	display: table-cell;
-	width: 25%;
-}
-
-</style>
-</head>
-
-
-<body onLoad="CommonContainer.init();">
-<!--  Need to add in an improved header with links to specification -->
-<a href="http://www.opensocial.org/"><img alt="OpenSocial" src="http://api.ning.com/files/chwE7fbkJ5D1q8NSzNCYJzzCqOiuo3xYyToZCsYuY0SViOKQ7EG-3UUv4KFSxOMACbIzs3oWtD076*cbEL-*ABd9hCO0p7Al/opensocialsitelogo1.png?width=288&amp;height=70&amp;xn_auth=no&amp;type=png"></a><div id="content">
-
-<div id="controlPanel">
-
-<div id="accordionResizerControls"
-	style="padding: 10px; width: 100%; height: 100%;"
-	class="ui-widget-content">
-
-<div id="accordionGadgetControls">
-<h3><a href="#">Manage Gadgets</a></h3>
-<div>
-
-Enter the gadget url (ex.  http://localhost:8080/samplecontainer/SocialHelloWorld.xml)  and select 'Add' to render the gadget
-<br/>
-<input type="text"name="gadgetUrl" id="gadgetUrl" class="text ui-widget-content ui-corner-all" /> 
-
-<button id="addGadget">Add</button>
-<br/>
-<br/>
--OR-
-<br/>
-<br/>
-
-Pick from one of the collections and select Add Gadgets to render the associated gadgets 
-<br/>
-<select id="gadgetCollection"> </select>   <button id="addGadgets">Add Gadgets</button>
-   
-</div>
-</div>
-<span class="ui-icon ui-icon-grip-dotted-horizontal"
-	style="margin: 2px auto;"></span>
-<div id="accordionContainerControls">
-<h3><a href="#">Manage Container</a></h3>
-<div>More to come here with common container....</div>
-</div>
-</div>
-</div>
-
-<div id="testArea">
-<div id="accordionResizer"
-	style="padding: 10px; width: 100%; height: 650px;"
-	class="ui-widget-content">
-
-<div id="accordion">
-<h3><a href="#">Test Area</a></h3>
-<div>
-<div id="gadgetArea" class="column"> 
-</div>
-</div>
-</div>
-<span class="ui-icon ui-icon-grip-dotted-horizontal"
-	style="margin: 2px auto;"></span></div>
-
-<div id="accordionResizerEvents"
-	style="padding: 10px; width: 100%; height: 350px;"
-	class="ui-widget-content">
-
-<div id="accordionEvents">
-<h3><a href="#">events</a></h3>
-<div>
-<div id="output" class="column"></div>
-</div>
-
-</div>
-<span class="ui-icon ui-icon-grip-dotted-horizontal"
-	style="margin: 2px auto;"></span></div>
-</div>
-
-</body>
-</html>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!--
+ * 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.
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
+<head>
+
+<!-- My OpenSocial Beginnings -->
+<link rel="stylesheet" href="/container/gadgets.css">
+<script type="text/javascript"
+	src="/gadgets/js/container:rpc:pubsub-2.js?c=1&debug=1&container=default""></script>
+<script
+	src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
+<script
+	src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>
+<link rel="stylesheet"
+	href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/cupertino/jquery-ui.css"
+	type="text/css" media="all" />
+<script type="text/javascript" src="./testContainer.js"></script>
+<script type="text/javascript" src="./testGadgets.js"></script>
+<script type="text/javascript" src="./layout.js"></script>
+
+<style>
+#content {
+	display: table;
+	width: 100%;
+}
+
+#testArea {
+	display: table-cell;
+	width: 75%;
+	padding-left:22px;
+}
+
+#controlPanel {
+	display: table-cell;
+	width: 25%;
+}
+
+</style>
+</head>
+
+
+<body onLoad="CommonContainer.init();">
+<!--  Need to add in an improved header with links to specification -->
+<a href="http://www.opensocial.org/"><img alt="OpenSocial" src="http://api.ning.com/files/chwE7fbkJ5D1q8NSzNCYJzzCqOiuo3xYyToZCsYuY0SViOKQ7EG-3UUv4KFSxOMACbIzs3oWtD076*cbEL-*ABd9hCO0p7Al/opensocialsitelogo1.png?width=288&amp;height=70&amp;xn_auth=no&amp;type=png"></a><div id="content">
+
+<div id="controlPanel">
+
+<div id="accordionResizerControls"
+	style="padding: 10px; width: 100%; height: 100%;"
+	class="ui-widget-content">
+
+<div id="accordionGadgetControls">
+<h3><a href="#">Manage Gadgets</a></h3>
+<div>
+
+Enter the gadget url (ex.  http://localhost:8080/samplecontainer/SocialHelloWorld.xml)  and select 'Add' to render the gadget
+<br/>
+<input type="text"name="gadgetUrl" id="gadgetUrl" class="text ui-widget-content ui-corner-all" /> 
+
+<button id="addGadget">Add</button>
+<br/>
+<br/>
+-OR-
+<br/>
+<br/>
+
+Pick from one of the collections and select Add Gadgets to render the associated gadgets 
+<br/>
+<select id="gadgetCollection"> </select>   <button id="addGadgets">Add Gadgets</button>
+   
+</div>
+</div>
+<span class="ui-icon ui-icon-grip-dotted-horizontal"
+	style="margin: 2px auto;"></span>
+<div id="accordionContainerControls">
+<h3><a href="#">Manage Container</a></h3>
+<div>More to come here with common container....</div>
+</div>
+</div>
+</div>
+
+<div id="testArea">
+<div id="accordionResizer"
+	style="padding: 10px; width: 100%; height: 650px;"
+	class="ui-widget-content">
+
+<div id="accordion">
+<h3><a href="#">Test Area</a></h3>
+<div>
+<div id="gadgetArea" class="column"> 
+</div>
+</div>
+</div>
+<span class="ui-icon ui-icon-grip-dotted-horizontal"
+	style="margin: 2px auto;"></span></div>
+
+<div id="accordionResizerEvents"
+	style="padding: 10px; width: 100%; height: 350px;"
+	class="ui-widget-content">
+
+<div id="accordionEvents">
+<h3><a href="#">events</a></h3>
+<div>
+<div id="output" class="column"></div>
+</div>
+
+</div>
+<span class="ui-icon ui-icon-grip-dotted-horizontal"
+	style="margin: 2px auto;"></span></div>
+</div>
+
+</body>
+</html>

Propchange: shindig/trunk/content/samplecontainer/examples/commoncontainer/index.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/commoncontainer/index.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Propchange: shindig/trunk/content/samplecontainer/examples/commoncontainer/layout.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/commoncontainer/layout.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/content/samplecontainer/examples/commoncontainer/testContainer.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/commoncontainer/testContainer.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/content/samplecontainer/examples/commoncontainer/testGadgets.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/commoncontainer/testGadgets.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/content/samplecontainer/examples/media/Media.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/media/Media.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/content/samplecontainer/examples/media/MediaUI.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/media/MediaUI.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/content/samplecontainer/examples/media/Social.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/media/Social.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/content/samplecontainer/examples/media/styles.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/content/samplecontainer/examples/media/styles.css
------------------------------------------------------------------------------
    svn:mime-type = text/css

Propchange: shindig/trunk/content/samplecontainer/examples/shindigoauth.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/etc/check_staged_release.sh
------------------------------------------------------------------------------
    svn:executable = *

Propchange: shindig/trunk/etc/check_staged_release.sh
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: shindig/trunk/extras/NOTICE
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/NOTICE
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: shindig/trunk/extras/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/ShindigExtrasGuiceModule.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/as/ActivityStreamsGuiceModule.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/as/core/model/ActionLinkImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/as/core/model/ActivityEntryImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/as/core/model/ActivityObjectImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/as/core/model/MediaLinkImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/as/core/model/StandardLinkImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/as/opensocial/model/ActionLink.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/as/opensocial/model/ActivityEntry.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/as/opensocial/model/ActivityObject.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/as/opensocial/model/MediaLink.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/as/opensocial/model/StandardLink.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/as/opensocial/service/ActivityStreamsHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/as/opensocial/spi/ActivityStreamService.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/java/org/apache/shindig/extras/as/sample/ActivityStreamsJsonDbService.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/features.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/features.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/billingitem.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/billingitem.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/container.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/container.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/jsoncontainer.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/jsoncontainer.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/jsonpayment.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/jsonpayment.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/opensocial.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/opensocial.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/payment.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/payment.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/paymentprocessor.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/opensocial-payment/paymentprocessor.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/org.jquery.core-1.4.2/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/org.jquery.core-1.4.2/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/org.openajax.hub-2.0.5/OpenAjax-mashup.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/org.openajax.hub-2.0.5/OpenAjax-mashup.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/org.openajax.hub-2.0.5/crypto.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/org.openajax.hub-2.0.5/crypto.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/org.openajax.hub-2.0.5/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/org.openajax.hub-2.0.5/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/org.openajax.hub-2.0.5/iframe.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/org.openajax.hub-2.0.5/iframe.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/pubsub-2/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/pubsub-2/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/pubsub-2/pubsub-2-router.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/pubsub-2/pubsub-2-router.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/pubsub-2/pubsub-2.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/pubsub-2/pubsub-2.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/pubsub-2/taming.js
------------------------------------------------------------------------------
--- svn:mime-type (original)
+++ svn:mime-type Wed Nov 17 23:43:08 2010
@@ -1 +1 @@
-text/html
+text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/base.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/base.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/dynamic-width.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/dynamic-width.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/externs.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/externs.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/fake_gadgets.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/fake_gadgets.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/participant.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/participant.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/state.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/state.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/util.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/util.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/wave.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/wave.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/wave.ui.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/extras/src/main/javascript/features-extras/wave/wave.ui.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Modified: shindig/trunk/features/NOTICE
URL: http://svn.apache.org/viewvc/shindig/trunk/features/NOTICE?rev=1036287&r1=1036286&r2=1036287&view=diff
==============================================================================
--- shindig/trunk/features/NOTICE (original)
+++ shindig/trunk/features/NOTICE Wed Nov 17 23:43:08 2010
@@ -1,25 +1,25 @@
-Apache Shindig
-Copyright 2010 The Apache Software Foundation
-
-This product includes software developed at
-The Apache Software Foundation (http://www.apache.org/).
-
------------------------------------------------------------
-
-This product includes software (Gadget Server, Gadget Container)
-originally developed by Google Inc. (http://code.google.com/) and licensed
-to the ASF as initial contribution for Shindig.
-
-This product includes software developed at
-The Apache Software Foundation (http://www.apache.org/).
-
-This product includes software (JSUnit) developed by
-Joerg Schaible (http://jsunit.berlios.de/).
-
-This product includes software (swfobject) developed by
-Geoff Stearns, Michael Williams, and Bobby van der Sluis (http://code.google.com/p/swfobject/)
-
-This product includes software (opensocial-resources) developed by
-The OpenSocial Foundation (http://opensocial-resources.googlecode.com/svn/spec/0.8/)
-
-This product contains software (sha1 JS impl) developed by Google Inc.
+Apache Shindig
+Copyright 2010 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+
+-----------------------------------------------------------
+
+This product includes software (Gadget Server, Gadget Container)
+originally developed by Google Inc. (http://code.google.com/) and licensed
+to the ASF as initial contribution for Shindig.
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+
+This product includes software (JSUnit) developed by
+Joerg Schaible (http://jsunit.berlios.de/).
+
+This product includes software (swfobject) developed by
+Geoff Stearns, Michael Williams, and Bobby van der Sluis (http://code.google.com/p/swfobject/)
+
+This product includes software (opensocial-resources) developed by
+The OpenSocial Foundation (http://opensocial-resources.googlecode.com/svn/spec/0.8/)
+
+This product contains software (sha1 JS impl) developed by Google Inc.

Propchange: shindig/trunk/features/NOTICE
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/NOTICE
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: shindig/trunk/features/src/main/javascript/features/caja-debug/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/caja-debug/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/caja/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/caja/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/com.google.gadgets.analytics/analytics.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/com.google.gadgets.analytics/analytics.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/com.google.gadgets.analytics/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/com.google.gadgets.analytics/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/com.google.gadgets.analytics/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/com.google.gadgets.analytics/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/container/constant.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/container/constant.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/container/container.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/container/container.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/container/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/container/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/container/gadget_holder.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/container/gadget_holder.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/container/gadget_site.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/container/gadget_site.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/container/init.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/container/init.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/container/service.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/container/service.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/container/util.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/container/util.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/content-rewrite/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/content-rewrite/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/core.config/configcontainer.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/core.config/configcontainer.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/core.config/configgadget.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/core.config/configgadget.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/core.config/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/core.config/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/core.io/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/core.io/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/core.json/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/core.json/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/core.json/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/core.json/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/core.legacy/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/core.legacy/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/core.log/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/core.log/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/core.log/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/core.log/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/core.none/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/core.none/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/core.prefs/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/core.prefs/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/core.prefs/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/core.prefs/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/core.util/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/core.util/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/core.util/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/core.util/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/dynamic-height.util/dynamic-height-util.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/dynamic-height.util/dynamic-height-util.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/dynamic-height.util/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/dynamic-height.util/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/dynamic-height/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/dynamic-height/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/flash/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/flash/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/globals/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/globals/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/globals/globals.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/globals/globals.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/i18n/data/DateTimeConstants__bo.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/i18n/data/DateTimeConstants__bo.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/i18n/data/DateTimeConstants__bo_CN.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/i18n/data/DateTimeConstants__bo_CN.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/i18n/data/DateTimeConstants__bo_IN.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/i18n/data/DateTimeConstants__bo_IN.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/jsondom/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/jsondom/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/jsondom/jsondom.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/jsondom/jsondom.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/minimessage/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/minimessage/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/opensocial-0.9/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/opensocial-1.0/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/opensocial-1.0/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/opensocial-base/jsonalbum.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/opensocial-base/jsonalbum.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/opensocial-base/jsonmediaitem.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/opensocial-base/jsonmediaitem.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/opensocial-data-context/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/opensocial-data-context/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/opensocial-reference/album.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/opensocial-reference/album.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/opensocial-reference/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/opensocial-reference/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/osapi/gadgetsrpctransport.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/osapi/gadgetsrpctransport.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/osapi/jsonrpctransport.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/osapi/jsonrpctransport.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/osapi/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/osapi/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/osml/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/osml/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/pubsub/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/pubsub/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/rpc/fe.transport.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/rpc/fe.transport.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/rpc/ifpc.transport.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/rpc/ifpc.transport.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/rpc/nix.transport.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/rpc/nix.transport.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/rpc/rmr.transport.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/rpc/rmr.transport.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/rpc/wpm.transport.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/rpc/wpm.transport.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/security-token/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/security-token/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/settitle/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/settitle/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.auth/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.auth/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.container-1.0/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.container-1.0/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.container/cookiebaseduserprefstore.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.container/cookiebaseduserprefstore.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.container/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.container/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.container/osapi.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.container/osapi.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.random/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.random/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.random/random.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.random/random.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.random/sha1.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.random/sha1.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.uri.ext/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.uri.ext/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.uri.ext/util.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.uri.ext/util.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.uri/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.uri/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.uri/uri.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.uri/uri.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.xhrwrapper/feature.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.xhrwrapper/feature.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.xhrwrapper/xhrwrapper.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/shindig.xhrwrapper/xhrwrapper.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/skins/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/skins/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript

Propchange: shindig/trunk/features/src/main/javascript/features/tabs/taming.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: shindig/trunk/features/src/main/javascript/features/tabs/taming.js
------------------------------------------------------------------------------
    svn:mime-type = text/javascript