changing the name from Tentia to bungloo
This commit is contained in:
parent
95804089db
commit
5d8e114b7c
39 changed files with 371 additions and 176 deletions
|
@ -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",
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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();
|
||||
|
||||
});
|
||||
|
||||
|
|
Reference in a new issue