SHINDIG-1056 by lipeng, BasicRemoteContentTest doesn't depend on static private key...
[shindig.git] / javascript / samplecontainer / examples / templates / FlashTag.xml
blob2583fca034fe80e41e28fdd8e9808833bad571fb
1 <!--
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements.  See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership.  The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License.  You may obtain a copy of the License at
9  *
10  *   http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied.  See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18 -->
19 <Module>
20   <ModulePrefs title="FlashTagTest">
21     <Require feature="opensocial-data"/>
22     <Require feature="opensocial-templates">
23       <Param name="process-on-server">true</Param>
24     </Require>
25   </ModulePrefs>
26   <Content type="html">
27     <![CDATA[
29     <script xmlns:os="http://ns.opensocial.org/2008/markup" type="text/os-data">
30       <!--  Load the canonical user -->
31       <os:PeopleRequest key="me" userId="canonical"/>
32     </script>
34     <div>
35       <p>Simple test of flash, which will only load and play when the nested content is clicked</p>
36       <script xmlns:os="http://ns.opensocial.org/2008/markup" type="text/os-template">
37         <os:xFlash swf="http://www.adobe.com/shockwave/welcome/flash.swf" width="500px" height="500px" bgcolor="#123456" menu="false" play="onclick" flashvars="${os:xUrlEncode(me.id)}=${os:xUrlEncode(me.name.familyName)}">
38           <b><p>alternate content. Click me!</p></b>
39         </os:Flash>
40       </script>
41     </div>
42     <div>
43       <p>Flash which has internal network access, no script access, liveconnect</p>
44       <script xmlns:os="http://ns.opensocial.org/2008/markup" type="text/os-template">
45         <os:xFlash swf="http://swfobject.googlecode.com/svn/trunk/swfobject/test.swf" width="500px" height="500px" swliveconnect="false" allowscriptaccess="never" allownetworking="internal" play="immediate">
46           <p>alternate content</p>
47         </os:Flash>
48       </script>
49     </div>
50     ]]>
51   </Content>
52 </Module>