removed mods directory from the ATutor codebase
[atutor.git] / mods / social / lib / js / myContainer.bak
diff --git a/mods/social/lib/js/myContainer.bak b/mods/social/lib/js/myContainer.bak
deleted file mode 100644 (file)
index 77524ea..0000000
+++ /dev/null
@@ -1,146 +0,0 @@
-/*
- * 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.
- */
-
-// Default container configuration. To change the configuration, you have two options:
-//
-// A. If you run the Java server: Create your own "myContainer.js" file and
-// modify the value in web.xml. 
-//
-//  B. If you run the PHP server: Create a myContainer.js, copy the contents of container.js to it,
-//  change 
-//             {"gadgets.container" : ["default"],
-//  to
-//             {"gadgets.container" : ["myContainer"],
-// And make your changes that you need to myContainer.js.
-// Just make sure on the iframe URL you specify &container=myContainer 
-// for it to use that config. 
-//
-// All configurations will automatically inherit values from this
-// config, so you only need to provide configuration for items
-// that you require explicit special casing for.
-//
-// Please namespace your attributes using the same conventions
-// as you would for javascript objects, e.g. gadgets.features
-// rather than "features".
-
-// NOTE: Please _don't_ leave trailing commas because the php json parser
-// errors out on this.
-
-// Container must be an array; this allows multiple containers
-// to share configuration.
-{"gadgets.container" : ["myContainer"],
-
-// Set of regular expressions to validate the parent parameter. This is
-// necessary to support situations where you want a single container to support
-// multiple possible host names (such as for localized domains, such as
-// <language>.example.org. If left as null, the parent parameter will be
-// ignored; otherwise, any requests that do not include a parent
-// value matching this set will return a 404 error.
-"gadgets.parent" : null,
-
-// Should all gadgets be forced on to a locked domain?
-"gadgets.lockedDomainRequired" : false,
-
-// DNS domain on which gadgets should render.
-"gadgets.lockedDomainSuffix" : "-a.example.com:8080",
-
-// Various urls generated throughout the code base.
-// iframeBaseUri will automatically have the host inserted
-// if locked domain is enabled and the implementation supports it.
-// query parameters will be added.
-"gadgets.iframeBaseUri" : "/php/gadgets/ifr",
-
-// jsUriTemplate will have %host% and %js% substituted.
-// No locked domain special cases, but jsUriTemplate must
-// never conflict with a lockedDomainSuffix.
-"gadgets.jsUriTemplate" : "http://%host%/php/gadgets/js/%js%",
-
-// Use an insecure security token by default
-"gadgets.securityTokenType" : "insecure",
-
-// Config param to load Opensocial data for social
-// preloads in data pipelining.  %host% will be
-// substituted with the current host.
-"gadgets.osDataUri" : "http://%host%/php/social/rpc",
-
-// Uncomment these to switch to a secure version
-// 
-//"gadgets.securityTokenType" : "secure",
-//"gadgets.securityTokenKeyFile" : "/path/to/key/file.txt",
-
-// This config data will be passed down to javascript. Please
-// configure your object using the feature name rather than
-// the javascript name.
-
-// Only configuration for required features will be used.
-// See individual feature.xml files for configuration details.
-"gadgets.features" : {
-  "core.io" : {
-    // Note: /proxy is an open proxy. Be careful how you expose this!
-    "proxyUrl" : "http://%host%/php/gadgets/proxy?refresh=%refresh%&url=%url%",
-    "jsonProxyUrl" : "http://%host%/php/gadgets/makeRequest"
-  },
-  "views" : {
-    "profile" : {
-      "isOnlyVisible" : false,
-      "urlTemplate" : "http://localhost/php/gadgets/profile?{var}",
-      "aliases": ["DASHBOARD", "default"]
-    },
-    "canvas" : {
-      "isOnlyVisible" : true,
-      "urlTemplate" : "http://localhost/php/gadgets/canvas?{var}",
-      "aliases" : ["FULL_PAGE"]
-    }
-  },
-  "rpc" : {
-    // Path to the relay file. Automatically appended to the parent
-    /// parameter if it passes input validation and is not null.
-    // This should never be on the same host in a production environment!
-    // Only use this for TESTING!
-    "parentRelayUrl" : "/php/gadgets/files/container/rpc_relay.html",
-
-    // If true, this will use the legacy ifpc wire format when making rpc
-    // requests.
-    "useLegacyProtocol" : false
-  },
-  // Skin defaults
-  "skins" : {
-    "properties" : {
-      "BG_COLOR": "",
-      "BG_IMAGE": "",
-      "BG_POSITION": "",
-      "BG_REPEAT": "",
-      "FONT_COLOR": "",
-      "ANCHOR_COLOR": ""
-    }
-  },
-  "opensocial-0.8" : {
-    // Path to fetch opensocial data from
-    // Must be on the same domain as the gadget rendering server
-    "impl" : "rpc",  //Use "rpc" to enable JSON-RPC, "rest' for REST
-    "path" : "http://%host%/php/social",
-    "domain" : "shindig",
-    "enableCaja" : false,
-    "supportedFields" : {
-       "person" : ["id", {"name" : ["familyName", "givenName", "unstructured"]}, "thumbnailUrl", "profileUrl"],
-       "activity" : ["id", "title"]
-    }
-  }
-
-}}