skulltip | can i set a generic webpage on launchpad, or is it the other way around - set up a webpage to point to the launchpad project? | 00:42 |
---|---|---|
Ursinha | skulltip, you can add the documentation link in the project (iirc), that can point to whatever you want | 00:44 |
Ursinha | you can't create a generic webpage in launchpad | 00:44 |
skulltip | thanks | 00:44 |
Ursinha | np | 00:45 |
=== jtv1 is now known as jtv | ||
=== wedtm is now known as wedtm|away | ||
=== wedtm|away is now known as wedtm | ||
=== wedtm is now known as wedtm|away | ||
=== wedtm|away is now known as wedtm | ||
=== wedtm is now known as wedtm|away | ||
=== wedtm|away is now known as wedtm | ||
=== wedtm is now known as wedtm|away | ||
=== wedtm|away is now known as wedtm | ||
voltagex | hey, I'm having a lot of trouble logging into help.launchpad | 07:38 |
voltagex | nevermind, SSO finally worked | 07:39 |
=== czajkowski changed the topic of #launchpad to: https://launchpad.net/ | Help contact: czajkowski | Launchpad is an open source project: https://dev.launchpad.net/ | This channel is logged: http://irclogs.ubuntu.com/ | User Guide: https://help.launchpad.net/ | Support: https://answers.launchpad.net/launchpad | For packaging help: join #ubuntu-packaging | ||
=== wedtm is now known as wedtm|away | ||
=== wedtm|away is now known as wedtm | ||
Ursinha | quick question: in searchTasks, the parameter omit_targeted is default False? | 13:34 |
Ursinha | (context: launchpad API thing.searchTasks()) | 13:35 |
=== yofel_ is now known as yofel | ||
=== bulldog98_ is now known as bulldog98 | ||
bac | Ursinha: the default for omit_targeted in production is False. for a devel instance the default is True. | 15:07 |
Ursinha | I see, thanks bac! | 15:07 |
Ursinha | (that makes sense now) | 15:07 |
bac | glad it does to you! | 15:07 |
Ursinha | lol | 15:09 |
Ursinha | bac, I'm trying to understand why bug 966558 isn't showing in my search | 15:12 |
ubot5 | Launchpad bug 966558 in juju (Ubuntu Precise) "add explicit ingress rule on non-Local provider bootstrapping node for zookeeper" [High,Triaged] https://launchpad.net/bugs/966558 | 15:12 |
Ursinha | bac, I'm doing a ubuntu.searchTasks(bug_supervisor=ubuntu-server, omit_targeted=False) | 15:13 |
Ursinha | and it still doesn't return | 15:13 |
Ursinha | not sure what I'm doing wrong | 15:13 |
bac | Ursinha: it looks like the juju source package has no bug supervisor set so that's why it isn't matching | 15:20 |
Ursinha | bac, hmmm so.. we've been "exploring" a bug for a while... bug is: if a team is subscribed to a package, bug_supervisor returns package's bugtasks | 15:21 |
Ursinha | well, It's been working like that, I think that the bug doesn't apply for targeted tasks? I'm confused | 15:21 |
bac | Ursinha: i'm not sure either. TBH i haven't used 'searchTask' from the API very much. | 15:22 |
Ursinha | bac, right. That's pretty much 99% of my API use :) | 15:22 |
Ursinha | thanks for the light :) | 15:22 |
bac | np, hope it helped somewhat | 15:23 |
Ursinha | it did! | 15:23 |
=== deryck is now known as deryck[lunch] | ||
=== chrisccoulson is now known as sebI28 | ||
=== sebI28 is now known as chrisccoulson | ||
=== matsubara is now known as matsubara-lunch | ||
=== deryck[lunch] is now known as deryck | ||
SEJeff | Question... I had an atom/rss feed of the graphite project on launchpad | 18:03 |
SEJeff | which has magically became a "Announcements published via Launchpad" rss feed in liferea | 18:04 |
SEJeff | Was this accidentally broken or is rss feeds of commit logs in lp broken? | 18:04 |
SEJeff | s/is/are/ | 18:04 |
=== matsubara-lunch is now known as matsubara | ||
dobey | SEJeff: did you subscribe to a project feed, or a branch feed? | 18:16 |
SEJeff | dobey, I believe it was for the main branch | 18:17 |
SEJeff | As thats all I actually cared about | 18:17 |
SEJeff | or the trunk branch actually | 18:17 |
dobey | actually, i don't see any rss feed for the branch | 18:17 |
dobey | https://code.launchpad.net/~graphite-dev/graphite/main | 18:17 |
SEJeff | dobey, http://bazaar.launchpad.net/~graphite-dev/graphite/main/changes | 18:18 |
SEJeff | View source and you see the feed | 18:18 |
SEJeff | liferea autodiscovered it from putting in that | 18:18 |
SEJeff | Recently (within the past few weeks) that cahnged to "Announcements published via Launchpad" | 18:19 |
dobey | clicking on it shows commits | 18:19 |
dobey | what feed is your liferea actually looking at? | 18:20 |
SEJeff | dobey, Right now, http://feeds.launchpad.net/announcements.atom | 18:20 |
dobey | sounds like possibly a client problem | 18:21 |
SEJeff | dobey, This very well might be a pebkac of some sort, I'm not really sure. I'll just manually set the feed location back to: http://bazaar.launchpad.net/~graphite-dev/graphite/main/atom as I'm thinking liferea wen't rogue | 18:22 |
SEJeff | Thanks | 18:22 |
dobey | you might want http://feeds.launchpad.net/graphite/revisions.atom instead | 18:22 |
dobey | or maybe not ;) | 18:23 |
SEJeff | dobey, Thanks sir | 18:23 |
dobey | sure | 18:24 |
ahasenack | hi, quick api question, | 18:54 |
ahasenack | I have a list of bug_tasks | 18:54 |
ahasenack | bug_tasks = milestone.searchTasks(status="Fix Committed") | 18:55 |
ahasenack | obtained like that | 18:55 |
ahasenack | now I iterate over it | 18:55 |
ahasenack | and I want to change the milestone of the bug | 18:55 |
ahasenack | does this work? | 18:55 |
ahasenack | for bug_task in bug_tasks: | 18:55 |
ahasenack | bug_task.milestone = milestone_dest | 18:55 |
ahasenack | bug_task.lp_save() | 18:55 |
ahasenack | ? | 18:55 |
ahasenack | where milestone_dest is obtained via project.getMilestone(name=milestone_name) | 18:56 |
ahasenack | I guess it does, just tried with one bug | 19:02 |
=== bulldog98_ is now known as bulldog98 | ||
=== yofel_ is now known as yofel | ||
=== matsubara is now known as matsubara-afk |
Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!