Tuesday, 2015-06-02

*** garthb_ has quit IRC00:03
*** petertr7_away is now known as petertr700:03
*** alexvictorchan_ has quit IRC00:10
*** jtriley has joined #openstack-horizon00:11
*** petertr7 is now known as petertr7_away00:13
*** gokrokve has quit IRC00:13
*** gokrokve has joined #openstack-horizon00:14
*** jtriley has quit IRC00:15
*** gokrokve has quit IRC00:18
*** hurgleburgler has quit IRC00:20
tqtranr1chardj0n3s: ping, you stil here?00:24
r1chardj0n3stqtran: yus!00:24
tqtranok so babel does have string extraction tools as mentioned00:25
*** ybathia has quit IRC00:25
tqtranbut it doesn't the format we want, for example:00:25
tqtranyou can do something like gettext('single', 'plural', 'context')00:26
tqtranand you can replace gettext with a different function name00:26
*** ongk has joined #openstack-horizon00:26
tqtranor even re-arrange the ordering of the params00:26
tqtranso something like sexybeast('plural', 'context', 'singular') will also work00:26
tqtranBUT what you can't do is <div trans>singular</div> or <trans>singular</trans>00:27
tqtranall text translation tools out there right now is base off of the gnu gettext00:27
r1chardj0n3swait, isn't that what http://babel.edgewall.org/browser/contrib/django/babeldjango/extract.py for example is doing?00:27
r1chardj0n3sit's looking for translation blocks django-style (as well as functions)00:28
tqtranone sec, let me look at code00:28
tqtrancan you find usage examples of that function?00:30
r1chardj0n3susage of the extract function?00:30
r1chardj0n3sit's a plugin for babel00:30
*** botang has joined #openstack-horizon00:32
tqtranso im reading the code00:34
tqtrandoesnt look like its doing anything with keywords?00:34
*** gyee has quit IRC00:34
tqtranits only listed as a param, but never used in the code00:34
r1chardj0n3swell yes, because it's using the tags00:35
openstackgerritMerged openstack/horizon: Provide unittests for magic-search.js  https://review.openstack.org/17916800:36
r1chardj0n3sextract is a generator, returns the things for translation. how they're extracted is entirely up to you. in the django example above it uses the django template parser. for us, we could use the regex thing you wrote00:37
tqtranok lets assuming that i can pass in keywords, how would i translate something like: "<div translate>hello</div>" in babel?00:37
r1chardj0n3syou don't need to use the keywords argument00:37
r1chardj0n3syou ignore it00:37
r1chardj0n3sthe function/generator can do whatever it wants to get the info out of the file00:38
r1chardj0n3sit's just code00:38
tqtranok so you're saying, we would have to implement a file like this one00:39
tqtranand how does it get included into the django catalog object?00:39
r1chardj0n3syou use babel instead of django00:40
r1chardj0n3sugh mistype00:40
tqtran><00:40
r1chardj0n3syou use babel instead of django's makemessages call to generate the same catalog file00:40
tqtranum... that doesn't sound good00:40
r1chardj0n3swhy?00:40
tqtranbecause now there is two translation layer to use00:41
r1chardj0n3sno, there's one00:41
r1chardj0n3sjust babel00:41
tqtranbut we already have django00:41
tqtranwhy not just hook into that?00:41
openstackgerritMerged openstack/horizon: JSHINT error on master  https://review.openstack.org/18733200:41
r1chardj0n3sthe angular extraction is done using a plugin which we can publish and share (because it extracts standard angular-gettext messages)00:41
r1chardj0n3sso instead of a hack inside horizon, everything is out in the open and clearer00:41
tqtranwe can still publish and share the django command we wrote up00:42
r1chardj0n3sas I said earlier, what we do here is a legacy we're leaving for future horizon developers. Horizon today is full of obscure stuff that's a serious impediment to incoming developers. I'd really like to avoid adding to that while we're also trying to clean it up.00:42
tqtranit works the same way, its sort of like a plugin, just include and you're good to go00:43
r1chardj0n3s"sort of like a plugin" except not? :)00:43
*** tyr_ has joined #openstack-horizon00:43
tqtranso what you're saying is, introduce babel and move everything that we have today do it?00:43
tqtranthat sounds like a lot of work for a small feature00:44
r1chardj0n3sI don't think i18n is a small feature - and the "plugin" you're talking about is going to get more complex as it handles more of angular-gettext00:45
tqtranhaving 2 translation layer will make it more confusing00:45
r1chardj0n3sbut there won't *ve* 200:45
r1chardj0n3sbe even00:45
r1chardj0n3slol00:45
tqtranlol00:45
r1chardj0n3swhat you're talking about is 2 layers00:45
r1chardj0n3sstandard django makemessage and then a hack layer on top of that (that's fragile if makemessage ever changes) to do some other munging as well00:46
r1chardj0n3s(no, I'm not going to stop calling it a hack :)00:46
tqtranok if you look at extract_django, its doing pretty similar things00:46
tqtranso its not really a hack, its working code00:47
*** bpokorny has quit IRC00:47
*** tyr_ has quit IRC00:48
tqtranits like saying, why didn't we just use the django-REST framework instead of using what we have today? do you consider that a hack?00:48
tqtran:) pom pom pom00:48
r1chardj0n3sit's a hack in the sense that it's extending a class that you don't control (hence fragile) to munge a file into some temporary file for further processing by something that isn't extensible enough to be directly modified.00:49
r1chardj0n3sthat's a hack00:49
r1chardj0n3sthe code works, sure, but that doesn't change the semantics00:49
r1chardj0n3sugh, my Internet is stuffed00:50
tqtranok, i think this is a bigger discussion then just between the 2 of us00:50
tqtrani'll bring it up at the horizon meeting and get other's feedback00:50
r1chardj0n3s... and I'm back, I think00:51
r1chardj0n3stqtran: yeah, sorry to be a pain in the ass about this, but the legacy issue is something I'm deeply worried about00:51
r1chardj0n3stqtran: it's why I also don't want to see us writing our own angular-gettext00:52
tqtrandid you see the comment about bringing it up for discussion at meeting?00:52
*** alexvictorchan has joined #openstack-horizon00:52
r1chardj0n3syep, thanks00:52
tqtranyeah i understand, i really wouldnt mind using some 3rd party stuff for extraction, but thats not really an option atm. and i hate to introduce yet another translation tool since django already provides one00:53
tqtranbasically my preference is to build on top of what we have already00:53
tqtranas oppose to switching to another framework that most of us aren't familiar with yet00:53
tqtranand if we havent use it, there are probably pitfalls we arent't aware of yet00:54
r1chardj0n3sagh, dropped again00:54
tqtran><00:54
r1chardj0n3s(I got your messages tho)00:54
tqtranyeah i understand, i really wouldnt mind using some 3rd party stuff for extraction, but thats not really an option atm. and i hate to introduce yet another translation tool since django already provides one00:54
tqtranbasically my preference is to build on top of what we have already00:54
tqtranas oppose to switching to another framework that most of us aren't familiar with yet00:54
tqtranok good lol00:54
tqtranops... apparently i copy/pasted00:55
r1chardj0n3sI use a separate server to connect to IRC so it's always connected even if my home Internet is dead00:55
r1chardj0n3sso I don't miss any messages, just can't send any sometimes :/00:55
tqtrani see00:55
r1chardj0n3sOK, let's continue to discuss in a broader context at the meeting00:56
* r1chardj0n3s looks up when the next one is00:56
r1chardj0n3soh, tonight, I think00:56
r1chardj0n3soh, no, it's tomorrow 6am00:56
r1chardj0n3sok00:56
tqtranhm.... is it 1200 utc or 2000 utc?00:57
r1chardj0n3sJune 3 2000 UTC00:57
tqtrancool, thats like 12pm my time :D00:59
tqtranso if you're not there, i win right? hahahaha00:59
r1chardj0n3s:)01:00
openstackgerritThai Tran proposed openstack/horizon: Angular translation makemessages for singular  https://review.openstack.org/18732101:00
r1chardj0n3sit's really, really cold here in the mornings at the moment, but Imma get up anyway ;)01:00
*** jingjing_ren has quit IRC01:01
tqtranhahaha, you really don't have to01:01
*** lhcheng has quit IRC01:01
r1chardj0n3syou'll push my point of view in the dicussion? thanks!! :)01:01
tqtranLOL01:01
tqtranyeah i will cover both of our POV01:01
tqtranso you want to move everything to babel?01:02
r1chardj0n3sso hey, I also wanted to hassle you about that review comment you made on https://review.openstack.org/#/c/185140/01:02
*** sjmc7 has joined #openstack-horizon01:02
tqtranand basically not use django translation at all?01:02
tqtranwe would need to use the babeldjango plugin as well01:02
r1chardj0n3snot use django *makemessage*01:02
tqtranin other to support legacy01:03
r1chardj0n3susing django translation is fine01:03
*** lhcheng has joined #openstack-horizon01:03
*** yamamoto has joined #openstack-horizon01:03
tqtranso if you dont use the makemessage, does it get incorporated into django catalog object?01:03
tqtranbasically, we can get it translated, but how do we get the translated texts client-side?01:04
tqtranyou know what would really help? if you want to put up a patch to demostrate this01:04
tqtranseeing code will help make it clearer to me01:04
r1chardj0n3syes, the messages are extracted into the same catalog01:04
r1chardj0n3sdoing otherwise would be crazy ;)01:05
*** jwy has quit IRC01:05
tqtranok, so let me get it straight in case i have to argue for you01:05
tqtranyou're saying: use babel for the text extraction instead of django's makemessages01:06
r1chardj0n3s1) use angular-gettext now, not later01:06
tqtranand everything else will be django-based01:06
r1chardj0n3s2) use babel to extract messages from django templates and angular templates, exrtacting into the current messages catalog01:06
r1chardj0n3s3) use django's translation system as we do today over the top of that messages catalog01:06
tqtranok01:06
r1chardj0n3sdid I miss anything?01:06
*** sjmc7 has quit IRC01:07
tqtranneed to have babeldjango plugin01:07
tqtranand write our own for the angular piece01:07
r1chardj0n3syep, but you've already written the angular one ;)01:07
tqtranyeah, it can be re-use for babel01:07
*** lhcheng has quit IRC01:07
r1chardj0n3syou just need to refactor it a little and publish it01:07
tqtranok i got it copied into notepad01:09
r1chardj0n3sI should do that also so I can be coherent at 6am ;)01:10
tqtranoh wow, its already 6:10pm here, im working too hard01:10
r1chardj0n3syeah duded, take a break01:10
*** ducttape_ has joined #openstack-horizon01:10
r1chardj0n3sbut PLEASE follow up on that comment thing I need feedback on first :)01:10
tqtranwhat comment?01:11
r1chardj0n3s"I also wanted to hassle you about that review comment you made on https://review.openstack.org/#/c/185140/"01:11
r1chardj0n3s:)_01:11
r1chardj0n3sI need to know what you mean by it01:11
tqtranwhoa page not found01:12
r1chardj0n3shttps://review.openstack.org/#/c/185140/01:12
r1chardj0n3sso this comment https://review.openstack.org/#/c/185140/12/horizon/static/dashboard-app/dashboard-app.module.js,cm01:13
tqtranah ok01:13
r1chardj0n3sI'm not sure what you mean by "The last part is missing in this patch."01:13
tqtranso dashboard-app depends on framework, framework depends on framework.utils and framework.utils should depend on framework.util.tech-debt but it currently isnt01:14
tqtranhttps://github.com/openstack/horizon/blob/master/horizon/static/framework/util/util.module.js01:14
tqtranyou need to add horizon.framework.util.tech-debt to that list01:14
tqtranotherwise, we will never get to that code01:14
r1chardj0n3sit is in the list... that's weird01:14
r1chardj0n3swait, that's master01:15
r1chardj0n3shttps://review.openstack.org/#/c/185140/12/horizon/static/framework/util/util.module.js,cm01:15
tqtranah...01:15
tqtranyeah i see it01:15
tqtrani was looking for that file, must have missed it01:15
tqtranok just the jshint stuff then01:16
r1chardj0n3sok, thanks01:16
r1chardj0n3shm, so I get no jshint errors01:17
tqtranhttps://review.openstack.org/#/c/185140/12/horizon/static/framework/util/tech-debt/helper-functions.js01:17
r1chardj0n3soh, there's no errors, just the globals don't need to be there01:17
r1chardj0n3sok01:17
tqtranglobal angular01:17
r1chardj0n3sand the others01:18
tqtranthat is not needed since we already added angular to global01:18
tqtranyep01:18
r1chardj0n3swhy does our jshintrc declare the globals false01:18
r1chardj0n3s?01:18
r1chardj0n3sthat's odd01:18
tqtranSetting an entry to true enables reading and writing to that variable. Setting it to false will trigger JSHint to consider that variable read-only.01:18
tqtranfrom the official jshint docs01:19
r1chardj0n3sah, thanks01:19
tqtranyou should also shoot travis an email explaning that you dont need to test that patch because its all legacy code you're moving around01:19
r1chardj0n3syeah, I need to follow him up on that01:20
tqtranunless he wants you to write tests for legacy stuff, which i think will be a waste of your time01:20
r1chardj0n3sI needed to clarify which tests he was referring to, yeah01:20
tqtranjust fix your jshint stuff and i'll re-approve01:20
tqtranwould like to get this in asap01:20
*** yamamoto has quit IRC01:21
tqtranok bbl, going to shoot some hoops!01:23
*** tqtran is now known as tqtran_afk01:23
r1chardj0n3sok, have fun!01:23
openstackgerritRichard Jones proposed openstack/horizon: ngReorg - move utils from dashboad-app  https://review.openstack.org/18514001:23
openstackgerritRichard Jones proposed openstack/horizon: ngReorg - move utils from dashboad-app  https://review.openstack.org/18514001:23
openstackgerritRichard Jones proposed openstack/horizon: ngReorg - move dashboard-app/login out  https://review.openstack.org/18513301:24
*** Sukhdev has quit IRC01:24
*** Sukhdev has joined #openstack-horizon01:25
openstackgerritRichard Jones proposed openstack/horizon: ngReorg - move dashboard controllers from horizon  https://review.openstack.org/18513201:25
*** yamamoto has joined #openstack-horizon01:28
*** yamamoto has quit IRC01:29
*** jingjing_ren has joined #openstack-horizon01:31
openstackgerritRichard Jones proposed openstack/horizon: ngReorg - move core HTML from framework to dashboard  https://review.openstack.org/18629501:32
*** jwy has joined #openstack-horizon01:32
*** radez is now known as radez_g0n301:33
*** alanf-mc has quit IRC01:34
*** davidmichaelkarr has quit IRC01:35
*** DuncanT has quit IRC01:36
*** jingjing_ren has quit IRC01:38
*** ongk has quit IRC01:38
*** davidmichaelkarr has joined #openstack-horizon01:41
*** Sukhdev has quit IRC01:43
*** DuncanT has joined #openstack-horizon01:45
*** jbell8 has joined #openstack-horizon01:49
*** clu_ has joined #openstack-horizon02:00
*** alexpilotti has quit IRC02:00
*** nlahouti has quit IRC02:01
*** clu_ has quit IRC02:02
*** zhenguo has joined #openstack-horizon02:03
*** jwy has quit IRC02:05
*** yamamoto has joined #openstack-horizon02:13
*** ducttape_ has quit IRC02:18
*** KunalGan_ has joined #openstack-horizon02:21
*** dboik has joined #openstack-horizon02:31
*** sqchen has quit IRC02:31
*** ducttape_ has joined #openstack-horizon02:32
*** jingliuqing has joined #openstack-horizon02:33
*** sqchen has joined #openstack-horizon02:35
*** chlong has quit IRC02:39
*** jbell8 has quit IRC02:43
*** dboik has quit IRC02:45
*** yingjun has joined #openstack-horizon02:51
openstackgerritEric Peterson proposed openstack/horizon: Don't pass read only attributes on neutron update  https://review.openstack.org/18621102:52
*** amotoki has joined #openstack-horizon02:56
*** 17SACPWTU has joined #openstack-horizon02:58
ducttape_r1chardj0n3s - ping03:03
r1chardj0n3sducttape_: yup?03:03
ducttape_I was looking at a review of yours - https://review.openstack.org/#/c/185133/03:03
ducttape_I think I grock it, but saw a lot of copyright IBM stuff.   not sure if you intended this or cared03:04
r1chardj0n3sI'm just moving files around, copyright notices intact03:04
ducttape_ah ok.  thanks03:04
r1chardj0n3sthat ngReorg patch chain is all about moving files around03:05
r1chardj0n3s(the linked bug has the justification)03:05
ducttape_gotcha.  seems fine to me, I'm not the most qualified to review the angular stuff but I get the idea03:06
r1chardj0n3sok03:08
openstackgerritEric Peterson proposed openstack/horizon: Add fip to lbaas vip info  https://review.openstack.org/18067603:08
*** sqchen has quit IRC03:11
openstackgerritEric Peterson proposed openstack/horizon: Removing last_activity session flag  https://review.openstack.org/17951303:13
*** sqchen has joined #openstack-horizon03:18
*** chlong has joined #openstack-horizon03:22
*** ducttape_ has quit IRC03:22
*** ducttape_ has joined #openstack-horizon03:27
*** fedexo has joined #openstack-horizon03:33
*** yingjun has quit IRC03:33
*** yingjun has joined #openstack-horizon03:39
*** alexvictorchan has quit IRC03:39
*** yamamoto has quit IRC03:48
*** yamamoto has joined #openstack-horizon03:48
*** clu_ has joined #openstack-horizon03:49
*** clu_ has quit IRC03:50
*** dsneddon has quit IRC03:51
*** ducttape_ has quit IRC03:54
*** ducttape_ has joined #openstack-horizon03:55
openstackgerritLin Cai proposed openstack/horizon: I/O error uploading image  https://review.openstack.org/18493503:57
*** ducttape_ has quit IRC04:00
*** yamamoto has quit IRC04:01
*** jingliuqing has quit IRC04:02
*** yingjun has quit IRC04:07
*** yamamoto has joined #openstack-horizon04:08
*** bpokorny has joined #openstack-horizon04:13
*** lhcheng has joined #openstack-horizon04:16
*** bpokorny has quit IRC04:17
*** Sukhdev has joined #openstack-horizon04:21
*** david-lyle has quit IRC04:24
*** david-lyle has joined #openstack-horizon04:25
*** ChanServ sets mode: +o david-lyle04:25
*** neelabh has joined #openstack-horizon04:29
*** alexvictorchan has joined #openstack-horizon04:35
*** garthb has joined #openstack-horizon04:36
*** jingliuqing has joined #openstack-horizon04:39
*** alexvictorchan has quit IRC04:42
*** KunalGan_ has quit IRC04:43
*** KunalGandhi has joined #openstack-horizon04:45
*** clu_ has joined #openstack-horizon04:50
*** KunalGandhi has quit IRC04:50
*** clu_ has quit IRC04:51
openstackgerritlawrancejing proposed openstack/horizon: Refactor some scss code  https://review.openstack.org/18716304:56
*** ducttape_ has joined #openstack-horizon04:56
*** ducttape_ has quit IRC05:01
*** garthb has quit IRC05:02
*** lhcheng_ has joined #openstack-horizon05:06
*** Longgeek has joined #openstack-horizon05:07
*** lhcheng has quit IRC05:09
*** kiran-r has joined #openstack-horizon05:13
*** yingjun has joined #openstack-horizon05:13
*** Longgeek has quit IRC05:13
*** yingjun has quit IRC05:14
*** tqtran_afk has quit IRC05:17
*** jingjing_ren has joined #openstack-horizon05:22
*** jingjing_ren has quit IRC05:27
*** stevemar has quit IRC05:31
*** reed has quit IRC05:33
*** KunalGandhi has joined #openstack-horizon05:34
*** Kunal has joined #openstack-horizon05:34
*** zhenguo has quit IRC05:37
*** sqchen has quit IRC05:37
*** KunalGandhi has quit IRC05:39
*** Kunal has quit IRC05:44
*** reed has joined #openstack-horizon05:47
*** Longgeek has joined #openstack-horizon05:52
*** masco has joined #openstack-horizon05:58
*** sumanth has quit IRC06:04
*** yingjun has joined #openstack-horizon06:04
*** neelabh has quit IRC06:12
*** yingjun has quit IRC06:19
openstackgerritOpenStack Proposal Bot proposed openstack/horizon: Imported Translations from Transifex  https://review.openstack.org/18746906:20
*** Sukhdev has quit IRC06:21
*** neelabh has joined #openstack-horizon06:24
*** KunalGandhi has joined #openstack-horizon06:24
*** nlahouti has joined #openstack-horizon06:25
*** nlahouti has quit IRC06:27
*** Kunal has joined #openstack-horizon06:27
*** nlahouti has joined #openstack-horizon06:29
*** yingjun has joined #openstack-horizon06:34
*** clu_ has joined #openstack-horizon06:38
*** belmoreira has joined #openstack-horizon06:38
*** clu_ has quit IRC06:40
*** markus_z has joined #openstack-horizon06:43
*** mrunge has joined #openstack-horizon06:43
*** ducttape_ has joined #openstack-horizon06:45
*** jingliuqing has quit IRC06:48
*** jcoufal has joined #openstack-horizon06:48
*** ducttape_ has quit IRC06:50
*** jcoufal has quit IRC06:50
*** jcoufal has joined #openstack-horizon06:52
*** krykowski has joined #openstack-horizon06:53
*** zhenguo has joined #openstack-horizon06:54
openstackgerritNeill Cox proposed openstack/horizon: Single page navigation  https://review.openstack.org/13798006:56
*** zz_ttrifonov is now known as ttrifonov06:57
*** neillc is now known as neillc_away06:58
*** ttrifonov is now known as zz_ttrifonov07:04
*** krykowski has quit IRC07:05
*** Drago has quit IRC07:12
*** Drago has joined #openstack-horizon07:13
*** Drago has quit IRC07:14
*** nlahouti has quit IRC07:17
*** jsheeren has joined #openstack-horizon07:17
openstackgerritMasco Kaliyamoorthy proposed openstack/horizon: Support of rescue instance in Horizon  https://review.openstack.org/10737907:21
*** lhcheng_ has quit IRC07:23
*** KunalGandhi has quit IRC07:24
*** neelabh has quit IRC07:28
*** Kunal has quit IRC07:28
*** nlahouti has joined #openstack-horizon07:46
*** dguerri`away is now known as dguerri07:48
*** Ala has joined #openstack-horizon07:52
openstackgerritMerged openstack/horizon: Imported Translations from Transifex  https://review.openstack.org/18746907:53
*** fedexo has quit IRC07:53
*** oro has joined #openstack-horizon07:54
*** nlahouti has quit IRC07:56
*** chlong has quit IRC07:56
*** akrivoka has joined #openstack-horizon07:57
*** JeanBriceCombebi has joined #openstack-horizon08:00
*** bluex-pl has joined #openstack-horizon08:00
*** JeanBriceCombebi has quit IRC08:00
*** ducttape_ has joined #openstack-horizon08:01
*** ygbo has joined #openstack-horizon08:02
*** JeanBriceCombebi has joined #openstack-horizon08:03
*** ducttape_ has quit IRC08:06
*** jingliuqing has joined #openstack-horizon08:10
*** zz_ttrifonov is now known as ttrifonov08:12
*** yingjun has quit IRC08:15
*** romainh has joined #openstack-horizon08:18
*** mpavlase has joined #openstack-horizon08:23
*** 17SACPWTU has quit IRC08:24
*** jbell8 has joined #openstack-horizon08:24
*** jbell8 has quit IRC08:25
*** clu_ has joined #openstack-horizon08:27
*** ZZelle has quit IRC08:28
*** ZZelle has joined #openstack-horizon08:28
*** clu_ has quit IRC08:29
*** unixlike has joined #openstack-horizon08:42
unixlikeHi there !08:42
*** vkmc has quit IRC08:45
*** vkmc has joined #openstack-horizon08:45
unixlikeI just looking for an solution to make hide and show some widgets of workflow  like a Instance Boot Source in create_instance workflow08:45
*** nlahouti has joined #openstack-horizon08:47
unixlikeI can't understand yet how this switching organized08:47
*** nlahouti has quit IRC08:52
*** DaveJ__ has joined #openstack-horizon08:58
*** yingjun has joined #openstack-horizon08:59
*** aix has joined #openstack-horizon09:01
*** akrivoka has quit IRC09:03
*** jingliuqing has quit IRC09:03
*** akrivoka has joined #openstack-horizon09:04
*** neillc_away is now known as neillc09:08
*** JeanBriceCombebi has quit IRC09:11
*** JeanBriceCombebi has joined #openstack-horizon09:12
*** nlahouti has joined #openstack-horizon09:17
*** e0ne has joined #openstack-horizon09:20
*** nlahouti has quit IRC09:22
*** yingjun has quit IRC09:33
openstackgerritNeill Cox proposed openstack/horizon: Single page navigation  https://review.openstack.org/13798009:35
*** aix has quit IRC09:45
*** aix has joined #openstack-horizon09:45
*** JeanBriceCombebi has quit IRC09:46
*** nlahouti has joined #openstack-horizon09:48
*** JeanBriceCombebi has joined #openstack-horizon09:48
*** josecastroleon has joined #openstack-horizon09:49
*** ducttape_ has joined #openstack-horizon09:50
*** nlahouti has quit IRC09:53
*** amotoki_ has joined #openstack-horizon09:53
*** ducttape_ has quit IRC09:55
*** yamamoto has quit IRC09:59
*** e0ne is now known as e0ne_10:13
*** JeanBriceCombebi has quit IRC10:15
*** clu_ has joined #openstack-horizon10:16
*** clu_ has quit IRC10:17
*** e0ne_ has quit IRC10:24
*** e0ne has joined #openstack-horizon10:29
openstackgerritMasco Kaliyamoorthy proposed openstack/horizon: added description column in vpn tables  https://review.openstack.org/18751710:36
*** ttrifonov is now known as zz_ttrifonov10:36
*** dguerri is now known as dguerri`away10:37
*** oro has quit IRC10:44
*** alexpilotti has joined #openstack-horizon10:46
*** ducttape_ has joined #openstack-horizon10:54
*** neelabh has joined #openstack-horizon10:59
*** Longgeek_ has joined #openstack-horizon11:01
*** Longgeek has quit IRC11:01
neelabhResource Usage panel is only showing Usage Report but not showing statics. I have run two instances but it is showing nothing..11:02
neelabhplease tell me why, Do I need some settings11:02
*** liuqingqing has joined #openstack-horizon11:06
liuqingqingThai Tran: ping11:08
*** zz_ttrifonov is now known as ttrifonov11:08
mrungeliuqingqing, I would expect Thai in a few hours earliest11:13
mrungeliuqingqing, maybe 7 hours or so?11:14
liuqingqing:) i'm UTC811:15
liuqingqingsome problem about the patch : https://review.openstack.org/#/c/159822/11:15
liuqingqingone more question, the horizon meeting will coming about 8~9 hours later?11:17
*** e0ne has quit IRC11:19
*** rushiagr_away is now known as rushiagr11:22
*** e0ne has joined #openstack-horizon11:24
*** e0ne is now known as e0ne_11:25
*** e0ne_ is now known as e0ne11:30
mrungeliuqingqing, uhm, isn't the meeting at 20 UTC tomorrow?11:31
mrungeliuqingqing, https://wiki.openstack.org/wiki/Meetings/Horizon11:32
liuqingqingmrunge, thanks11:34
*** yingjun has joined #openstack-horizon11:37
openstackgerritMasco Kaliyamoorthy proposed openstack/horizon: added description column in firewall tables  https://review.openstack.org/18753611:39
*** ducttape_ has quit IRC11:40
*** oro has joined #openstack-horizon11:49
*** romainh has quit IRC11:54
*** romainh1 has joined #openstack-horizon11:54
*** zhenguo has quit IRC11:57
neelabhResource Usage panel is only showing Usage Report but not showing statics. I have run two instances but it is showing nothing, please tell me why, Do I need some settings11:58
*** Miouge has quit IRC12:02
*** liuqingqing has quit IRC12:02
*** e0ne is now known as e0ne_12:04
*** ducttape_ has joined #openstack-horizon12:04
*** akrivoka has quit IRC12:04
mrungeneelabh, do you have ceilometer configured?12:04
neelabhyes12:04
neelabhhttp://stackoverflow.com/questions/30593874/i-have-been-activated-the-ceilometer-but-it-is-showing-any-statics-in-resource-u12:05
*** clu_ has joined #openstack-horizon12:05
mrungethere is nothing to configure in horizon12:05
*** akrivoka has joined #openstack-horizon12:05
neelabhmrunge: plz see the this question posted by me12:05
*** clu_ has quit IRC12:06
neelabhmrunge: I have created two instance, which are running but When I See the Resource Panel It showing nothing on statics tab,12:06
mrungeneelabh, internet explorer?12:07
neelabhmrunge: No firefox12:07
neelabhI am using firefox12:07
neelabhcentos 712:07
mrungeneelabh, did you do ./manage collectstatic at some point of time?12:07
neelabhno12:08
*** ducttape_ has quit IRC12:08
mrungeyou should12:08
mrungeneelabh, one of devstacks issues are: it's just suitable for development12:08
mrungeneelabh, if you want to do just a tiny bit more: use a real install12:09
mrungeand before that, reinstall your machine12:09
neelabhmrunge: Thanks for responding, Have you seen the images on stack-over flow by me (http://stackoverflow.com/questions/30593874/i-have-been-activated-the-ceilometer-but-it-is-showing-any-statics-in-resource-u), Resource panel is activated..12:09
mrungedevstack happily pollutes your system with all kinds of files12:09
mrungeneelabh, I saw, there are tiny images attached12:10
neelabhIn stats Tab?12:10
*** Miouge has joined #openstack-horizon12:11
mrungewhat?12:11
neelabhSo what should I do,  Should I run ./manage collectstatic, What It will do12:11
mrungeneelabh, is there shown anything?12:11
mrungeif you switch to images in stats tab?12:11
*** thiagop has quit IRC12:11
mrungeor something else?12:11
mrungeneelabh, that data is read out of ceilometer12:12
neelabhYes stas tab It showing nothing12:12
mrungeand choosing a different metric?12:12
neelabhk12:12
neelabhI check every matrix showing nothing, When I change the matrix is gives alert "Error: An error occurred. Please try again later.12:13
neelabh×12:13
neelabhError: An error occurred. Please try again later. "12:13
*** e0ne_ has quit IRC12:14
mrungeaha. you need to dive into logs12:15
*** jsheeren has quit IRC12:15
neelabhmeans? plz elaborate more on it.. Thanks12:15
mrungei have no idea, where devstack stores its logs12:15
mrungebut you didn't describe, where you got your error message either12:16
mrungeyou need to look at ceilometers logs and at horizons logs too12:16
*** yingjun has quit IRC12:16
mrungeif you caught an exception, please add that to your stackoverflow post, thanks12:16
neelabhK, as you told for matrix (like instance, memory, vcpus, tect) when I change the matrix I get alert error "Error: An error occurred. Please try again later. "12:17
neelabhAs you told change matrix..12:18
neelabhI have change the matrix then I am  getting error as above..12:18
neelabhAs you told me that run  ./manage collectstatic , from which directory Should I run..12:19
*** masco has quit IRC12:19
mrungeneelabh, that should be a separate issue.12:21
*** JeanBriceCombebi has joined #openstack-horizon12:21
mrungeneelabh, I don't use devstack; thus, I have no idea, where it stores logs etc.12:22
neelabhmrunge : I am very sorry But I made mistake I session was out, But still I is giving nothing but only tiny thing with some time but no alert this time12:22
neelabhMy session was out that why I was getting alert, sorry for that12:22
mrungeaha12:23
neelabhsorry12:23
neelabhbut It is giving tiny figure when I hover the mouse on it..12:24
neelabhBut not detailed12:24
neelabhFrom which directory should I run "./manage collectstatic"12:26
*** robcresswell_afk is now known as robcresswell12:32
*** Miouge has quit IRC12:32
*** e0ne has joined #openstack-horizon12:36
*** robcresswell is now known as robcresswell_afk12:38
*** robcresswell_afk has quit IRC12:47
*** _crobertsrh is now known as crobertsrh12:51
*** ducttape_ has joined #openstack-horizon12:51
openstackgerritMatt Borland proposed openstack/horizon: [Launch Instance Fix] Tests for Base Controllers  https://review.openstack.org/17205712:52
openstackgerritMatt Borland proposed openstack/horizon: Angular API Unit Tests  https://review.openstack.org/17822712:56
*** JeanBriceCombebi has quit IRC12:58
*** mrunge has quit IRC12:58
*** ducttape_ has quit IRC12:58
*** iurygregory has quit IRC12:59
*** matt-borland has joined #openstack-horizon12:59
*** JeanBriceCombebi has joined #openstack-horizon13:00
*** oro has quit IRC13:01
*** sjmc7 has joined #openstack-horizon13:01
*** sjmc7 has quit IRC13:07
openstackgerritMatt Borland proposed openstack/horizon: [Launch Instance Fix] Add Flavor Step Unit Tests  https://review.openstack.org/16732613:07
openstackgerritMatt Borland proposed openstack/horizon: [Launch Instance Fix] Add Model Unit Tests  https://review.openstack.org/16773813:08
*** kiran-r has quit IRC13:09
*** cardeois___ has quit IRC13:09
*** cardeois___ has joined #openstack-horizon13:09
*** petertr7_away is now known as petertr713:13
*** Ephur has joined #openstack-horizon13:13
openstackgerritMatt Borland proposed openstack/horizon: [Launch Instance Fix] Add Model Unit Tests  https://review.openstack.org/16773813:14
*** doug-fish has joined #openstack-horizon13:16
*** julim has joined #openstack-horizon13:17
openstackgerritMatt Borland proposed openstack/horizon: Extending test coverage for core components  https://review.openstack.org/17055413:18
*** Ephur has quit IRC13:19
*** JeanBriceCombebi has quit IRC13:22
*** Ephur has joined #openstack-horizon13:23
*** yamamoto has joined #openstack-horizon13:25
*** JeanBriceCombebi has joined #openstack-horizon13:26
*** yamamoto_ has joined #openstack-horizon13:26
*** yingjun has joined #openstack-horizon13:26
*** ducttape_ has joined #openstack-horizon13:27
*** ducttape_ has quit IRC13:27
*** radez_g0n3 is now known as radez13:28
*** yamamoto has quit IRC13:30
*** dguerri`away is now known as dguerri13:31
*** yamamoto_ has quit IRC13:32
matt-borlandAny and all, in the interests of getting the Angular service APIs get test coverage *before* the massive reorganization, I'd like to get the following tests in: https://review.openstack.org/#/c/178227/13:33
matt-borlandThat way we can ensure functionality is consistent on both sides of the reorg.13:34
*** lblanchard has joined #openstack-horizon13:34
doug-fishmatt-borland: yeah - I started looking at that yesterday. 927 lines is a lot to look at! But I'll set aside some time for that one today - I agree it's important13:35
openstackgerritDoug Fish proposed openstack/horizon: I/O error uploading image  https://review.openstack.org/18493513:35
*** yamamoto has joined #openstack-horizon13:36
doug-fishI'm interesting in seeing this one merge:  https://review.openstack.org/#/c/186211/  You can't edit IPv6 subnets without it! I'm hoping to cherry-pick it back to kilo.13:37
doug-fishs/interesting/interested13:37
matt-borlanddoug-fish: Thanks!  I appreciate it...let me know if you want me to review any specific patches you have up as well :)13:38
matt-borland(e.g. the one I see up above)13:39
doug-fish:-)  yeah https://review.openstack.org/#/c/186211/ is the one I'm most concerned about right now - I need to review this one myself as well: https://review.openstack.org/184935 - you can't upload images by file with Django 1.7+ without that fix. I'd appreciate other reviews on that as well.13:40
matt-borlandOK, cool, I will do that!  Thanks again.13:40
doug-fishnp - thank you!13:40
*** ErickHeinrich has joined #openstack-horizon13:41
*** ErickHeinrich has quit IRC13:41
*** peristeri has joined #openstack-horizon13:41
*** rushiagr is now known as rushiagr_away13:41
*** yingjun has quit IRC13:46
*** jtriley has joined #openstack-horizon13:49
*** dboik has joined #openstack-horizon13:50
*** masco has joined #openstack-horizon13:50
*** clu_ has joined #openstack-horizon13:53
*** clu_ has quit IRC13:55
*** Miouge has joined #openstack-horizon13:58
*** tyr_ has joined #openstack-horizon14:01
*** julim has quit IRC14:02
*** julim has joined #openstack-horizon14:03
*** mark-os has joined #openstack-horizon14:04
mark-osHey everyone14:05
mark-osAnyone struggling to login to their instance of their dashboard?14:06
mark-osWondering if it's due to a new update14:06
*** petertr7 is now known as petertr7_away14:08
*** gokrokve has joined #openstack-horizon14:09
*** petertr7_away is now known as petertr714:09
matt-borlandmark-os: I haven't seen that problem, I'm on master right now14:10
mark-osmatt-borland: It's only started within the last hour14:10
matt-borlandWhat are the symptoms?  Do you see errors in your JavaScript console?14:10
mark-osunless I've changed something without realising there would be a knock on effect14:10
mark-os'An error occurred authenticating. Please try again later.' I'm guessing this should be a keystone issue14:13
*** ducttape_ has joined #openstack-horizon14:14
mark-osmatt-borland: yep, I've changed something. Realised what it is now.14:14
matt-borlandcool!  Good that it's not something in master. :)14:14
*** masco has quit IRC14:17
openstackgerritMartin Pavlásek proposed openstack/horizon: Limit max length of gen_random_resource_name  https://review.openstack.org/18760014:17
*** ericpeterson has joined #openstack-horizon14:18
neelabhmark-os: I think, have same problem  authentication Error During Login in dashbaord, I followed the following instruction14:19
mark-osneelabh: I discovered what the problem was I think, just need to test it now.14:20
mark-osFingers crossed it'll be okay14:20
neelabhk grt ...14:21
mark-osneelabh: thanks for offering!14:22
*** stevemar has joined #openstack-horizon14:23
neelabhNo problem..14:23
*** ducttape_ has quit IRC14:23
mark-osmatt-borland neelabh, yeah had no issue with logging in whenever I fixed one of the files with my login details.14:23
*** radez is now known as radez_g0n314:23
mark-osTried a fresh install of Horizon and it worked fine :)14:23
matt-borlandcool mark-os14:23
openstackgerritMartin Pavlásek proposed openstack/horizon: Limit max length of gen_random_resource_name  https://review.openstack.org/18760014:24
openstackgerritJustin Pomeroy proposed openstack/horizon: Prevent multiple form submission on table row actions  https://review.openstack.org/18760414:24
mark-osmatt-borland: out of interest, is there a place which contains a list of updates being released for Horizon?14:24
mark-osmatt-borland: one which includes the updates which have been released and also the updates which are planned for say, this week or next week for example?14:25
matt-borlandmark-os: sadly, no.  I discussed this with one of the people leading the reorganization yesterday.  We really need a changelog/upgrade guide.14:26
openstackgerritMartin Pavlásek proposed openstack/horizon: Limit max length of gen_random_resource_name  https://review.openstack.org/18760514:26
matt-borlandI had to wade through quite a bit of name changes and they were not always easy to determine the current state.14:26
*** radez_g0n3 is now known as radez14:26
mark-osmatt-borland: It would be a life saver being able to quickly look at a list which has dates of planned updates, just in case any of them will effect the stuff I'm working on for example.14:27
matt-borlandyeah.  I'm in the same boat as you in this regard.14:28
*** jbell8 has joined #openstack-horizon14:28
matt-borlandThere are some patches in play that are continuing to reorganize, let me see if there's a blueprint that details this.14:28
matt-borlandthe short answer is no, it doesn't look like there's an upgrade guide exactly.14:29
*** vahidh has quit IRC14:30
neelabhHi guys, I am using devstack. On my dashboard three instance are running but In dashboard "stats tab" under Resource Usage is not showing anything.14:31
neelabhPlease tell be how to show matrix14:31
*** jingliuqing has joined #openstack-horizon14:32
neelabhI have same problem : http://lists.openstack.org/pipermail/openstack/2014-April/006554.html14:32
*** jingliuqing has quit IRC14:33
*** jbell8 has quit IRC14:33
*** garthb has joined #openstack-horizon14:38
*** garthb_ has joined #openstack-horizon14:38
*** JeanBriceCombebi has quit IRC14:43
*** neelabh has quit IRC14:45
*** vijendar has joined #openstack-horizon14:46
*** jbell8 has joined #openstack-horizon14:46
*** henrique_ has quit IRC14:48
*** htruta has joined #openstack-horizon14:48
openstackgerritMatt Borland proposed openstack/horizon: Improve unittests for angular charts  https://review.openstack.org/17925114:51
*** radez is now known as radez_g0n314:54
*** jbell8 has quit IRC15:03
*** jcoufal has quit IRC15:04
mark-osmatt-borland: I can imagine these reorganisation patches could be a pain for those who have developed plugins for Horizon in the past but now have the old organisation instead? (E.g. AVOS)15:05
matt-borlandexactly.15:05
*** JeanBriceCombebi has joined #openstack-horizon15:06
*** e0ne is now known as e0ne_15:09
*** e0ne_ is now known as e0ne15:09
*** notmars has joined #openstack-horizon15:12
*** jbell8 has joined #openstack-horizon15:14
*** hurgleburgler has joined #openstack-horizon15:14
*** bpokorny has joined #openstack-horizon15:15
*** JeanBriceCombebi has quit IRC15:15
*** JeanBriceCombebi has joined #openstack-horizon15:17
openstackgerritMatt Borland proposed openstack/horizon: Adding tests for button-tooltip.js  https://review.openstack.org/17843415:17
*** markus_z has quit IRC15:22
*** hurglebu_ has joined #openstack-horizon15:26
*** hurgleburgler has quit IRC15:27
*** neelabh has joined #openstack-horizon15:29
*** petertr7 is now known as petertr7_away15:31
*** cbader has quit IRC15:35
*** petertr7_away is now known as petertr715:36
*** hurglebu_ has quit IRC15:36
*** clu_ has joined #openstack-horizon15:39
*** clu_ has quit IRC15:41
*** openstackgerrit has quit IRC15:42
*** openstackgerrit has joined #openstack-horizon15:43
*** jprovazn has joined #openstack-horizon15:43
*** absubram has joined #openstack-horizon15:45
*** petertr7 is now known as petertr7_away15:45
*** neelabh has quit IRC15:46
openstackgerritMatt Borland proposed openstack/horizon: [Launch Instance Fix] Add Flavor Step Unit Tests  https://review.openstack.org/16732615:49
*** hurgleburgler has joined #openstack-horizon15:50
*** alexvictorchan has joined #openstack-horizon15:51
*** cbader has joined #openstack-horizon15:52
*** ongk has joined #openstack-horizon15:52
openstackgerritAaron Sahlin proposed openstack/horizon: JSCS Cleanup - Legacy JS test files  https://review.openstack.org/18730115:52
*** Drago has joined #openstack-horizon15:54
*** Drago has quit IRC15:54
*** Kunal has joined #openstack-horizon15:54
*** Drago has joined #openstack-horizon15:54
*** KunalGandhi has joined #openstack-horizon15:55
*** doug-fish has quit IRC15:56
*** doug-fish has joined #openstack-horizon15:57
*** ttrifonov is now known as zz_ttrifonov16:01
*** yamamoto has quit IRC16:02
*** notmars has quit IRC16:02
*** oro has joined #openstack-horizon16:05
*** amotoki_ has quit IRC16:05
*** jbell8 has quit IRC16:07
*** nlahouti has joined #openstack-horizon16:08
openstackgerritMatt Borland proposed openstack/horizon: Improving filter and existing API service tests  https://review.openstack.org/17653216:08
*** yamamoto has joined #openstack-horizon16:10
*** gyee has joined #openstack-horizon16:10
*** belmoreira has quit IRC16:12
*** garthb has quit IRC16:12
*** garthb_ has quit IRC16:12
*** gokrokve_ has joined #openstack-horizon16:14
*** TravT has joined #openstack-horizon16:15
*** gokrokve has quit IRC16:17
*** JeanBriceCombebi has quit IRC16:18
*** JeanBriceCombebi has joined #openstack-horizon16:21
*** mattfarina has joined #openstack-horizon16:22
*** Ala has quit IRC16:23
*** clu_ has joined #openstack-horizon16:25
*** clu_ has quit IRC16:26
*** clu_ has joined #openstack-horizon16:26
*** amotoki_ has joined #openstack-horizon16:29
*** e0ne has quit IRC16:29
*** ygbo has quit IRC16:31
*** cardeois____ has joined #openstack-horizon16:37
*** absubram has quit IRC16:38
*** absubram has joined #openstack-horizon16:38
ericpetersonlow-hanging-fruit bug :   https://bugs.launchpad.net/horizon/+bug/146115816:39
openstackLaunchpad bug 1461158 in OpenStack Dashboard (Horizon) "image table throws errrors into log files trying to display size attr" [Undecided,New]16:39
*** lhcheng has joined #openstack-horizon16:39
*** jingjing_ren has joined #openstack-horizon16:40
*** cardeois___ has quit IRC16:41
*** DaveJ__ has quit IRC16:41
*** gokrokve_ has quit IRC16:43
*** gokrokve has joined #openstack-horizon16:43
*** dscottsf has joined #openstack-horizon16:44
*** gokrokve has quit IRC16:45
*** gokrokve_ has joined #openstack-horizon16:45
*** notmars has joined #openstack-horizon16:47
*** garthb has joined #openstack-horizon16:49
*** bluex-pl has quit IRC16:49
*** garthb_ has joined #openstack-horizon16:49
*** cardeois_____ has joined #openstack-horizon16:50
matt-borlandquestion for the room...it seems now that when I run "./run_tests.sh --only-selenium" I get failures on master.  Yet it seems that on Jenkins the selenium tests pass.16:51
*** pkarikh has quit IRC16:51
matt-borlandI have one patch which I know is a failure, and Jenkins thinks it's OK.16:51
*** dscottsf has quit IRC16:52
*** cardeois____ has quit IRC16:53
matt-borlandFalse positives worry me.16:53
matt-borlanddavid-lyle: know anything about this? ^^16:54
david-lyleit's true, False positives worry you16:55
david-lyle:D16:55
matt-borland:)16:55
david-lyleno, but it's possible the error is not being tracked properly16:55
david-lyledoes the detailed console log show anything on the jenkins job?16:56
matt-borlandit looked somewhat brief16:56
david-lyleshould show a log of what tests ran16:56
matt-borlandbut it does indicate successes.16:56
david-lyleif they are not being run, it could jump to immediate success16:57
matt-borland" WARNING:test command found but not installed in testenv"16:57
matt-borlandIt seems to have run all the tests in just a few seconds.16:58
david-lylethat seems wrong16:59
david-lylethose tests take a while16:59
matt-borland"Ran 1368 tests in 8.815s"16:59
david-lylewith new tox, less env vars are passed on into the test run16:59
david-lylewonder if that's failing16:59
matt-borlandah, interesting.16:59
david-lyleyour output would be for non-selenium runs17:00
matt-borlandoh, ok.17:00
*** jbell8 has joined #openstack-horizon17:00
david-lylehmm17:00
matt-borlandIt's just clear that master has bad selenium tests :(17:01
david-lylelooking at sample output, selenium is not running on the horizon-selenium test job17:02
*** sjmc7 has joined #openstack-horizon17:02
david-lylethat's sub-optimal17:02
*** drupalmonkey has joined #openstack-horizon17:02
*** notmars has quit IRC17:04
*** dguerri is now known as dguerri`away17:04
*** KunalGandhi has quit IRC17:06
david-lylematt-borland: job invocation is correct "venv runtests: commands[0] | ../../../../bin/bash run_tests.sh -N --only-selenium"17:07
david-lylesomething is getting lost in the execution17:07
david-lyletest not found is problematic too17:07
matt-borlandyup17:08
david-lylefound fine in the py27 job17:08
david-lyle124.598 secs for openstack_dashboard tests in py2717:08
david-lyle8.7776 in selenium17:09
matt-borlandinteresting17:09
david-lyleit's skipping all the non-selenium tests, but not running the selenium tests17:09
david-lyleOK (SKIP=1367)17:10
*** JeanBriceCombebi has quit IRC17:10
*** alanf-mc has joined #openstack-horizon17:10
*** dsneddon has joined #openstack-horizon17:10
david-lyleso we install dependencies into the venv and pass17:10
*** Kunal has quit IRC17:10
david-lyletox17:10
matt-borlandbrb, have to eat lunch17:15
*** sqchen has joined #openstack-horizon17:15
*** rushiagr_away is now known as rushiagr17:17
*** petertr7_away is now known as petertr717:21
*** hurgleburgler has quit IRC17:23
matt-borlandback17:26
*** vijendar has quit IRC17:26
sqchentqtran: TravT: Are you guys  around?17:27
TravThi sqchen17:27
sqchenTravT: I’d like to know you guys’ idea about auto-focus, if we feel it is not that impoartant, I can abandon it.17:28
sqchenactually I don’t like it anymore, it take me too much time maintian the patch.17:28
TravTdo you have the patch number?17:29
sqchenhttps://review.openstack.org/#/c/156785/17:29
*** jwy has joined #openstack-horizon17:31
doug-fishsqchen: isn't autofocus needed so that newly opened dialogs have the cursor placed in them?17:32
openstackgerritMatt Borland proposed openstack/horizon: Angular API Unit Tests  https://review.openstack.org/17822717:32
*** e0ne has joined #openstack-horizon17:32
TravTsqchen: i think the patch is still good... i'm just looking through the various comments on it right now.17:33
sqchendoug-fish: right.17:33
*** vijendar has joined #openstack-horizon17:33
doug-fishthat seems important to me17:33
doug-fishsqchen: are you trying to ensure you'll get reviews if you update it again?17:34
doug-fishI can commit to that17:34
sqchenTravT: after the code-reorg, it needs a manual rebase, I want to do it ONLY when it become a feathre we want to have.17:34
*** ybathia has joined #openstack-horizon17:34
*** amotoki_ has quit IRC17:34
doug-fishmatt-borland: I've reviewed https://review.openstack.org/#/c/178227/ - the code looks good to me and works well, but one thing confuses me ...17:35
matt-borlandyup, what's up?17:35
doug-fishI can't figure out why the tests succeed both before and after applying the patch, given changes that you've made in hz.api.cinder.js for example17:35
doug-fishdoes that mean I still don't know how to properly run the tests?17:35
*** yamamoto has quit IRC17:36
matt-borlandNope, they do run on both sides of the patch.17:36
matt-borlandwe are just adding a lot more tests and test cases...is that what you meant?17:36
doug-fishmore tests I understand, but hz.api.cinder.js has a changed test17:36
matt-borlandok, just a sec.17:36
matt-borlandlet me look at that one.17:36
doug-fishI can't figure out how it succeeds both before and after -- sure, thanks17:36
*** romainh1 has left #openstack-horizon17:37
matt-borlandin this case it "succeeds" before because it's untested.17:37
matt-borlandthus nothing fails for cinder.17:37
doug-fishyou mean the test doesn't run?17:37
matt-borlandthere is no test for cinder in master.17:38
TravTsqchen: i would propose that we get the tests in and re-org in and then your patch.  So, maybe hold off on a rebase until that's done?17:38
*** robcresswell has joined #openstack-horizon17:38
doug-fishooh - you've included a change to the code as well as the updated test?17:38
matt-borlandyeah.  Because otherwise I'd have to write a) broken tests, or b) a bad test.17:38
matt-borlandit's a cart-and-horse thing :)17:39
* doug-fish thinking17:39
*** josecastroleon has quit IRC17:39
matt-borlandIf I left the code alone, I'd have to write a test that indicated bad language.17:39
sqchenTravT: sure no problems. the auto-focus has its unit tests and do not rely on the functional test though.17:39
matt-borlandIf I write a test with good language and bad code, the test would break.17:40
matt-borlandit wouldn't be proper to write a test that is testing for bad data.17:40
TravTsqchen, just trying to reduce moving parts so we can get those tests / reorg in quickly.17:40
matt-borlandso the lesser of two evils is to fix the code at the same time as applying the test.17:41
doug-fishmatt-borland: oh yeah, that part makes sense. My concern is along the lines of code maintenance. You've fixed bad code in master. If that fix were needed in stable/kilo it would be impossible to cherry-pick back because its in a 1k patch.17:41
*** yamamoto has joined #openstack-horizon17:41
doug-fishwell, it could be cherry-picked but the stable maintainers would never approve it17:41
matt-borlandright.17:41
doug-fishI'm not sure it matters in this case17:41
doug-fishhence the "thinking" on my part17:41
matt-borlandyep, it's a good point, and I had to ponder it a bit as well.17:41
*** robcresswell has quit IRC17:42
*** robcresswell has joined #openstack-horizon17:42
sqchenTravT: I don’t think auto-focus will block those functional tests, but sure, we can will until they are landed.17:42
*** vahidh has joined #openstack-horizon17:45
doug-fishmatt-borland: I'm not sure I like your message changes (I'm still looking at the one in hz.api.cinder.js).  The original message looks like a more usual style to me, though I'm not sure I'd call either wrong - what motivated you to correct/change messages as part of the test effort?17:45
doug-fishI'm wondering if we have some standard which would call the original version of the message wrong17:46
matt-borlandgood point.17:46
matt-borlandI feel that the messages should be standard English as we are supplying them for translation.17:46
*** neelabh has joined #openstack-horizon17:47
matt-borlandalso, use of periods was all over the place.17:47
matt-borlandI had to fix those.17:47
matt-borlandI couldn't write tests that were inconsistent.17:47
TravTi see there actually are some real fixes.17:47
TravTline 23317:47
TravThttps://review.openstack.org/#/c/178227/43/horizon/static/horizon/js/angular/services/hz.api.keystone.js17:47
robcresswellSorry for any noise, sorting out my ZNC setup17:48
doug-fishTravT: yeah, I think that's an easy one to accept17:48
matt-borlandyep17:48
matt-borlandBasically the phrasing was written inconsistently.17:48
matt-borlandI applied consistency because the tests should enforce consistency.17:48
matt-borlandhence, cart-and-horse17:49
TravTdoug-fish... i'm wondering if the ship has sailed on a cherry pick anyway due to the code re-org efforts?17:49
*** cardeois_____ has quit IRC17:49
doug-fishTravT: yeah, that hasn't escaped my attention.17:50
*** cardeois_____ has joined #openstack-horizon17:50
TravTi had that concern on this patch as well: https://review.openstack.org/#/c/181095/17:50
TravTi spoke with david-lyle and I think mrunge about it in Vancouver.  if I recall correctly, they said that with a bit more effort you can do non-cherry pick changes.17:51
doug-fishlooking forward we certainly need to get in the habit of writing smaller patches that fix specific issues to facilitate code maintenance and understandability17:51
*** cardeois has joined #openstack-horizon17:52
matt-borlandthe problem here is that we had a dearth of testing.  I wasn't going to write 100 patches for testing.  keeping 10 alive was hard enough.17:52
matt-borlandif people write tests along side their code, this is not a problem.17:52
*** e0ne is now known as e0ne_17:52
doug-fishagreed17:53
matt-borlanddoug-fish: I will certainly -1 any patch that doesn't add valid testing  from here on :)17:53
doug-fishmatt-borland: I appreciate that effort for all patches except ones that I write.  ;-)17:53
doug-fishit's really the right thing to do17:54
matt-borland:)17:54
*** cardeois_____ has quit IRC17:54
*** e0ne_ is now known as e0ne17:57
*** aix has quit IRC17:57
*** jingjing_ren has quit IRC18:00
*** radez_g0n3 is now known as radez18:02
*** Drago has quit IRC18:04
*** Drago has joined #openstack-horizon18:04
*** cardeois_ has joined #openstack-horizon18:05
*** KunalGandhi has joined #openstack-horizon18:05
*** cardeois has quit IRC18:08
*** openstackgerrit has quit IRC18:09
*** openstackgerrit has joined #openstack-horizon18:10
*** notmars has joined #openstack-horizon18:10
*** dguerri`away is now known as dguerri18:11
*** jprovazn has quit IRC18:12
*** tqtran has joined #openstack-horizon18:14
openstackgerritKelly Domico proposed openstack/horizon: JSCS cleanup - Angular framework widgets (partial)  https://review.openstack.org/18736618:16
openstackgerritChad Roberts proposed openstack/horizon: Adding option for Spark jobs to use Swift paths  https://review.openstack.org/18771118:16
*** notmars has quit IRC18:17
openstackgerritChad Roberts proposed openstack/horizon: Adding option for Spark jobs to use Swift paths  https://review.openstack.org/18771118:23
*** gokrokve_ has quit IRC18:23
*** jingjing_ren has joined #openstack-horizon18:24
*** thiagop has joined #openstack-horizon18:26
*** hurgleburgler has joined #openstack-horizon18:26
*** ybathia has quit IRC18:29
*** yamamoto has quit IRC18:30
*** ybathia has joined #openstack-horizon18:30
rhagartyhello - can anyone point me to some documentation on creating a plug-in? I'm trying to add a new action for an existing volume table row. I can get the action to show up, but I can't get it to link to my new plug-in based form.18:30
*** meagleso has joined #openstack-horizon18:31
*** jingjing_ren has quit IRC18:31
*** yamamoto has joined #openstack-horizon18:31
*** petertr7 is now known as petertr7_away18:33
*** amotoki_ has joined #openstack-horizon18:35
*** notmars has joined #openstack-horizon18:35
*** petertr7_away is now known as petertr718:37
*** ybathia has quit IRC18:37
*** hurglebu_ has joined #openstack-horizon18:37
*** hurglebu_ is now known as hurgleburlger18:37
*** mpavlase has quit IRC18:38
*** hurgleburgler has quit IRC18:38
*** hurgleburlger is now known as hurgleburgler18:38
*** amotoki_ has quit IRC18:40
*** sqchen has quit IRC18:40
*** gokrokve has joined #openstack-horizon18:42
*** elmiko has joined #openstack-horizon18:44
*** gokrokve has quit IRC18:44
elmikoclu_: ping18:44
*** gokrokve has joined #openstack-horizon18:44
*** Piet has joined #openstack-horizon18:44
*** sqchen has joined #openstack-horizon18:44
*** ongk has quit IRC18:45
*** ongk has joined #openstack-horizon18:46
*** yamamoto has quit IRC18:47
*** cardeois_ has quit IRC18:49
*** yamamoto has joined #openstack-horizon18:49
*** cardeois__ has joined #openstack-horizon18:49
*** kiran-r has joined #openstack-horizon18:50
*** ongk has quit IRC18:50
*** cardeois___ has joined #openstack-horizon18:50
*** cbader has quit IRC18:51
*** rhagarty_ has quit IRC18:51
*** cbader has joined #openstack-horizon18:51
*** rhagarty_ has joined #openstack-horizon18:51
*** rhagarty_ has quit IRC18:51
*** cbader has quit IRC18:51
*** rhagarty_ has joined #openstack-horizon18:52
*** cbader has joined #openstack-horizon18:52
*** alexpilotti has quit IRC18:52
matt-borlanddoug-fish: with regards to the API Tests patch, was there anything other than the verbiage that presented a problem/questions?18:54
*** cardeois__ has quit IRC18:54
tqtranmatt-borland: i discovered something accidentally today while testing18:55
matt-borlandtqtran: what was that?18:55
doug-fishmatt-borland: nope. I was just waiting for other issues noted to be addressed.18:55
tqtranif you enable a different language, most tests will fail18:55
*** cbader has quit IRC18:55
tqtranthats because in our specs, we are testing for pure english values18:55
*** cbader has joined #openstack-horizon18:55
tqtrannot sure if that is an issue, are we assuming that testers have to all enable english before testing?18:56
matt-borlandyeah.  That is another reason for getting over to use the i18n pathc, for sure.  To enforce a single lang for testing.18:56
tqtrandoug-fish: what is the i18n norm here?18:56
*** cbader has quit IRC18:56
*** openstackgerrit has quit IRC18:56
*** rhagarty has quit IRC18:56
matt-borlandtqtran: I know I put in a patch last year to get all selenium working in any language.18:56
*** cbader has joined #openstack-horizon18:56
doug-fishtqtran: I haven't seen any unit tests that address i18n18:56
*** rhagarty has joined #openstack-horizon18:56
matt-borlandbut that was done by not checking localized strings18:56
*** rhagarty has quit IRC18:56
*** cbader has quit IRC18:56
*** openstackgerrit has joined #openstack-horizon18:56
doug-fishcheater!18:56
matt-borlandno, I mean by checking things *other* than localized strings.18:57
*** rhagarty has joined #openstack-horizon18:57
*** cbader has joined #openstack-horizon18:57
tqtranwell, we are already including the django i18n in jasmine.html18:57
*** cbader has quit IRC18:57
matt-borlandmore valid tests, that is to say.  Testing a list against itself is not a valid test. :)18:57
*** rhagarty_ has quit IRC18:57
tqtranso it should have access to it, plus you added that shim to karma18:57
*** rhagarty has quit IRC18:57
matt-borlandtqtran: not quite.18:57
tqtranBUT...... the shim won't work properly18:57
doug-fishI'd love to see an automated, effective way to test for i18n issues, but I'm not sure that I've seen a model for that yet18:57
*** cbader has joined #openstack-horizon18:58
tqtranthe spec runner will work though18:58
*** rhagarty has joined #openstack-horizon18:58
matt-borlandexactly, the fundamental problem is you don't want the test to rely on the same translation mechanism.18:58
tqtranbecause its taking it from Django directly18:58
*** rhagarty has quit IRC18:58
*** cbader has quit IRC18:58
*** rhagarty has joined #openstack-horizon18:58
*** cbader has joined #openstack-horizon18:58
tqtran=/ guess im ok with it for now since its just test code. how do you feel about that doug-fish?18:59
* doug-fish on the phone18:59
tqtranoh.... ok18:59
matt-borlandAt the end of the day we can't actually write tests that mean anything string wise unless we focus on a single language.18:59
matt-borlandthe only other way is to have message labels, but django doesn't work that way either.18:59
matt-borlandso essentiall "english" is the message label.18:59
matt-borlandagain, the solution in selenium is not the same as what we have here.19:00
*** rushiagr is now known as rushiagr_away19:01
*** rhagarty has quit IRC19:01
*** rhagarty has joined #openstack-horizon19:01
*** jingjing_ren has joined #openstack-horizon19:01
*** rhagarty has quit IRC19:01
*** rhagarty has joined #openstack-horizon19:02
matt-borlanddoug-fish: what other issues were noted that needed addressing in that API Test patch? I'm looking through the comments.19:02
*** garthb_ has quit IRC19:03
*** garthb has quit IRC19:03
*** cbader has quit IRC19:03
*** garthb_ has joined #openstack-horizon19:03
*** garthb has joined #openstack-horizon19:03
*** cbader has joined #openstack-horizon19:03
doug-fishmatt-borland: last I looked there were comments from Tyr and Cindy that needed to be addressed19:03
*** notmars has quit IRC19:03
* doug-fish still on the phone19:04
*** yamamoto has quit IRC19:04
matt-borlandnp19:04
*** garthb has quit IRC19:04
*** garthb_ has quit IRC19:04
*** rhagarty has quit IRC19:04
*** cbader has quit IRC19:04
* doug-fish needs to stop typing before mrs fish realizes she doesn't have my full attention19:04
tqtranmatt-borland: https://review.openstack.org/#/c/170554/19:04
tqtranalso commented on this test patch19:04
*** cbader has joined #openstack-horizon19:04
*** rhagarty has joined #openstack-horizon19:04
matt-borlandcool!  Thanks tqtran!19:05
*** garthb has joined #openstack-horizon19:05
*** garthb_ has joined #openstack-horizon19:05
*** rhagarty has quit IRC19:05
*** cbader has quit IRC19:05
matt-borlandtqtran: good points on that patch...thanks again19:05
*** garthb has quit IRC19:05
*** garthb_ has quit IRC19:05
*** cbader has joined #openstack-horizon19:06
*** rhagarty has joined #openstack-horizon19:06
*** garthb_ has joined #openstack-horizon19:06
*** garthb has joined #openstack-horizon19:06
*** jingjing_ren has quit IRC19:06
*** garthb has quit IRC19:06
*** yamamoto has joined #openstack-horizon19:07
*** garthb has joined #openstack-horizon19:07
*** rhagarty has quit IRC19:08
*** cardeois____ has joined #openstack-horizon19:08
*** rhagarty has joined #openstack-horizon19:08
*** cardeois___ has quit IRC19:09
*** cbader has quit IRC19:09
*** cbader has joined #openstack-horizon19:09
*** cardeois_____ has joined #openstack-horizon19:09
*** cbader has quit IRC19:10
*** garthb_ has quit IRC19:10
*** garthb has quit IRC19:10
*** petertr7 is now known as petertr7_away19:10
*** cbader has joined #openstack-horizon19:10
*** garthb has joined #openstack-horizon19:10
*** garthb_ has joined #openstack-horizon19:10
*** rhagarty has quit IRC19:11
*** rhagarty has joined #openstack-horizon19:11
*** cbader has quit IRC19:12
*** rhagarty has quit IRC19:12
*** petertr7_away is now known as petertr719:12
*** cbader has joined #openstack-horizon19:12
*** rhagarty has joined #openstack-horizon19:12
*** cardeois____ has quit IRC19:12
*** rhagarty has quit IRC19:13
*** yamamoto has quit IRC19:13
*** rhagarty has joined #openstack-horizon19:13
*** rhagarty has quit IRC19:14
*** cbader has quit IRC19:14
*** cbader has joined #openstack-horizon19:15
*** rhagarty has joined #openstack-horizon19:15
*** jingjing_ren has joined #openstack-horizon19:15
*** dmz has joined #openstack-horizon19:16
dmzhey if i wanted to monitor for failed logons which logs should I look at (horizon only)19:16
neelabhHi Guys, I just configure Ceilometer in OpenStack, But Ceilometer stats does not show, I have same problem like http://lists.openstack.org/pipermail/openstack/2014-April/006554.html, I have also asked question of stackOver flaw: http://stackoverflow.com/questions/30593874/i-have-been-activated-the-ceilometer-but-it-is-showing-any-statics-in-resource-u19:18
doug-fishtqtran: regarding i18n I don't think we want to impose that in general - but if we could come up with reasonable i18n automated tests that would be interesting19:19
*** iamjarvo has joined #openstack-horizon19:19
tqtrandoug-fish: ok cool, thanks for the info19:19
david-lyledmz: /var/log/apache2/horizon_error.log19:19
dmzhmm, let me go look; wasn't expecting it there with it auth through keystone19:19
*** belmoreira has joined #openstack-horizon19:20
dmzdavid-lyle cool, thanks!19:21
*** gyee has quit IRC19:21
*** crobertsrh is now known as _crobertsrh19:22
dmz:( too bad it doesn't say what IP the failure was from19:22
* dmz goes to look at code19:22
openstackgerritMatt Borland proposed openstack/horizon: Angular API Unit Tests  https://review.openstack.org/17822719:22
*** akrivoka has quit IRC19:23
dmzhard to block brute force attacks w/out knowing source of attack :(19:23
*** clu_ has quit IRC19:23
david-lyledmz, you can instrument the code in django_openstack_auth, to provide more info19:25
lhchengdmz: I agree, I've created a custom logger for that one.19:26
davidmichaelkarrHey, I'm trying to to set up a local horizon build so I can start investigating integrating Require.js into the test structure. I'm having some trouble with the initial env setup.19:26
davidmichaelkarrI'm using a CentOS vm.  I cloned the repo, but there doesn't appear to be a "virtualenv" package.19:26
dmzlhcheng have you pushed your logger up so others can benifit from your hard work :)19:27
davidmichaelkarrI'm following the instructions on the QuickStart page: http://docs.openstack.org/developer/horizon/quickstart.html .19:28
openstackgerritKelly Domico proposed openstack/horizon: JSCS cleanup - Angular framework widgets (partial)  https://review.openstack.org/18736619:29
davidmichaelkarrThe "run_tests.sh" script says "Please install 'python-virtualenv'", but the attempt to install that says "no package ...".19:29
matt-borlandtqtran: Hey , I'm confused by your comments on https://review.openstack.org/#/c/170554/19:29
* dmz doesn't quite grok python yet :) need to figure out what's holding the web client ip address..19:29
tqtranhm?19:29
doug-fishdavidmichaelkarr: I have to confess I'm very lazy with environment setup. I always run devstack first - which brings in all of the requirements needed for horizon.19:30
lhchengdmz: nope,  I've done it on my previous job.19:30
matt-borlandWith regards to the file structure, I'm following the code.  If the modalContainerControl needs to be broken out, that's OK.  But I'm just writing a test following the current code structure.19:30
matt-borlandtqtran: should I break out the wizard code as per the reorg as part of this patch?19:30
lhchengdmz: I don't have the code anymore. if you open a bug, maybe we can add it in horizon.19:30
davidmichaelkarrdoug-fish: All I know is to follow the instructions. Are they not up to date?19:30
dmzi'm putting a quick hack in to test now19:31
tqtranmatt-borland: no thats fine, just wanted to point that out19:31
tqtranmatt-borland: just add the test for help-panel and you're gtg19:31
matt-borlandtqtran: the second part is, I am not sure what you mean by help-panel19:31
matt-borlandI don't think that is part of wizard.js19:32
doug-fishdavidmichaelkarr: Not sure -- I don't follow those. If they aren't working I'd say submit a bug https://bugs.launchpad.net/horizon and in the meantime you are welcome to try my suggestion as a workaround19:32
lhchengdmz: the tricky part is getting the IP if the request pass through the load balancer. Might be dependent on the LB hardware.19:32
tqtranmatt-borland: https://github.com/openstack/horizon/blob/master/horizon/static/framework/widgets/wizard/wizard.html#L6419:32
*** notmars has joined #openstack-horizon19:32
tqtranhttps://github.com/openstack/horizon/blob/master/horizon/static/framework/widgets/wizard/wizard.spec.js#L4419:33
tqtranyou're testing for steps, navs, but not help-panels19:33
tqtranif there are 3 steps, there should be 3 navs, and also 3 help panels right?19:33
dmzah true but won't it have x_forwarded_for?19:34
matt-borlandhonestly, I didn't write this test19:34
neelabhGuys Plz help me on this,=> Ceilometer stats does not show, I have same problem like http://lists.openstack.org/pipermail/openstack/2014-April/006554.html plz help me on this....19:34
tqtranunderstood, but its missing, so while we're at it, lets include19:34
matt-borlandyeah, yeah, let me see19:34
tqtran:D19:34
matt-borlandcool, I'll try to get that test in19:34
matt-borland:)19:34
matt-borlandthanks for finding that!19:34
tqtranthanks matt-borland, sorry for being a pain19:34
matt-borlandno, I want it all ironed out!19:34
tqtran:)19:35
*** elmiko has left #openstack-horizon19:35
openstackgerritMerged openstack/horizon: The overview chart is so big and ugly while use `width: 100%`  https://review.openstack.org/18716919:38
*** ongk has joined #openstack-horizon19:39
asahlinongk: clu: tgtran:  For the JSCS cleanup... I am regretting setting the max line width to 80 char...19:40
ongkha. me too19:40
asahlinongk: clu: tgtran:   I am wondering if we should reconsider..  To me it's making the code harder to read.  Thoughts?19:41
asahlintqtran: ^^^^^  sorry, through a 'g' in there19:42
sqchenif 80 is too small, maybe 100. but we don’t want it too big, do we?19:43
asahlinsqchen:  correct, i was thinking 10019:43
asahlinthat was the john papa default length too.19:44
*** nlahouti has quit IRC19:44
sqchenThanks asahlin, I use two culomns in Sublime, more than 100 makes it hard to show in each culomn.19:45
*** sjmc7 has quit IRC19:47
*** kiran-r has quit IRC19:48
*** jtomasek has quit IRC19:48
ongkasahlin, I think 100 would be fine and eliminate a lot of the errors we’re getting19:49
*** hurgleburgler has quit IRC19:49
*** belmoreira has quit IRC19:49
*** mpavlase has joined #openstack-horizon19:51
asahlinclu: tqtran: all in favor say 'aye'19:52
dmzcool, got it logging, not the best but it's a start; where should i file bug/feature request for openstack-auth?19:53
*** TravT has quit IRC19:53
*** lucas___ has joined #openstack-horizon19:54
*** sjmc7 has joined #openstack-horizon19:54
*** alanf-mc has quit IRC19:54
*** TravT has joined #openstack-horizon19:55
tqtranok 100 is fine19:55
pauloewertondmz, https://bugs.launchpad.net/django-openstack-auth/19:56
dmzthanks19:56
openstackgerritShaoquan Chen proposed openstack/horizon: [Launch Instance Fix] Clean up Wizard scope  https://review.openstack.org/16997619:59
r1chardj0n3smorning19:59
openstackgerritMatt Borland proposed openstack/horizon: Extending test coverage for core components  https://review.openstack.org/17055420:00
*** neelabh has quit IRC20:02
matt-borlandtqtran: FYI I just put up a patchset for https://review.openstack.org/#/c/170554/ that includes a (very simple) test for help-panel.20:07
matt-borlandensures that it has one as an element20:07
*** Raildo has joined #openstack-horizon20:08
*** openstackgerrit has quit IRC20:10
*** openstackgerrit has joined #openstack-horizon20:10
matt-borlandr1chardj0n3s: afternoon!20:13
r1chardj0n3ssomeone please wake me up when this other, random, unrelated, disconnected set of patches about testing land, kthx20:14
*** iamjarvo has quit IRC20:14
*** jtomasek has joined #openstack-horizon20:19
*** cardeois_____ has quit IRC20:21
*** cardeois_____ has joined #openstack-horizon20:22
*** clu_ has joined #openstack-horizon20:22
*** clu_ has quit IRC20:24
*** amotoki_ has joined #openstack-horizon20:24
*** gary-smith has joined #openstack-horizon20:25
*** clu_ has joined #openstack-horizon20:27
openstackgerritAaron Sahlin proposed openstack/horizon: JSCS cleanup - Angular framework widgets (partial2)  https://review.openstack.org/18775820:28
*** amotoki_ has quit IRC20:29
*** alanf-mc has joined #openstack-horizon20:29
*** julim has quit IRC20:32
*** Raildo_ has joined #openstack-horizon20:35
*** operator99 is now known as gyee20:39
*** Raildo has quit IRC20:39
*** iamjarvo has joined #openstack-horizon20:42
*** ybathia has joined #openstack-horizon20:46
*** notmars has quit IRC20:50
*** gyee has quit IRC20:53
*** gyee has joined #openstack-horizon20:53
*** hurgleburgler has joined #openstack-horizon21:00
*** jwy has quit IRC21:01
*** petertr7 is now known as petertr7_away21:02
*** Raildo__ has joined #openstack-horizon21:03
*** jtriley has quit IRC21:05
*** Raildo_ has quit IRC21:08
dmzpauloewerton not sure if it'll help or be deleted or what :) https://bugs.launchpad.net/django-openstack-auth/+bug/1461266 not even sure it's a bug but i didn't see a way to request a feature21:08
openstackLaunchpad bug 1461266 in django-openstack-auth "Failed logon does not state where user is from (REMOTE_IP)" [Undecided,New]21:08
*** ducttape_ has joined #openstack-horizon21:09
*** e0ne has quit IRC21:11
*** radez is now known as radez_g0n321:11
*** ericpeterson has quit IRC21:12
*** nlahouti has joined #openstack-horizon21:12
openstackgerritAaron Sahlin proposed openstack/horizon: JSCS Cleanup - Legacy JS test files  https://review.openstack.org/18730121:13
*** radez_g0n3 is now known as radez21:14
*** notmars has joined #openstack-horizon21:15
*** hurgleburgler has quit IRC21:16
*** hurgleburgler has joined #openstack-horizon21:18
*** lblanchard has quit IRC21:19
*** dboik has quit IRC21:21
*** hurgleburgler has quit IRC21:21
*** hurglebu_ has joined #openstack-horizon21:22
*** Raildo__ has quit IRC21:22
*** hurglebu_ has quit IRC21:22
*** cardeois______ has joined #openstack-horizon21:22
*** hurgleburgler has joined #openstack-horizon21:22
*** doug-fish has left #openstack-horizon21:25
*** iamjarvo has quit IRC21:25
*** cardeois_____ has quit IRC21:26
*** mattfarina has quit IRC21:28
*** hurgleburgler has quit IRC21:28
*** hurgleburgler has joined #openstack-horizon21:28
*** dsneddon has quit IRC21:29
*** jwy has joined #openstack-horizon21:30
*** hurgleburgler has quit IRC21:30
*** thiagop has quit IRC21:32
*** cardeois_______ has joined #openstack-horizon21:32
*** dsneddon has joined #openstack-horizon21:34
*** cardeois______ has quit IRC21:34
*** hurgleburgler has joined #openstack-horizon21:36
*** sqchen has quit IRC21:36
*** peristeri has quit IRC21:36
*** lucas___ has quit IRC21:37
*** matt-borland has quit IRC21:38
*** hurglebu_ has joined #openstack-horizon21:39
*** hurglebu_ has quit IRC21:39
*** hurgleburgler has quit IRC21:40
*** hurgleburgler has joined #openstack-horizon21:40
*** jbell8 has quit IRC21:40
*** jbell8 has joined #openstack-horizon21:41
bpokornyDoes anyone know if Horizon uses the Glance v2 API for anything currently?21:41
bpokornyJust looking at the logs, it looks like most calls to Glance go to the v1 API.21:42
david-lylebpokorny: I don't think so21:42
*** hurgleburgler has quit IRC21:42
david-lylethere is a BP to add support21:42
david-lyleTravT might own it21:42
*** hurgleburgler has joined #openstack-horizon21:42
david-lylehe might be willing to let it go and provide compensation21:43
TravThey bpokorny21:43
TravTif you want it, please take it21:43
TravTbut to your question21:43
TravTwe do use v2 for metadata definitions21:43
david-lyleah, that would be true, wouldn't it21:43
bpokornyCool, sounds good.  Thanks, david-lyle and TravT.21:44
TravTso if you go to admin --> images / flavors / aggregates and do an update metadata on them, it will call the v2 API to get available definitions21:44
TravTif v2 isn't available, you'll have to freeform it21:44
bpokornyI see.  Thanks, TravT.21:45
*** jbell8 has quit IRC21:46
openstackgerritAaron Sahlin proposed openstack/horizon: JSCS cleanup - Angular framework widgets (partial2)  https://review.openstack.org/18775821:47
openstackgerritBrian Tully proposed openstack/horizon: WIP - Hide Quota/Usage table actions re Domains  https://review.openstack.org/18778321:50
*** aix has joined #openstack-horizon21:50
*** jtomasek has quit IRC21:51
*** dguerri is now known as dguerri`away21:51
*** asahlin is now known as asahlin_afk21:53
*** hurgleburgler has quit IRC21:53
*** Raildo has joined #openstack-horizon21:53
*** ZZelle_ has joined #openstack-horizon21:55
*** notmars has quit IRC21:57
*** radez is now known as radez_g0n321:59
*** garthb_ has quit IRC21:59
*** garthb has quit IRC21:59
*** KunalGan_ has joined #openstack-horizon22:01
*** hurgleburgler has joined #openstack-horizon22:03
*** hurgleburgler has quit IRC22:03
*** KunalGan_ has quit IRC22:03
*** lhcheng has quit IRC22:04
*** KunalGan_ has joined #openstack-horizon22:04
*** KunalGandhi has quit IRC22:04
*** garthb has joined #openstack-horizon22:05
*** garthb_ has joined #openstack-horizon22:05
*** absubram has quit IRC22:07
*** lhcheng has joined #openstack-horizon22:08
openstackgerritEric Peterson proposed openstack/horizon: Add fip to lbaas vip info  https://review.openstack.org/18067622:13
*** ZZelle_ has quit IRC22:14
*** jingjing_ren has quit IRC22:15
openstackgerritCindy Lu proposed openstack/horizon: Adding John Papa style guide to JSCS  https://review.openstack.org/18572522:16
openstackgerritCindy Lu proposed openstack/horizon: JSCS cleanup - Angular services  https://review.openstack.org/18615422:19
openstackgerritBrian Tully proposed openstack/horizon: WIP - Hide Quota/Usage table actions re Domains  https://review.openstack.org/18778322:19
*** tqtran_ has joined #openstack-horizon22:20
*** cardeois_______ has quit IRC22:20
*** vijendar has quit IRC22:20
*** cardeois_______ has joined #openstack-horizon22:20
openstackgerritDiana Whitten proposed openstack/horizon: Bootstrap variables should derive from a known theme.  https://review.openstack.org/18779722:30
*** hurgleburgler has joined #openstack-horizon22:33
*** Sukhdev has joined #openstack-horizon22:35
openstackgerritMerged openstack/horizon: Extending test coverage for core components  https://review.openstack.org/17055422:40
tqtranclu_: thanks for updating the rules22:41
*** ducttape_ has quit IRC22:44
*** jingjing_ren has joined #openstack-horizon22:45
*** tosky_ has joined #openstack-horizon22:46
openstackgerritKelly Domico proposed openstack/horizon: JSCS cleanup - Angular framework widgets (partial)  https://review.openstack.org/18736622:46
openstackgerritKelly Domico proposed openstack/horizon: JSCS cleanup - Angular framework widgets (partial)  https://review.openstack.org/18736622:47
*** garthb_ has quit IRC22:48
*** garthb has quit IRC22:48
*** clu_ has quit IRC22:50
*** jingjing_ren has quit IRC22:52
*** tosky_ has quit IRC22:57
*** sqchen has joined #openstack-horizon22:59
*** kellyd has joined #openstack-horizon23:01
openstackgerritKelly Domico proposed openstack/horizon: JSCS cleanup - Angular framework widgets (partial)  https://review.openstack.org/18736623:01
*** tqtran_ has quit IRC23:02
*** ongk has quit IRC23:03
*** kellyd is now known as ongk23:03
*** ongk has quit IRC23:04
*** hurgleburgler has quit IRC23:12
*** stevemar has quit IRC23:12
*** hurglebu_ has joined #openstack-horizon23:12
*** garthb has joined #openstack-horizon23:12
*** garthb_ has joined #openstack-horizon23:12
*** stevemar has joined #openstack-horizon23:12
*** hurglebu_ has quit IRC23:17
*** hurgleburgler has joined #openstack-horizon23:18
*** hurgleburgler has quit IRC23:21
*** hurglebu_ has joined #openstack-horizon23:21
*** chlong has joined #openstack-horizon23:22
*** jingjing_ren has joined #openstack-horizon23:23
*** hurglebu_ is now known as hurgleburgler23:25
*** Drago has quit IRC23:25
*** mpavlase has quit IRC23:28
*** hurgleburgler has quit IRC23:32
*** hurgleburgler has joined #openstack-horizon23:33
*** lhcheng has quit IRC23:35
*** hurgleburgler has quit IRC23:38
*** clu_ has joined #openstack-horizon23:38
*** hurgleburgler has joined #openstack-horizon23:38
*** alexvictorchan has quit IRC23:40
*** hurgleburgler has quit IRC23:42
*** hurglebu_ has joined #openstack-horizon23:42
*** bradjones has quit IRC23:43
*** bradjones has joined #openstack-horizon23:45

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!