fixed small typos

This commit is contained in:
jeena 2012-11-18 03:01:09 +01:00
parent b6c94f23de
commit e211ed0c54
3 changed files with 13 additions and 13 deletions

View file

@ -17,7 +17,7 @@ class Tentia:
self.mentions = Windows.Timeline(self, "mentions", "Mentions")
if self.controller.stringForKey("user_access_token") != "":
self.logged_in_successfully(True)
self.authentification_succeded()
self.app.exec_()
@ -40,15 +40,6 @@ class Tentia:
self.timeline.show()
self.mentions.show()
def logged_in_successfully(self, success):
self.preferences.active(False)
if success:
self.preferences.hide()
self.timeline = Windows.Timeline(self)
self.timeline.show()
else:
print "not logged in"
class Controller(QtCore.QObject):
@ -109,6 +100,9 @@ class Console(QtCore.QObject):
def notice(self, string):
print "<js NOTICE>: " + string
@QtCore.pyqtSlot(str)
def debug(self, string):
print "<js DEBUG>: " + string
if __name__ == "__main__":

View file

@ -138,5 +138,4 @@ class Oauth:
def tentia_callback(self, url):
script = "tentia_instance.requestAccessToken('" + url.toString() + "');"
print script
self.core.page().mainFrame().evaluateJavaScript(script)

View file

@ -83,6 +83,13 @@ var console = {
} else {
__console.notice(s);
}
},
debug: function(s) {
if (OS_TYPE == "mac") {
alert("DEBUG: " + s);
} else {
__console.debug(s);
}
}
};
@ -99,14 +106,14 @@ function debug(string) {
string = JSON.stringify(string);
}
alert("DEBUG: " + string);
console.debug(string);
}
function go() { // wait untill everything is loaded
setTimeout(function() {
if (typeof HostAppGo != typeof __not_defined__) {
HostAppGo();
} else {