=== chriadam|away is now known as chriadam === chriadam is now known as chriadam|away [07:51] hello I am trying to write a program in python takes html and puts it into csv to be sorted, currently I haver to run two programs (mine) then html2csv.py that I downloaded. can I make my program call or run html2csv.py? [07:53] or would I have to add the code or html2csv into my code? [08:12] good morning [08:12] morning [08:13] do you mess with python much? === chihchun is now known as chihchun_afk [08:34] morning dholbach, I've got a treat for you: https://code.launchpad.net/~dpm/help-app/phone-navigation/+merge/253315 :) [08:34] nice, I'm looking forward to it :) [08:35] Morning all o/ [08:36] salut davidcalle [08:36] hey davidcalle :) [08:37] morning t1mp [08:38] t1mp, a question: what's the maximum number of tabs that can be shown in the new header? [08:38] (which is not actually that new anymore :) === chihchun_afk is now known as chihchun [08:41] dpm, hum [08:41] dpm, I'm not sure I understand how the UI is supposed to work [08:41] dpm, phone and web look the same [08:41] and I see no content [08:42] I'm not sure if I'm doing it wrong [08:42] dholbach, are you loading app/www/index.html? [08:42] yes [08:42] or web/index.html [08:42] I didn't modify web/ [08:43] it looks just the same [08:43] dholbach, what did you run, 'make html'? [08:43] yes [08:43] and 'make web' the second time [08:44] both pages look the same, I see the hamburger icon, no content and the navigation doesn't work [08:44] make web should not be needed, but make html should build the phone theme [08:44] let me try with a clean checkout just in case [08:45] ok cool [08:47] dpm: hi [08:48] dpm: the number of tabs is not restricted, but at some point they won't fit in the dropdown any more when you tap the tabs button [08:48] dpm: ^that's a bug. We need to make the dropdown scrollable [08:49] t1mp, ok, thanks, good to know. It seems the HTML5 toolkit does limit the number of tabs to 5, which is a bit of a pain when you've got 8 (which would fit on the screen). I was just trying to compare the behaviour with the QML one [08:50] dpm: 8 is a lot though. An alternative could be to have a home page that lists all the pages and use a PageStack to navigate [08:55] t1mp, indeed, but we were trying to keep the markup simple for the first release. I'm still not sure how to do navigation properly with the html5 toolkit, other than having tabs [08:59] dholbach, hm, it worked for me on a fresh checkout on utopic. Here's what I did: 1) checked out the branch 2) Ran 'make html' 3) Opened the app help.ubuntuhtmlproject file with the SDK 4) Chose a desktop kit when prompted 5) Hit the Play button on Qt Creator to start the app on the desktop [09:00] hum [09:00] ok, I'll start the SDK then [09:00] I'm wondering if it's an issue with utopic vs vivid again [09:00] the index.html file should definitely be the new one [09:01] right, index.html was updated [09:02] dholbach, another option is to cd to the www directory and run ubuntu-html5-app-launcher [09:03] that might be quicker [09:04] ok, that works now [09:04] \o/ [09:04] but a few things are broken [09:05] 1) there's a
missing after "Take me to the FAQ" [09:05] 2) if I click on "Take me to the FAQ", I get taken to that page, but the theme is gone [09:05] 3) the link to "Get in touch" doesn't work [09:06] 4) the SDK lists all .html pages (even the translated ones) - shouldn't it list the .md files? [09:06] let me change to a German desktop to see how that works [09:08] restarting my session, brb [09:10] dholbach, yeah 2) and 3) are the same issue I was mentioning in the description: I'm not sure how to load internal links to make them jump to the corresponding tab. I'm actually thinking of removing those 2 links from the front page for the phone theme [09:11] 1) will be addressed indirectly if we remove the two links [09:12] 4) Good point too. Let me see if I can add other filters to the project file [09:15] zbenjamin, morning. Do you know any documentation that explains the syntax of .qmlproject files? [09:16] zbenjamin, I'm trying to show index.md files on a project, but I'd like to filter out their translated versions: e.g. index.fr.md, index.de.md [09:18] dpm, how can I get it to show up in German now? [09:18] with the SDK method [09:24] dholbach, it should detect your language and show you the german pages already. I'm logging the detected language in the console, but I've not yet figured out how to show the console messages on the sdk [09:25] dpm, it looks like just loading the page in the browser doesn't work anymore [09:27] dpm, up until now we used to copy the small index.html (with the language selection) into ./web as well, after the 'web' build [09:27] that obviously won't work anymore [09:28] dholbach, yeah, it's because we're using ajax to load local pages. The app can either be loaded from the SDK or from a server. daker showed me yesterday how to do this: running python -m SimpleHTTPServer in the www folder, and then pointing the browser to localhost:8000 - that works well, but IIRC I had to adjust the path to the css and js files from index.html to point to theme/ as it didn't seem to work with the /usr/share paths [09:29] hum... ok [09:29] dholbach, ah, I hadn't realized that for the web theme. But in any case, the server would serve the index.$LANG.html file directly [09:29] right [10:05] dholbach, I've disabled links in that branch for now. I think moving forward we might need to look at a) how to open external links b) how to open internal links and related to that see if a PageStack is better suited for navigation instead of Tabs [10:06] by "disabled links" I mean nothing will happen when you tap on them [10:06] and on the front page they are not shown [10:07] right [10:08] dpm, do you know why opening index.html in either firefox or chromium doesn't work? [10:14] dholbach, we're using ajax to load each individual page and insert it into index.html. That's done via an XMLHttpRequest and on FFx and chromium that gives a cross-domain request error, which fails to load the page. I'm not an expert in web, so I'm not sure if there is a workaround. daker suggested to serve the index.html via a local server or use the html5 app launcher [10:14] dholbach, you can see the exact error if you open the JS console on FFx or chromium [10:14] ok, I see [10:15] in that case we're going to have to update our docs a bit [10:15] it would certainly make development easier. The sdk works well, but it's a bit of a pain not to be able to see the console.log() output [10:15] and maybe add something like "./launch-phone-app" or something [10:15] so people who don't use the SDK can easily start the app too [10:16] yes, it'd also give us all the tools to identify/fix js/css [10:16] I added some notes to the hacking doc, but that sounds like a good idea [10:16] identify issues [10:16] or even perhaps a 'make run-app' target? [10:16] sure [10:16] I'll have to change my workflow somewhat [10:16] I'll propose a branch to merge into yours [10:17] it shouldn't change the workflow for web, but yes, for phone we'll have to think of something that makes development easier [10:20] dholbach, also knowing that we can (relatively) easily modify the markup with JavaScript, I'm thinking that this is something that we could use to style the images as we want as an alternative to !!I [10:20] ok... [10:20] I'm not sure how to exactly do that [10:21] I can give it a go, but it's something we can try after v0.1 [10:22] for this release I tried this as I had more thoughts about the fact that we couldn't navigate between pages on the phone [10:22] how about the external links [10:23] do we know why they can't be launched? [10:23] no idea how to open them yet :/ Ideally, we'd launch the browser as QML apps do, but I don't know how to do it from an html5 app [10:24] maybe it just works on the device? [10:25] it didn't yesterday, but I did't spend much time on it. Let me try again. On the desktop, it loads the link inside the app, but there is no way to then go back to the app [10:28] oh yeah, so same behaviour on the phone: On the apps tab, the youtube video link is opened inside the app, but there is then no way to go back to the app [10:29] internal links also don't work it seems [10:29] does the TOC work for you? [10:31] I removed the TOC from the phone theme, as it wasn't very app-like [10:32] but left it for the web theme, where it's very useful [10:32] also bug 1433525 [10:32] bug 1433525 in Ubuntu HTML5 UI SDK "[html5 container] should provide a way to open links in the browser" [Medium,Triaged] https://launchpad.net/bugs/1433525 [10:34] but I guess I could bring back the TOC for the phone if it turns out to be useful there. I've been testing the app more and more with a real device to see what works and what doesn't [10:36] surprisingly the animated gif works quite well on the phone. I thought that'd be something more for the web version [10:36] images are automatically resized to fit the phone [10:39] dpm, https://code.launchpad.net/~dholbach/help-app/help.phone-navigation-fixes/+merge/253329 [10:48] dholbach, cool. Merged it already. I left a comment on the MP [10:50] dpm, I'm not sure I understand.... [10:50] dpm, I run 'make launch', the app opens, I play around with it, close it, then back on the terminal I just press 'enter' do get rid of messages which came up, and I'm done [10:51] the app is opened with '&' at the end [10:51] not sure... do you suggest I should drop the '&'? [10:51] dholbach, oh, I see. No, it's fine. [10:51] ok cool [10:52] dpm, did we file all the issues we talked about earlier as bugs? [10:53] I don't think so, no. Trying to debug a couple on #ubuntu-webapps now [10:53] ok [10:53] because I'm happy for us to merge your branch now [10:54] I just thought it'd be good to file all the bugs now and then see what we need to do next [10:55] dpm, ^ what do you think? [10:56] dholbach, that sounds good. So to recap: [10:57] - Need a way to open external links (blocked on bug 1433525) [10:57] bug 1433525 in Ubuntu HTML5 UI SDK "[html5 container] should provide a way to open links in the browser" [Medium,Triaged] https://launchpad.net/bugs/1433525 [10:57] I'll open a help-app task on that bug [10:57] - Need a way to open internal links (which perhaps means we need other type of navigation, e.g. PageStack) [10:57] - Only 5 tabs are shown (discussing now on #ubuntu-webapps) [10:58] - The title of the first tab is not updated on launching the app [10:59] mzanetti: quick question about that code coverage stuff we discussed yesterday: when i change something in the tests, and re-run the coverage-html target, it does not seem to pick up the new results. do i manually need to delete the old ones before ? [11:01] nerochiaro, at least you gotta re-run the test, but I remember there was something odd... I mostly wipe the build dir before creating a coverage report. [11:01] mzanetti: if i rerun the test it will not update the coverage report. I guess I'll just wipe it as part of the coverage target [11:02] yeah, that could work I guess [11:02] dpm, I filed a number of bugs, tagged them - feel free to adjust milestones/importance [11:03] cool, thanks! [11:03] dpm, shall I merge and push your branch? [11:03] dholbach, that'd be cool, thanks! [11:03] will do [11:05] dpm, is https://bugs.launchpad.net/help-app/+bug/1433228 fixed now? [11:05] Ubuntu bug 1433228 in Ubuntu Help App "Fix placement of images with phone theme" [Medium,In progress] [11:05] and with the other bugs filed is https://bugs.launchpad.net/help-app/+bug/1433170 also now fine to be closed? [11:05] Ubuntu bug 1433170 in Ubuntu Help App "Add navigation for the phone theme" [Critical,In progress] [11:06] dholbach, yes [11:07] ok [11:07] dpm, https://launchpad.net/help-app/+milestone/0.1 - we're done :) [11:07] party time!!! [11:07] all right - I'm going out for lunch now [11:07] and will do some more testing when I'm back [11:08] awesome === _salem is now known as salem_ [12:41] dpm, if I use "make launch", I get debug messages: [12:41] qml: [JS] (file:///home/daniel/dev/apps/help/app/www/index.html:87) Language: en-US [12:41] qml: [JS] (:0) Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check http://xhr.spec.whatwg.org/. [12:41] qml: [JS] (file:///home/daniel/dev/apps/help/app/www/index.html:94) No translations for en-US available. Fall back to en-us. [12:42] looks like I don't get 'de'? [12:45] popey, I'll merge dpm's branch in a bit [12:46] ok [12:46] dholbach, it seems your language is not detected properly [12:46] dpm, does it work for you? [12:46] it thinks your browser is set to en-US, and then it defaults to our en-us code [12:46] dpm, but that's with ubuntu-html5-app-launcher [12:47] dholbach, for me it detects the language properly as 'ca' [12:47] bizarre [12:47] dholbach, ah, wait, right, I was testing this with chromium yesterday [12:47] the only bit where I have 'en' set, is [12:47] declare -x LANGUAGE="de_DE:en_GB:en" [12:47] and there it's even after de_DE [12:48] dholbach, I think dbarth__ mentioned that the web container should set navigator.language correctly, so perhaps this means it doesn't? [12:49] I don't know [12:49] dbarth__, ^ do you know? [12:51] dholbach, I just asked on #ubuntu-webapps [13:00] dpm, merged [13:05] \o/ [14:04] dpm: what can I do to see other translation languages in lp on a project? I only see my native language on libqtelegram currently. [14:04] hi karni, there's a "View all languages" link to the right of the page, near the bottom, IIRC [14:05] dpm: ah! indeed, thank you :) [14:06] np [14:11] dholbach, dpm: this is a bug common to oxide and browser / container indeed [14:11] we do set the accept-language parameter correctly, ie for code running on servers queried by our webviews [14:12] but for JS code running locally, we don't; this is a bug [14:12] indeed [14:12] dbarth__, do you know if https://code.launchpad.net/~zaspire/oxide/navigator-language/+merge/253314 is targetted for vivid and rtm? [14:12] referenced by https://bugs.launchpad.net/oxide/+bug/1433472 [14:12] Ubuntu bug 1433472 in Ubuntu Help App "navigator.language does not work" [High,Triaged] [14:12] it should eventually, as part of the oxide updates [14:13] dpm, ^ [14:13] the question is whether this is a 1.5.x update (generally those are security updates only) or a 1.6 release (in ~1 week for the first one of this series) [14:13] should at least be a 1.6 [14:14] I see the issue with 1.5.5 [14:14] alex-abreu, dbarth__, is there a workaround we can use to load the translations for the help app in the meantime? [14:14] i.e. any other way to get hold of a locale from within an app? [14:15] without a patch to either oxide or the container, we can't really [14:15] argh [14:15] we don't have access to the accept-language setting at this level [14:16] but in the meantime you can provide a manual language selection maybe (drop-down list) [14:16] that's very 90s :) [14:16] which would still be useful, as users may want different languages [14:16] yeah, a bit 90s, admitedly [14:16] linux is not about choice, etc :) [14:16] well, you asked about solutions [14:17] linux isn't about translations either :) [14:17] i'm giving you the 90s version, while we work on the more modern one [14:17] thanks dbarth__ :) [14:17] GPU doesn't care what language you speak :P [14:17] :-) [14:18] dpm, here's something to enjoy your 90s with: http://cps-static.rovicorp.com/3/JPG_400/MI0001/394/MI0001394424.jpg?partner=allrovi.com [14:18] dpm: alex-abreu is thinking about another magic trick, but as a stop gap measure, i still suggest the list [14:20] dholbach, wasn't expecting anything less from you :) [14:20] that is barely the 90s [14:20] thanks dbarth__ [14:21] that picture might even be from the 80s :P [14:21] yeah, maybe :) === boiko_ is now known as boiko [14:46] dpm, I was looking at the app a bit more - do we all feel it's good enough for now? [14:46] Ubuntu touch HTML 5 how to create complex headers? | http://askubuntu.com/q/598309 [14:47] dholbach, I think it's awesome :) [14:47] dpm, do the values in the app description all make sense? [14:47] like in manifest.json etc [14:47] dpm, I don' have the keys to uploading it into the store as a core app [14:47] dholbach, there are more things we can do to make it more usable, but I'd say let's leave it for v0.2 [14:47] ok [14:48] let's go then :) [14:48] dholbach, I can give you the credentials, just a sec [14:48] I never wanted to. :) [14:48] but sure :) [14:49] while you get me set up, I'll test the app some more [14:51] dpm, on the phone and locally, I get "None" as the app title [14:53] dholbach, what do you mean by app title? Where do you expect to see it? [14:53] next to the hamburger icon [14:53] when it is launched [14:53] inside the ubuntu-html5-app-launcher window [14:53] dholbach, I don't see any hamburgers, are you sure you had lunch today? :) [14:53] hum... all the links are now called 'None' [14:54] link titles [14:54] the nav menu icon [14:55] ah, I see :) [14:56] bizarre, on a second run, it works [14:56] dholbach, still works well for me on the phone. For the desktop I used make launch and also worked. However, I'm still on utopic and on the desktop I've got the old header [14:57] at least it now worked on my desktop [14:57] on the phone it's still all "None" [14:57] dholbach, is this vivid on the phone? I'm testing on RTM devel-proposed [14:58] ok, that might be it [14:59] can somebody please test http://people.canonical.com/~dholbach/help_0.1_all.click on a phone using rtm? [14:59] and let me know if the nav titles all make sense? [15:02] dholbach, o/ i'm on rtm, i think they make sense ... is that at html5 app ? [15:02] yes [15:02] so they don't say "None" or anything? :) [15:02] dholbach, the tab menu seems a bit laggy/hit miss but otherwise its ok ... let me take a screeny [15:03] laggy = qtwebkit [15:03] fantastic, thanks ahayzen - if they don't say "None", I'm happy :) [15:03] dholbach, https://drive.google.com/file/d/0B3XynHVKfrvMcEo3cENlUUN5UG8 [15:03] that looks good to me :) [15:03] thanks a lot [15:04] dholbach, is there any reason/logic behind the ordering? [15:04] dpm, ^? [15:04] just 'most used' ... or how you would 'flow' through the device as a new user? [15:04] ahayzen, you mean when we threw the dice? :) [15:04] yeah [15:05] I think we put some thought on it when we started writing the content, [15:05] so it starts with Basic "first day" tasks [15:05] and then UI and settings [15:06] yeah it sortof makes sense :) [15:06] but I think we stopped at that and we could do a better assessment on the next release [15:07] and yeah, the ux is a bit laggy, but it's not too bad for what the app does, I think [15:07] maybe scopes before the store...as the store is a scope lol and as it mentions use the 'Apps scope' [15:07] good point :) [15:07] hmm [15:08] I wonder what is the best way to target a particular framework when _developing_ html5 apps, though [15:08] so that we don't get the mismatch dholbach and I got [15:08] oh you're not actually talking about the store/apps scopes [15:09] beuno, hey hey [15:09] beuno, I have another namespace question [15:09] dholbach, shoot [15:09] beuno, "The uploaded package name (help) does not use your namespace (ubuntucoredev)" - what should I do about that? [15:09] dobey, no, we were talking about the help app, which has sections with FAQs for apps, scopes and the store [15:09] beuno, the idea was to upload 'help' to the store [15:11] dpm: yeah, i just see "store scope" or "apps scope" and want to make sure it's not complaints or something :) [15:21] ot: hrm vivid isn't fun lately, ever since ff things break here and there… now I can't launch any apps or commands from the dash anymore [15:21] beuno, or should I ping somebody else about it? [15:22] dholbach, I don't understand [15:22] the namespace needs to be help.ubuntucoredev [15:22] beuno, it's supposed to be a core app [15:22] yeeees? [15:22] dpm, ^ [15:23] or does calculator actually have calculator.ubuntucoredev in its manifest? [15:23] not yet [15:23] it'll likely be the old namespace, com.ubuntu.....calculator [15:23] but yes [15:24] because they all predate these new name nonsense :) [15:24] s/nonesense/allsense! [15:24] potato/potato [15:24] ok, so I put help.ubuntucoredev in there and we're happy? [15:25] yeah [15:25] well, happy [15:25] I'd be happier if I got lunch as well [15:25] right [15:25] lunch is overrated [15:25] * dholbach hugs beuno [15:26] only after you've eaten it! [15:27] dholbach, sounds good to me [15:27] we will improve the UX for this namespace thing [15:28] thanks [15:30] dpm: what would you advise if the 'TRANSLATORS' hit comment is really long (I see it can't span more than one line, right?) [15:33] karni, you can break it as with any other comment, gettext will take that into account [15:33] it can span multiple lines [15:33] IIRC [15:33] dobey, ^ ? [15:33] dpm: I *think* it's not working, but I'll double check. [15:34] or maybe because i actually grepped without context. 1 sec [15:34] dpm: yeah, works fine :) cheers! [15:34] awesome :) [15:37] dpm: should I also wrap 'Telegram' string as translatable? I suppose there may be languages where it wouldn't be actually 'Telegram' (maybe Chinese, no idea) [15:40] dpm, https://bugs.launchpad.net/help-app/+bug/1433667 [15:40] Ubuntu bug 1433667 in Ubuntu Help App "[phone/rtm] can't scroll in navigation list" [Undecided,New] [15:40] dpm, do you see that too? [15:41] dholbach, this is because scrolling of headers is broken in the theme atm - daker gave me some details this morning [15:41] dpm, ok, so no show-stopper [15:41] do we have a bug against the ubuntu-html5-theme? [15:42] I don't think so, no [15:42] dholbach: it's qtwebkit :/ [15:42] so I target it against ubuntu-html5-theme too? [15:42] dholbach, "the issue that ubuntu-html5-launcher is using qtwebkit for some reason which doesn't recognize -webkit-overflow-scrolling: touch;" [15:42] ok, thanks [15:50] dpm, do you have an idea for a workaround? [15:52] dpm, popey suggested merging apps and store [15:52] I think that makes sense - it's just 3 more q/a pairs [15:52] dholbach, sounds good to me, that's inline with what ahayzen was suggesting too [15:53] * dholbach nods [15:53] thanks popey, thanks ahayzen [15:53] \o/ [15:53] also, remove the entire section on Security - nobody cares about that ㋛ [15:53] t1mp: zsombi who's up for an easy review? https://code.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/contentYabsY/+merge/253387 [15:53] kalikiana: me [15:53] \o/ [15:56] kalikiana: happroved :) [15:56] zsombi: thanks! [15:57] dpm, https://code.launchpad.net/~dholbach/help-app/1433667/+merge/253388 === boiko_ is now known as boiko [15:59] zsombi: I discovered a curious phenomenon, the handlers which are parented to the mainview, don't follow window rotation… they do if I change the parent… if you happy to have any ideas on why this would happen [16:00] kalikiana: hmm... parented explicitly, right? [16:00] zsombi: in staging the parent is QuickUtils.rootItem → if I change that to just handler.main they rotate fine [16:01] kalikiana: right... [16:01] hmm [16:02] kalikiana: no easy way to solve this... [16:02] kalikiana: especially that rootItem might be anything, not only MainView... [16:03] kalikiana: perhaps a separate func called QuickUtils.mainView() would be good [16:04] zsombi: it definitely is the mainview, this isn't a special case [16:04] zsombi: what's more, it isn't the mainview that rotates - the *window* rotates [16:04] kalikiana: well, is it? are you digging in teh OrientationHJelper? [16:05] kalikiana: that is used in few apps without MainView... [16:05] zsombi: the result of rootItem is clearly the mainview, again nothing special here, typical code [16:05] kalikiana: like camera [16:05] I haven't even gotten to any exceptions yet [16:06] kalikiana: is the handler.main also the MainView? [16:06] zsombi: no, handler.main is TextField [16:07] * kalikiana did not name that one ;-) [16:07] kalikiana: yeah.. .I'm lost :D [16:08] zsombi: naming aside the situation is this: the handlers parent to the mainview and that leads to them having the wrong orientation - and that's even though the window has contentOrientation, not the mainview or any other item [16:08] unless there is another level here that I'm not aware of… === boiko_ is now known as boiko [16:12] * kalikiana tries something [16:52] balloons, the problems with the app, is that on vivid? [16:52] balloons, and the app installed from the store? [16:52] looks fine here [16:53] http://people.canonical.com/~alan/screenshots/device-2015-03-18-165300.png [16:53] http://people.canonical.com/~alan/screenshots/device-2015-03-18-165312.png [16:53] dholbach, yes, on vivid it failed to load nicely [16:53] balloons: what image? [16:53] I can restart the app.. If I launch on the bq device I can actually see the same thing for a moment before it fills in [16:53] ubuntu-touch/vivid-proposed-customized-here 136 [16:57] r123 here [16:58] I don't know... do you think you can file a bug with more details? [16:58] I'll have to run in abit [16:58] on krillin I'm on r90, 14.10.. The interface there too is different than shown. I'll file some screenshots [16:59] thanks a lot balloons [16:59] I only blame myself. I installed it but never ran it last night and didn't think about it this morning [16:59] maybe somebody like dbarth__ or daker can help [16:59] sorry dholbach [16:59] don't worry [16:59] it's not like it's installed by default [16:59] or anything [16:59] and we'll have to do a few releases before we're 100% happy :) [17:01] all right... I'm going to check mails later on again, but I have to run now [17:01] have a great rest of your day! [17:01] balloons: what's the issue ? [17:01] well, balloons your phone is out of date, surely? [17:01] daker: balloons hasn't had enough coffee, that's the issue [17:02] :) [17:03] popey, I have no updates to apply [17:03] * davidcalle -> back in the evening [17:04] this is what it looks like http://imgur.com/05DVIWl [17:04] balloons: you're on the wrong channel then probably [17:07] popey, it's interesting to note the slightly out of date version had the wrong headers as well [17:07] that was on utopic [17:07] balloons: are you using the latest version of the app ? [17:07] daker, I am [17:08] but popey is probably correct in that it's an image thing. [17:08] could be a language thing [17:08] yes [17:08] mine is obviously en_GB [17:08] i think it fails to load the html content [17:09] file a bug [17:09] patches welcome etc [17:12] balloons: try looking at log of the app [17:12] you should see the language being used [17:14] ahh.. daker, what about the weird headers on r252 of ubuntu-rtm proposed? They looked like the headers from WAY back: http://img.rpadovani.com/posts/Ubuntu-App.png [17:14] tap the bar, see the next header, select it [17:15] something wrong with the image or why would I see it like that? [17:16] normal, the new header is not yet backported i think https://code.launchpad.net/~ci-train-bot/ubuntu-html5-theme/ubuntu-html5-theme-ubuntu-rtm-14.09-proposed [17:17] daker, ok, so folks running stable will see it like that yes? [17:17] * balloons goes to look at application log for help [17:18] balloons: i have absolutely no idea how those things works Alex is doing that work [17:18] popey, do you have a device running rtm stable handy/. [17:18] ? [17:18] nope [17:19] only krillin running rtm-proposed === chihchun is now known as chihchun_afk [17:24] balloons: to be sure of what people will see in your app, it's easier to just copy / embed the version of the theme that works for you [17:25] balloons: that avoids all of that uncertainty about which release is where [17:25] daker, thoughts ^^? [17:27] balloons: i am not sure, maybe get a copy of the sdk present on rtm stable and test against it ? [17:29] daker, popey here's a shot from rtm: http://people.canonical.com/~davmor2/screenshot20152318_172349829.png Looks correct, so must have just been -proposed [17:30] yes it correct but this is using qtwebkit [17:34] here's the log from the vivid -propose image that fails to load (my earlier screenshot): http://paste.ubuntu.com/10622153/. The only relevant error I see is qml: [JS] (file:///usr/share/ubuntu-html5-ui-toolkit/0.1/ambiance/js/core.js:166) Uncaught ReferenceError: ActionBar is not defined [17:34] yes [17:34] so do we have a bug or not? I'm leaning towards no, it's just my -proposed images and the latest proposed, along with rtm stable appear fine [17:35] so this is fixed https://bugs.launchpad.net/ubuntu-html5-theme/+bug/1427729 [17:35] Ubuntu bug 1427729 in Ubuntu HTML5 UI SDK "Now actionsbar.js needs to be included" [Medium,Confirmed] [17:36] brillant, so no bugs [17:37] thanks daker :-) [17:37] you just need to wait for the update i think [17:37] yw [17:37] yep, I agree === chihchun_afk is now known as chihchun === chihchun is now known as chihchun_afk [18:35] jdstrand, hi there, got a minute? about click checks [18:35] jdstrand, I understand we're missing some checks in the automated reviews [18:35] jdstrand, and I'd like to validate a possible solution to this === gcollura is now known as gcollura_ [19:11] pindonga: hi! [19:11] pindonga: sorry, was in a meeting [19:11] jdstrand, no prob [19:11] jdstrand, the issue is basically how we can discover all checks that need to be run [19:11] my proposal is to base on convention [19:12] pindonga: first off-- what do you run currently, various things in bin/click-check-* [19:12] right now I have a hardcoded list of checks from which I compose the path to the corresponding click-check-* scripts [19:12] pindonga: or do you have scripts that pull in clickreviews/*py? [19:12] my proposal is to run all such files [19:12] yes [19:12] except for the click-check-skeleton [19:13] pindonga: if you run click-check-*, then you are fine [19:13] so, we just need to remember the check scripts to always return the standard json format [19:13] except, oh heh [19:13] and name the files accordingly and we'll be alright [19:13] jdstrand, cool, I'll have an mp ready in a minute, just fixing some tests [19:13] and we can then move with that to prod soon-ish [19:13] pindonga: the README already talks about that [19:13] ack, will double check it [19:14] pindonga: so that is even a documented convention :) [19:14] pindonga: yeah, if something is unclear let me know. what you proposed is exactly what it is designed to do [19:15] perfect [19:15] I had the list hardcoded bc I was unsure and never managed to ask you :) [19:31] pindonga: fyi, r409 has click-check-systemd [19:32] ack, will update to that in the next rollout === dpm_ is now known as dpm-afk [20:03] jdstrand, https://code.launchpad.net/~ricardokirkner/click-reviewers-tools/click-check-overrides/+merge/253430 [20:21] pindonga: responded [20:21] just noticed, reading [20:22] jdstrand, so I can fix the looping issue I think, you're ok with having the checks executed in "glob" order? [20:23] pindonga: I kinda like lint first, but not having to remember to update the script is more important [20:23] I could force lint first, then everything else [20:23] it's not that complicated, and lint won't go away soon [20:24] if you feel so inclined. I won't nak it if you don't [20:27] worst. fight. ever. === salem_ is now known as _salem [20:49] jdstrand, pushed... pls let me know what you think... bash is not my strength :/ === _salem is now known as salem_ === chihchun_afk is now known as chihchun === chihchun is now known as chihchun_afk