changing the name from Tentia to bungloo

This commit is contained in:
Jeena Paradies 2013-02-10 18:01:55 +01:00
parent 95804089db
commit 5d8e114b7c
39 changed files with 371 additions and 176 deletions

View file

@ -9,12 +9,12 @@ function(HostApp, Paths, Hmac) {
function Oauth() {
this.app_info = {
"id": null,
"name": "Tentia on " + HostApp.osType(),
"name": "bungloo on " + HostApp.osType(),
"description": "A small TentStatus client.",
"url": "http://jabs.nu/Tentia/",
"icon": "http://jabs.nu/Tentia/icon.png",
"url": "http://jabs.nu/bungloo/",
"icon": "http://jabs.nu/bungloo/icon.png",
"redirect_uris": [
"tentia://oauthtoken"
"bungloo://oauthtoken"
],
"scopes": {
"read_posts": "Uses posts to show them in a list",

View file

@ -12,7 +12,7 @@ function() {
}
CacheStorage.prototype.mkInternalPath = function(key) {
return "tentia-cache-" + this.name + key;
return "bungloo-cache-" + this.name + key;
};
CacheStorage.prototype.getItem = function(key) {

View file

@ -1,5 +1,5 @@
var tentia_instance;
var tentia_cache = {};
var bungloo_instance;
var bungloo_cache = {};
requirejs.config({
baseUrl: 'scripts'
@ -10,7 +10,7 @@ function start(view) {
if (view == "oauth") {
require(["controller/Oauth"], function(Oauth) {
tentia_instance = new Oauth();
bungloo_instance = new Oauth();
});
@ -18,7 +18,7 @@ function start(view) {
require(["controller/Timeline"], function(Timeline) {
tentia_instance = new Timeline();
bungloo_instance = new Timeline();
});
@ -26,7 +26,7 @@ function start(view) {
require(["controller/Mentions"], function(Mentions) {
tentia_instance = new Mentions();
bungloo_instance = new Mentions();
});
@ -34,7 +34,7 @@ function start(view) {
require(["controller/Profile"], function(Profile) {
tentia_instance = new Profile();
bungloo_instance = new Profile();
});
@ -44,7 +44,7 @@ function start(view) {
require(["controller/Conversation"], function(Conversation) {
tentia_instance = new Conversation();
bungloo_instance = new Conversation();
});