[00:00] oh, igcs updated loom, right [00:00] Yes, the patches igc submitted recently. [00:00] abentley: what was the bug? [00:00] didn't jml have a patch for clone already? [00:00] I did [00:01] it got merged into abentley's branch too. [00:01] lifeless: yes, and it was my modification of that patch which exposed the bad behavior. [00:01] lifeless: Anyhow, when I thought it was about all_revision_ids, I thought I should confirm that it should work across fallbacks. [00:02] The bug is that we open a repository before opening a branch, and we attempt to use that repository even if we find a branch later. [00:03] oh yes, references won't like that [00:03] Exactly. [00:03] It doesn't follow branch references and it also doesn't set fallback repositories. [00:06] Anyhow, I've got a fix now. I only pinged because I misdiagnosed the problem at first. [00:06] abentley: sweet [00:22] another newbie question. just tried my first commit, and got this error: bzr: ERROR: Cannot lock LockDir [00:23] nosecow, is this on a checkout? [00:24] beuno: no, the checkout was successful. created a test directory with one file, then tried to commit, and got that error [00:24] nosecow, this was using a lp:~yadayada type for URL? As in, from Launchpad? [00:25] beuno: no. bzr co ftp://myhost/var/www/mysite c:\apache\htdocs\mysite [00:26] that's odd then. Can you paste in the full error? [00:26] yes [00:26] bzr: ERROR: Cannot lock LockDir(ftp://linuxdev01/var/www/propertypartner/.bzr/re / pository/lock): File exists: '/var/www/propertypartner/.bzr/repository/lock/un7w / nlmbyp.tmp': 550 Create directory operation failed. [00:27] nosecow, what version of bzr are you using? [00:27] ms windows ftp server? [00:27] nosecow: thats strange. Can you use 'sftp' instead of 'ftp' - it is a much nicer protocol and less problematic [00:27] bueno: 1.5, just downloaded [00:28] lifeless: had trouble with setting up sftp; will go edit my conf file...can i just checkout again once i change? [00:28] nosecow: yes === mw is now known as mw|out [00:32] lifeless: changed default scheme in authentication.conf to sftp; but bzr does not seem to be picking up the proper username - is still using it's 'guess' [00:33] nosecow: put the username before the url like: [00:33] sftp://USERNAME@hostname/..... [00:33] okeydokey [00:34] sigh: bzr: ERROR: File exists: u'C:/apache/htdocs/propertypartner/.bzr': [Error 183] C / annot create a file when that file already exists: u'C:/apache/htdocs/propertypa / rtner/.bzr' [00:34] * igc back in a few hours [00:34] should i just delete it? [00:35] and, i really appreciate this help... [00:36] yes, you can just delete that if its where you want to checkout to [00:36] back in a little bit : food [00:40] Okay, sftp protocol used, checkout from linux server to windows machine works fine, adding a directory and attempting to commit yields: [00:40] bzr: ERROR: Cannot lock LockDir(sftp://nosecow@linuxdev01/var/www/project/.bzr/repository/lock): Permission denied: "/var/www/project/.bzr/repository/lock/ctb89f5sh3.tmp": [Errno 13] Permission denied [00:41] nosecow: Does your sftp user have read/write access to the repo? [00:41] ooh good question. can you tell it's been a long time since I used unix? :) === mwhudson__ is now known as mwhudson [00:47] peng: excellent advice, thank you [00:48] yesssssssssssss [00:48] peng,bob2,lifeless: thank you all for the help. i have the basics working now. I appreciate all of your help! [00:48] :) [01:01] bye [01:11] spiv: were you going to come down here today? [01:19] poolie: yeah. I'm just about to head out the door. I slept badly, and was just trying to figure out if I was sick or just tired before I came down and possibly spread contagion :) [01:19] poolie: it seems I was just tired, which is good (relatively speaking...) [01:20] beuno: what do you think of the new loggerhead bugs? [01:23] lifeless: https://bugs.edge.launchpad.net/loggerhead/+bug/240504 is a bit interesting [01:23] Launchpad bug 240504 in loggerhead "Should not generate revisioned URLs unless specifically needed" [Undecided,Confirmed] [01:24] because if you want to generate a link to "file X in rev Y" i think you need to load the inventory for rev Y [01:24] which is a pain, probably [01:24] mwhudson: well [01:25] spiv, oh np, just wondered [01:25] glad you're not ill [01:25] mwhudson: first approximation: load the inventory for .tip. If the modification revision is the same as in .tip, then you don't need to specify a revision [01:26] mwhudson: anyhow, this is why bzr search has phrase searches for (file_id, revision_id) -> 'p', '', PATH [01:26] ah interesting [01:27] so if we demanded bzr-search, we could do this more quickly? [01:27] mwhudson: its how 'bzr search foo' can return README as a path [01:27] (not sure this is sane, of course) [01:27] mwhudson: well, there are multiple answers. In particular I wanted to say to Olav that we agree its not friendly [01:27] sure [01:28] right now I'd do the low hanging fruit [01:28] jam: spiv: I've mailed a sample of how to do it easily [01:28] well, i think the priority with loggerhead is to get some of the branches floating around merged [01:28] jam: spiv: feedback + things that would make it easier appreciated [01:29] using tango stuff would be cute; cuter still if it was just an optional theme [01:31] i don't think the visual stuff is going to be ready for merging for a while [01:31] (well, a week or so, let's say) [01:31] mwhudson: :P [01:31] * mwhudson is running on internet time [01:34] blog aggregators must die [01:34] http://www.asofterworld.com/oq-display.php?id=58 [02:13] http://datacharmer.blogspot.com/2008/06/mysql-sandbox-122-and-joys-of.html [02:14] lifeless: nice [02:28] sweet [02:32] lifeless: assertRaises where? [02:33] in the test [02:33] you raise a specific exception [02:33] and fail if its not raised [02:33] that fits assertRaises doesn't it ? [02:33] hum [02:34] i want to generate an ImportError [02:34] if it doesn't thats fine - but its close enough people will get confused IMO so a note to that effect would help clarity [02:34] i don't see how assertRaises can do that for me [02:34] possibly i should remove the 'else' clause; if for some reason that module is loaded it will fail in a different way [02:35] the raise is just to generate the input for the real test [02:35] which is the call to format_exception [02:35] right [02:35] i guess i could pass a lambda to assertRaises but i don't see the point [02:35] there is a bit of action at a distance happening I think. Specifically - are the args to ImportError well defined across python versions? If they are why don't you just 'raise ImportError' [02:36] i do... [02:36] if they are not well defined then presumably the code is fragile, or we need python version based conditional logic [02:36] oh in the other test [02:36] + try: [02:36] + import ImaginaryModule [02:37] it seems like this is more realistic and no harder than just raising ImportError [02:37] so I guess I'm saying I'd have done a test that 'import MissingModule' resulted in an ImportError with a specific value in the args, to catch python variations, and then all the other tests as 'raise ImportError(...)' [02:37] which is close to what you've done ;) [02:38] ok [02:38] that would also work [02:38] that would be a bit more precise, i don't think it's needed here [02:38] thanks for the prompt review [02:38] anyhow, its bb:approve'd [02:38] the rest is sugar [02:38] can you also read my comment on https://bugs.edge.launchpad.net/bzr/+bug/205230 [02:38] Launchpad bug 205230 in bzr "error message recommending incorrect setting of PYTHONPATH" [Low,Confirmed] [02:38] at the end [02:39] want to trivilaly fix that too [02:40] thats an improvement [02:41] a note though - folk with .zips (e.g. windows) may need 'bzr.zip' on the path. [02:41] 205230 is good as is [02:41] just speculating about potential further tweaks [03:09] time to pkill firefox [03:10] ah look, 20% cpu back just like that [03:34] That must be nice. I get 100% (well, 100% of one CPU) back when I SIGSTOP it while not actively using it :| [04:43] * beuno looks at new LH bugs [04:45] ah, fun [04:46] mwhudson, I was thinking, it shouldn't be too hard for us to be able to optionally serve branches over http [04:46] beuno: you have a few to look ;) [04:46] would be a nice feature to have [04:46] * mwhudson loves how fast bzr log --short | less starts up now [04:46] hey Verterok [04:46] beuno: um, true i guess [04:47] beuno: broadly speaking, i would tend to leave serving static files to apache... but i guess it wouldn't be hard [04:47] mwhudson, we could even provide URLs to branch ay any given point in time, for your copy'n'paste comfort [04:47] * mwhudson hmms [04:47] I agree, although as a plugin for bzr that would rock :) [04:47] yeah, interesting idea [04:48] file a bug on that too :) [04:48] heheh [04:48] more bugs? :p [04:48] beuno: there's more stuff in my wsgi-ify branch now [04:48] beuno: bugs are great [04:48] absolutely, makes it clearer what to do! [04:48] * beuno looks at the whisky branch [04:49] also, we should have export on there. "Download tar.gz for this revision" [04:49] that sounds resource intensive [04:49] but, well, sure :) [04:50] so long as we can turn it off for lp... [04:50] probably, but, well, generate it once, keep it forever :) [04:51] well, that just consumes a different resource [04:52] storage is cheaper, but yes, all these things should be optional [04:56] getting a tar is not expensive [04:56] compressing it is somewhat [05:00] mwhudson, what do you think about setting a milestone for 1.3 in LP, and filing bugs on what we absolutely want for it, and target them. That way it should be easier to focus [05:00] beuno: i think that's a good idea [05:01] mwhudson, cool, because only you can do that :p [05:02] beuno: i've just made you a 'driver', does that let you do it? :) [05:03] mwhudson, heh, no :) [05:03] darn [05:04] I wonder what that does anyway, I don't see anything new I can do [05:04] maybe it means you can target bugs to milestones? [05:05] not even [05:05] beuno: do you think i should create a new productseries? [05:05] beuno: you should apply to join the loggerhead-team, btw [05:06] i'll poke robey to make me an admin [05:06] jml: "i'd love to" cute :) [05:06] like Robert's thing that "the code will do X" meaning "will after it's written" :) [05:06] mwhudson, requested. I'm not sure about the series thing, that always confuses me. I think you *have* to [05:07] * beuno applies [05:07] i guess that it confuses me too points to a problem in launchpad... [05:07] beuno: do we call it 1.3 or 2.0 do you think? :) [05:07] poolie: well, the first email was sent *before* I consulted my calendar :) [05:08] mwhudson, 2.0 sounds cooler :p Maybe we can try releasing the same as bzr versions, to me it less confusing and obvious with what version it works with [05:09] beuno: that's probably a good idea [05:09] i guess that means 1.6 then as we'll probably release between 1.6 and 1.7 [05:09] yeap, sounds good [05:09] I love how versioning is so flexible :) [05:12] hello beuno, mwh [05:13] howdy poolie [05:13] beuno: i think maybe you can "nominate a bug for the 1.6 release" [05:14] mwhudson, nope, I can for bzr, not for LH [05:14] beuno: how strange [05:15] https://bugs.edge.launchpad.net/loggerhead/+bug/236702/+nominate says "The loggerhead release manager is Martin Albisetti. " :) [05:15] Launchpad bug 236702 in loggerhead "No permalink to "latest revision of file" in Loggerhead" [Undecided,Confirmed] [05:15] oh, I can access that link :/ [05:16] releases, productseries and milestones do not have entirely obvious interactions in launchpad [05:16] * mwhudson adjusts his understatement settings [05:16] I can't find anywhere in the UI to do it... [05:16] beuno: "nominate for release" in the actions portlet? [05:17] ah, target to release [05:17] and bzr uses "milestones" [05:18] well, i can add a milestone to the 1.6 series [05:18] i'm not quite sure if i want to though [05:19] don't worry about it, I'll use that [05:19] it's odd, in bzr it *does* say Nominate for... [05:20] oh, maybe all i can do is nominate for a release [05:20] but because you're the driver you can actually target it? [05:20] but you're part of the group and I'm not [05:20] but it makes sense [05:20] sort of [05:21] :) [05:21] i could actually read the code to figure this out, but it feels rather like cheating [05:21] right. " Bug nominations are evaluated by release managers and accepted or declined for fixing in a release. " [05:21] hahaha, and, from the looks of it, you may get lost for a while :p [05:22] oh, https://help.launchpad.net/Projects/SeriesMilestonesReleases seems relevant [05:25] mwhudson, bug #156453 probably should go away with the release of the zpt branch, right? [05:25] Launchpad bug 156453 in loggerhead "production loggerhead branch leaks memory" [Critical,Fix committed] https://launchpad.net/bugs/156453 [05:25] beuno: hope so, let's see [05:29] lifeless: is it ok with you if i disable test_35_wait_lock_changing (patch for this on the list) [05:29] poolie: if you must; I thought we'd discussed a simple way using a closure to test it with being timing dependent or threading [05:30] not as simple as this :) [05:30] i do want to finish that but i don't want to detour into it too much [05:30] let me rephrase - no, I don't think its a good idea to disable it. Its (I estimate) < 2 hours to fix properly. If we disable it, just delete it because noone will ever fix it.. [05:31] hm [05:31] should i fix it now or read the VF patch? [05:31] lets ask spiv where is review is up to [05:31] (biab) [05:31] spiv: where is your review up to [05:51] lifeless: he was working on his hpss version handling patch [05:51] we are both going back to that now [05:54] poolie: so, I don't know the answer to 'should i fix it now or read the VF patch?' [05:55] lifeless: fwiw, I'm reading your knit.py changes atm [06:06] beuno: :) [06:06] ok, sending an incremental diff with the stuff I've improved so far [06:08] spiv/lifeless, i'm reading log.py [06:08] lifeless: i'll read it now and do this [06:08] will try to fix it properly later [06:09] if its timeslice expires i will just disable the test though [06:09] poolie: can I help with the VF review? [06:09] otherwise, I'll review jam's annotate patch [06:11] merge.py [06:11] igc, hi! [06:11] i think it's ok with spiv and me [06:11] hi poolie! [06:11] time to stop for me today [06:12] beuno: another day without reviewing your urls branch, sorry about that :( [06:12] poolie: I'd like a chat with an intelligent teddy bear [06:13] mwhudson, no problem. wsgi thing is more important. I still have a few tweaks to add to it. I'll try and get those done tomorrow so you can review all if it in one batch [06:13] ok [06:13] poolie: so I'm going to ring you :) [06:14] lifeless: be careful with intelligent teddy bears [06:14] lifeless: they can talk back! [06:14] mwhudson, I reorganized the bugs a bit, but feel free to change around anything you'd like. I targeted more or less what we've been discussing. I assume we're going to release with the new theme, right? [06:15] beuno: i think we should [06:15] so new templating engine, new look, new http front end, ... [06:15] anything left for us to change? :) [06:15] tests :p [06:15] most of history.py isn't changing i guess [06:15] ah yes, good point :) [06:16] no, but I saw you have a blueprint to replace that with something more sensible [06:16] maybe we can discuss that after this release, and work out a plan for that [06:17] oh, er, that blueprint is way out of date [06:17] the idea behind it is still good perhaps [06:18] it's worth looking in to. I get the impression we should change it too, so we should have a talk about it after we get this release out, and see if it still makes sense [06:18] and, well, tests. Which can be the main focus of the next release, apart from maybe bug fixing :) [06:34] (back) [06:47] poolie: jam asked this morning if you'd send an email to the list at the close of your day explaining where you and spiv were up to in reviewing the VFs stuff. That way, he can pick it up overnight. He'd also said it was fine if you completed the review before then. :-) [06:47] heh thanks :) [06:47] ok [06:47] i think we can probably finish it today [06:47] i should send an update mail anyhow [06:48] * beuno is off to bed. Night all [06:53] lifeless: in so many places the key list is the mapping of a function over some other list it kind of seems like there should be a more direct idiom [06:54] like that you should pass in a closure that does the mapping [06:54] however i suppose this would not actually make it any cleaner [06:59] I think it would make it less clean [06:59] because it would pollute the interface [07:06] mm [07:06] it was not a suggestion, just a thought [07:06] yah [07:06] merge.py done, looking at your incremental patch [07:07] I was just saying what I thought of the thought :) [07:07] * lifeless eats lunch [07:08] > + Tuple based apis below, string based, and key based apis above [07:08] i don't understand that sentence [07:08] oh hmm [07:09] so I'm trying to say that below the line the code deals only with tuples [07:09] and above you have either plain strings [07:09] or for some apis (existing ones!) tuples that are types in that tuple[0] means 'fileid', tuple[1] means 'revisionid' (for that specific interface) [07:22] lifeless: ok, some feedback sent; if you want me to take a stab at rephrasing it i can [07:22] um [07:22] there is the risk that by the time we get there i will just understand it and not need the docs [07:22] but i think the initial review experience shows its worthwhile [07:24] + if content._lines and content._lines[-1][1][-1] != '\n': [07:24] Ow :) === timchen1` is now known as nasloc__ [07:25] poolie: I think there is value in that yes [07:25] spiv: yes, but thats already in mainline :P [07:25] spiv: I think. [07:26] lifeless: Not that my quick search of the diff finds :P [07:26] lifeless: I blame AnnotatedKnitContent rather than you, though ;) [07:26] spiv: hmm, must have been pulled out with poolies other fix; I do recall not liking that line [07:26] spiv: I think we can delete it [07:26] lifeless: awesome :) [07:27] oh, that reminds me [07:27] that bug is indeed fixed [07:35] lifeless, spiv, some comments sent [07:35] thanks [07:41] + suffix_parents = self._kndx_cache[prefix][0][key[-1]][4] [07:41] That's perhaps even more impressive ;) [07:43] doing reconcile.py [08:03] spiv, i guess you did all of remote.py etc [08:05] poolie: My notes say I've done remote.py, smart/repository.py, branch.py, bundle/serializer/v4.py, bzrdir.py, check.py and fetch.py. And just sent knit.py [08:06] yay way to go [08:16] poolie: oh, and annotate.py, builtins.py and inventory.py (which are all pretty trivial) [08:35] ok will do revisiontree [08:42] poolie: asking now to avoid latency... [08:42] iter_topo_keys - why is it a good time now to fix a bug in existing code ?:P [09:01] lifeless: in that it accepts keys=None? [09:02] let's not add a new api that propagates problems [09:02] Done knitrepo.py [09:02] i suspect you can just delete those lines/words and it will work [09:02] if not it's ok to leave it [09:05] still on revisiontree [09:07] ok reading store/__init__.py [09:08] poolie: I'm fairly sure I can't :P [09:18] ok well don't then [09:19] at least i'm sure it's never given one parameter [09:19] you could do that [09:19] it's possible it's sometimes indirectly given None [09:19] * spiv starts reading tests/* [09:20] lifeless: it's a new function and there's only a handful of callers that do seem to pass a value [09:21] if it fals with that removed i guess it's not worth debugging [09:21] at the moment [09:21] lifeless: about the changes in store/__init__.py, changing _iter_files_recursive [09:21] you changed the way escaping is done there [09:22] ah, np [09:22] the diff context is a bit misleading === RAOF_ is now known as RAOF [09:49] good night [09:58] gnight poolie [10:26] In python if I create a variable holding a value and don't use it I assume it takes up memory until the next gc, is that correct? [10:27] and if I immediately create another variable with the same value then that takes up the same amount of memory again? [10:30] why does bzr blame display the email adresses instread of the names on the lines? [10:31] I'd prefer to see the names there instead and maybe the initial would be even better [10:31] (displaying the initials if the initials on a project do not clash) [10:36] hi Leonidas, I'm not sure, you could file a bug requesting the change. [10:37] james_w: on launchpad? [10:37] Leonidas: yuppers [10:38] https;//bugs.launchpad.net/bzr/+filebug [10:38] almost [10:38] https://bugs.launchpad.net/bzr/+filebug [10:38] james_w: yeah, ok. It's not that important, though :) [10:38] Leonidas: still nice to record these things. [10:39] james_w: ok, writing it now. [10:39] hanks [10:39] thanks [10:40] man, I should get off my ass and go to the shop to get some milk so I can have breakfast [10:50] james_w: when you do 'foo = bar' [10:50] james_w: 'foo' is bound to the result of evaluating 'bar' [10:50] there it is: https://bugs.launchpad.net/bzr/+bug/240633 (lp does not allow me to set 'enhancement' on this) [10:50] Launchpad bug 240633 in bzr "Display names in bzr blame" [Undecided,New] [10:50] breakfast sounds like a great idea. [10:51] james_w: if foo goes out of scope, then in CPython the ref count for whatever foo what bound to is decremented [10:51] Leonidas: done, thanks. [10:51] hi lifeless [10:51] james_w: if there are no cycles this results in it being freed immediately [10:51] james_w: if there are cycles then yes, a gc run is needed to free it [10:51] james_w: if you rebind foo, by doing 'foo = bar2' [10:52] then the old thing referenced by foo has its refcount decremented, see above [10:52] thanks [10:52] so a = foo; b = foo; would increase the chances of a MemoryError? [10:53] this is a long winded way of saying: yes|no to the first question and yes|no to the second [10:53] this is for the patch I just sent if you didn't guess. [10:53] :-) [10:55] lifeless: if you're not heading off then I have a question about the package work. [10:55] shoot [10:55] i"m playing games [10:56] I'm adding handling of native packages. The simple case is just that. [10:56] the difficulty is when a package moves between native and non-native. [10:56] so I'm biased here [10:56] I think non-native -> native should just import the native package as a merge of the packaging and upstream branches. [10:56] I think native packages are a premature optimisation and a bug in dpgs [10:56] *dpkg* [10:57] non-native->native should do a merge commit yes [10:57] and the reverse seems clear to me [10:58] to move from native to non-native there are two branches made, both which derive from the last commit on the native one [10:58] I was leaning that way, I just wanted confirmation that it was sensible, thanks. [10:59] in the new upstream branch the packaging data is deleted [10:59] in the new packaging branch a merge from the new upstream is recorded, and the version metadata is changed [10:59] jam: hi [11:00] yep, that sounds fine, I've just got to think about how to figure out what should happen from the history we have available, it shouldn't be too hard. [11:00] upstream content == tarball [11:01] upstream parent == last native [11:01] packaging content == tarball + diff [11:01] the other question is how, and indeed whether, we should indicate that the package is native at that point. [11:01] packaging parents = [last native, upstream] [11:01] or perhaps the other way around [11:01] well, its not native now, its now non-native :P [11:02] I think that's the right way round. [11:02] I dunno, I'd need to think :P [11:02] yeah, sorry, indicate that the package is native when it is. [11:02] I think just the version number :P [11:02] there's two things that impacts, one is when importing the next version so that we know to use the packaging branch as the upstream branch as well, and the other is when building. [11:03] there should always be a packaging branch, thats the one people get [11:03] if only :-) [11:03] seriously, the version number is the only way to detect a native package AIU [11:04] nope, a native package is a native package, i.e. the .dsc just describes a tarball, not a tarball and diff. [11:04] this can happen at any moment, with any version number. [11:04] e.g. lvm2 just goes native at something.something-1ubuntu4, and then back to non-native at the next revision [11:05] argh [11:05] see, native is a bug [11:05] I think it's a bug in dpkg that you get a native just because you didn't have a correctly named tarball/directory in the parent directory. [11:05] native's _existence_ is a bug [11:05] so totally convinced of this [11:06] well, trying to deal with this makes me dislike any variation, so I'd agree at this point. [11:06] ok [11:06] what builddeb currently does is versions a file in the tree which just says "native = True" [11:06] so detecting native. hmm - think on it during your day, mail me if you don't have a good answer at the end :P [11:06] I can detect native fine. [11:07] 20:01 < james_w> the other question is how, and indeed whether, we should indicate that the package is native at that point. [11:07] so, whatever you mean by ^^^ [11:07] ah, I meant indicate in the branch. [11:07] the .dsc tells you fine, but we don't version that. [11:07] right [11:08] so the dsc represents a 'commit' to the 'debian vcs' [11:08] why don't we preserve it [11:09] sounds reasonable, do you have any suggestions where? [11:09] revision properties perhaps [11:09] only need some of the dsc [11:09] yeah, I was thinking of adding some from this information. [11:10] this works fine for imports, so I'm happy to do that for now. [11:11] however, what's not great about it is when you are building a new version of the package, the native property would be set on the last imported revision, but do we build the current package native? [11:11] well [11:11] I think that this is arguably something debian/control should answer [11:12] it would solve the bug of sometimes getting native when you don't want, etc [11:12] I wouldn't mind enforcing the rule from the version number, but I wouldn't be surpised if there were packages out there that intentionally break the rule. [11:12] yes, debian/control would be great. [11:13] I think format 3.0 may actually do this. [11:15] yeah, you specify "3.0 (native)" [11:15] I don't think we could block on having 3.0 by default though. [11:15] indeed [11:17] Am I right in thinking that bzr doesn't provide a mechanism that allows you to associate something with the branch rather than a revision? [11:17] i.e. branch.conf isn't copied on "branch" is it? Or at least not all of it? [11:17] that correct [11:18] and that wouldn't help too much, as we would want it to be versioned. [11:19] ash keybuk how he solved this [11:19] hct? or Mom? [11:19] hct [11:19] ok, thanks. [11:20] and I can think more about it but not tonight :P [11:20] I've one last thing that I wanted to ask. [11:20] when we chatted with jml and everyone else about branch naming we only discussed packaging branches. [11:20] are we going to push the upstream branches to launchpad separately, or just extract them as needed from the packaging branches? [11:21] well [11:21] Mark wants to keep the two incompatible branch sets separate [11:21] so lets keep them implicit in the branch as tags only for now [11:21] sure, easy enough. [11:22] thanks for you time. I don't need to block on the native thing, but we need to get it right before making the branches available, so if you have any thoughts I'd appreciate it. [11:22] I suggest a mail on it when you've chatted with scott & perhaps colin [11:23] sure, I'll start that today, thanks. [11:23] you're going to be at the distro sprint again, is that right? [11:23] yes [11:23] guadec + london + wolverhampton [11:24] ah, I'm doing the last two. [11:26] lifeless: your at GUADEC? [11:27] Jc2k: I will be yes [11:27] Jc2k: the Gnome folk at UDS thought it would be good to be able to grill me with others at GUADEC :) [11:28] for the DVCS stuff? [11:29] * Jc2k hopes to get to wave his finger at the Git camp :) [11:31] is there really a point in pointing fingers, instead of collaborating? [11:32] i was joking, obviously, but the last time GNOME debated DVCS one of the Git users threatened to take their ball in. [11:33] Jc2k: hi :) [11:33] * mwhudson is not really here [11:33] lo mwhudson :) [11:33] oh dear.. [11:33] :) [11:33] got my email? [11:34] yes i did, and i've updated bzr-mirror with your latest :) [11:45] and the annotate links work now, good [11:46] olav filed a bunch of loggerhead bugs, so i guess you showed it to some of the gnome people :) [11:46] just a couple [11:48] Jc2k: btw, thanks for setting up the bzr gnome mirror :) [11:49] hehe, np asabil_ [11:49] asabil_: im working on making it easy to use from jhbuild, if thats of any use to you [11:49] Jc2k: that sounds very nice :) [11:50] I think what is still lacking is a branch hosting facility, similar to launchpad's branch hosting [11:51] indeed, mark phoned me to discuss bzr-mirror and we are looking meant to be looking into that === kiko is now known as kiko-afk [11:51] asabil_: watch this if your interested :) http://bugzilla.gnome.org/show_bug.cgi?id=538507 [11:51] Gnome bug 538507 in general "Jhbuild should be able to use bzr-mirror.gnome.org" [Normal,Unconfirmed] [11:51] oh thanks [11:52] I am *very* interested [11:52] :) [11:56] I showed that to jamesh, no comment so far :P [11:56] jam: ping [11:56] :P [11:57] Jc2k: do you have any loggerhead issues you'd want me to focus on particularly? [11:57] (other than the reasonably obvious one of "get what you're running into trunk") [11:59] mwhudson: anything that olav wants, nicer urls would be lovely (so i can guess a url if i know the layout of my project, for example) and some way for me to start giving it the GNOME skin [11:59] ah yes, themable html [11:59] that's beuno's department :) [12:00] mwhudson, bueno: might be worth hanging out in #gnome-bzr on irc.gimp.org? [12:00] you can supply your own css now of course, it's just a static file [12:00] you too asabil_ [12:00] oh oki [12:00] but you'll probably want to hurt yourself before you got anywhere [12:00] Jc2k: oh right [12:01] btw Jc2k, you are the conduit author right ? [12:01] im one of the core devs, aye [12:01] we need to talk :D [12:01] ace [12:01] #conduit on gimpnet then ;D [12:01] :) [12:02] mwhudson: I did mention #gnome-bzr on gimpnet right ? [12:02] lifeless: you did [12:03] :P [12:04] i had some reason for not joining at the time you mentioned it, i forget what it was :) [12:05] :P [12:57] :-( dak migrated to git [12:58] garh [12:59] who maintains dak? [13:08] ftpmasters I believe [13:08] http://blog.ganneff.de/blog/2008/06/16/byebye-bzr-hello-git.html [13:12] erm no browser [13:12] whats the summar ? [13:14] As the title says - the Ftpmaster dak repository is now using git instead of bzr. [13:14] I never did like bzr, so I recently asked what the rest of the team thinks of switching to git. Luckily I got no objections, so here we are, with a VCS thats not dead-slow. [13:14] lifeless: that the person doing most of the works nowadays just dislikes bzr, and no other member of the team opposed to moving to git [13:14] s/works/work/ [13:15] hi dato [13:16] hello james_w [13:24] dato, jelmer: any thoughts on https://bugs.edge.launchpad.net/bzr/+bug/228298 ? [13:24] Launchpad bug 228298 in bzr ""common-post-build-indep" target in debian/rules became obsolete when bzr became arch-specific" [Undecided,New] [13:25] ok [13:25] search suggestions done [13:26] by done, I mean 'unit tested and works to the ui', not 'performant' or 'cleanly coded' [13:27] james_w: Looks like a genuine bug in the debian bits [13:27] james_w: The submitters suggestion looks reasonable [13:27] hi dato [13:27] james_w: yeah, I think as Jelmer [13:27] hello lifeless [13:27] jelmer: cool, shall I file it in Debian as well to keep track of it, or just do it? [13:28] james_w: Should be trivial enough to just fix, but whatever works best for you is fine with me [13:28] sure, I'm just doing some triage, I'll get to it after. Thanks. [13:30] james_w: thanks for your triaging work, btw, bzr itself is way behind on that :-( [13:30] no problem. I noticed we were close to 1000 open bugs [13:31] gnight all [13:31] night lifeless [13:31] gutenacht lifeless [13:31] night lifeless [13:31] Jc2k: I've just mailed beuno a suggestion (and the necessary code in bzr-search) for some bling; if he does it - and he is attracted to shiny things - then the search will be seriously sexy [13:32] orly? [13:32] * Jc2k wraps bzr-mirror.gnome.org in glitter and throws it to beuno [14:02] lifeless: if I have a revid, how do a get a revno from a branch? [14:03] lifeless: (in the code, not in the command line) [14:03] oh. damn. he's gone to bed [14:03] anybody else? ^^ [14:08] branch.get_revision_id_to_revno_map()[revid]? [14:10] bob2: is that better than branch revision_id_to_revno() ? (which I just noticed...) [14:11] ah, I would say no :) [14:24] uh... [14:24] help? [14:24] Two plugins defined the same command: 'cmd_parent' [14:24] Not loading the one in [14:24] Previously this command was registered from [14:24] those look like the same place to me [14:25] buggy plugin? can you not just move it out of the way? [14:26] I'm trying to ignore all files with the extension .txvClassDiagram20 *except* default.txvClassDiagram20 - the RE I think it should be is RE:.*(?!default)\.txvClassDiagram20 .. but this doesn't seem to work.. any pointers? [14:28] Jc2k: yes. and I finally see the problem ... but WOW, what a weird error message [14:28] mtaylor: i've seen python get the path wrong if you move *.pyc files around [14:29] awilkins: if you bzr add a file, then it doesnt matter that its in .bzrignore *i think* [14:29] Jc2k: Yup, agreed, but these files are not already added. [14:29] so add them? :) [14:30] Jc2k: It's the other way round, I want to PREVENT automatic adds of all txvClassDiagram20 files EXCEPT default. [14:30] So I want to ignore them apart from default... [14:30] Jc2k: in this case, it was a "foo: %s" foo [14:30] Jc2k: without a % between the string and the var :( [14:31] mtaylor: eep [14:32] awilkins: ahh ok, i figured there wouldnt be any new default.foo files to add [14:32] I think the .* is being too greedy [14:39] Bingo, I wanted .*\b(?\.txvClassDiagram20$ [14:39] Don't you just love regular expressions ..... [14:46] write-only language :) [14:46] My old colleagues used to joke about some of mine achieving sentience and taking over the world. [14:47] They were'nt even very complicated as Regex go.... [15:56] awilkins: .bzrignore supports regexes. [15:56] awilkins: Just prefix them with RE: [15:56] abentley: he solved the problem with regexes just a few lines up :) [15:56] 14:39 < awilkins> Bingo, I wanted .*\b(?\.txvClassDiagram20$ [15:57] awilkins: I didn't see that he knew he could use that regex. [15:57] Or Jc2k, actually... [15:57] :) === kiko-afk is now known as kiko [16:32] Hello [16:32] I've been trying to use bzr to work on a local branch of a svn repository [16:34] But I've noticed when I push changes back to the svn repo, all of my intermediate merges from the svn repo are included in my commit. Is there a better way to work with a svn repo than bzr merge / commit / push? [16:35] jam: There's a bug on lp that says you use bzr/cygwin, have you ever used a bzr/cygwin sshd to serve bzr+ssh:// ? [16:36] catlee: You can use rebase instead [16:36] catlee, (instead of merge) [16:36] jelmer, ok I'll give that a try, thanks [16:36] awilkins: I use bzr/win32, I just run a cygwin shell [16:37] got an AssertionError when I tried to rebase with no arguments [16:37] I've never run openssh server on cygwin [16:37] catlee, what version are you using? [16:37] 1.5 [16:37] jam: I think I just thought of a solution anyway... let me try it [16:37] catlee, sorry, what version of rebase ? [16:37] jelmer, how do I tell? [16:38] 0.3.0 [16:38] jam: Problem I'm having is that the shell script is #!-ing a path to Python that Cygwin doesn't grok [16:38] catlee: If you specify a location explicitly, it probably works better [16:38] I think this issue as also been fixed in bzr-rebase, just isn't in 0.3.0 yet [16:47] awilkins: you could have a different bzr in your cygwin path, which it *does* understand [16:47] you just need it for the shell script [16:48] I use this: [16:48] #!/bin/ash [16:48] # Simple 'ash' script to thunk over to the real python [16:48] export BZR_PLUGIN_PATH='C:\Users\jameinel\dev\bzr\plugins' [16:48] exec /cygdrive/C/Python25/python.exe 'C:\Users\jameinel\dev\bzr\bzr.dev\bzr' "$@" [16:48] jelmer, not sure if I've really messed up my branch now...bzr rebase errors out saying there are no common revisions [16:48] catlee: You really want the trunk version of bzr-rebase in that case [16:49] jelmer, where is it? the branch link from the Rebase wiki page is empty [16:49] catlee, That link should work, you can run "bzr branch ~/.bazaar/plugins/rebase" [16:50] http://people.samba.org/bzr/jelmer/bzr-rebase/trunk/ [16:50] catlee, yes [16:50] ah, I guess apache is hiding the .bzr directory [16:51] I'll give it a try, thanks [16:53] jam: That works a lot better ; do bzr+ssh URIs understand "~" ? [16:53] awilkins: No. [16:53] awilkins: not yet [16:54] but you can use the "contrib/bzr_access" script to change the meaning of / [16:55] Would using Cygwin Python be any easier, DYT? [16:56] How do you specify the path, I'm now guessing you can't use /home/branch ? [16:56] I got SFTP working nicely, but the completist in me wants to see bzr_ssh work [16:58] Aha, you just use the drive letter :-) [16:58] Blech, that's horrible [17:00] right ,time to go === thekorn_ is now known as thekorn [17:44] lifeless, is it expected I get this when pulling bzr.dev: http://paste.ubuntu.com/20914/ [19:18] jam: How do you get the smart server to serve branches that are not on the same drive as Python on windows? [19:19] awilkins: add a "cd ???" before starting the interpreter? [19:19] I would have thought bzr+ssh://host/D:/aoueaoeu would work [19:19] but if you are finding that it does not [19:21] jam: It doesn't... f you leave off the drive letter it can serve branches on the same drive (ie c:) [19:21] jam: But the chroot stuff is trying to read a path c:\c:\home\branch even if the drive letter is on the same drive [19:22] I'd like to [19:22] import a bzr branch to a newly created SVN repo [19:22] I think it needs a bit of a patch in request.py : translate_client_path [19:22] bzr push svn+ssh://..../trunk doesn't work since there are no common revisions (branches have diverged, but the svn repo is new, doh) [19:22] any clue how to do this? [19:23] And no, I'm not moving away from bzr. Actually I'm importing to Gnome SVN for i18n reasons, development will still be in bzr :) === mw is now known as mw|food [19:23] uws: you mean http://live.gnome.org/BzrForGnomeDevelopers [19:23] ? [19:23] awilkins: is that using bzr_access or just plain bzr+ssh? [19:23] uws: 'bzr svn-push' to create a new branch [19:24] jam: that's bzr+ssh//, bzr:// (although different paths, same problem) [19:24] jam: trunk/ dir is already there... [19:24] bkor: that's the other way around [19:24] bkor: I already have a bzr history [19:24] jam: bzr+ssh:// is over local cygwin sshd ; sftp to the same branch works [19:25] (as long as you use the /cygdrive/ root to get to other drives) [19:25] ahoy [19:28] bkor, jam: I tried removing trunk/, but gnome svn won't let me because it wants a MAINTAINERS file [19:29] uws: can you try pushing to another location (svn-push) and then something like copy them over? [19:29] ehr, you shouldn't remove trunk [19:29] you might want to try on a local repo first [19:29] uws: another option [19:29] if there is only 1 revision in trunk [19:29] you can use [19:29] bzr merge -r 0..-1 .../trunk [19:29] jam: push-and-copy isn't going to work, alas, SVN repos being what they are. [19:29] bzr commit [19:29] bzr push trunk [19:30] I'm not sure what bzr-svn has to say about that [19:30] but it would work for bzr branches with diverged histories [19:30] I've done it for empty branches, I think [19:30] jam: first create a svn checkout and merge that from the to-be-imported-into-svn-bzr-branch? [19:32] uws: Hmm [19:32] uws: You may be able to merge the current trunk and then push [19:32] bzr merge -r0..-1 ../svn/trunk [19:32] That's what I just did in my bzr branch [19:33] the svn/ dir is a svn checkout (empty repo) [19:33] jelmer: ^ [19:34] uws: If you commi that, can you then push? [19:34] jelmer: no [19:36] uws: What error, diverged branches? [19:36] elin:~/Computing/Projects/gnome-specimen/development > bzr merge -r0..-1 ../gnome-specimen.bzr-svn/ [19:36] All changes applied successfully. [19:36] elin:~/Computing/Projects/gnome-specimen/development > bzr ci -m 'Merged Gnome SVN trunk' [19:36] Committing to: /home/uws/Computing/Projects/gnome-specimen/development/ [19:36] Committed revision 205. [19:36] elin:~/Computing/Projects/gnome-specimen/development > bzr push svn+ssh://svn.gnome.org/svn/gnome-specimen/trunk/ [19:36] bzr: ERROR: Branches have no common ancestor, and no merge base revision was specified. [19:36] Oops, too many lines. sorry [19:37] jelmer: ../gnome-specimen.bzr-svn/ is a trunk checkout made using bzr-svn [19:38] Probably because it's not a lhs ancestor :-/ [19:38] the common use case is to branch from svn, and commit back to svn [19:39] i want to import a bzr branch into svn :) [19:39] jelmer: fwiw, my bzr branch is linear (no merges) [19:39] yeah, the unfortunate bit here is that bzr-svn is a bit strict about where it can push to [19:40] I was planning to fix this in 0.5, but we're not there yet.. [19:40] trying to think of workarounds.. [19:41] jelmer: I'm now trying svn-push to a trunk-from-bzr dir [19:41] jelmer: That seems to work [19:41] (after committing a MAINTAINERS file to the completley empty just created real trunk/) [19:42] it's now pushing [19:42] I'll try to move trunk-from-bzr to trunk/ afterwards [19:42] http://svn.gnome.org/viewvc/gnome-specimen/ [19:42] Ah, that's a nice idea [19:42] if you refresh you see it going :) [19:42] heh, "age: very little time" [19:42] uws: oooh [19:42] it's halfway done now. [19:42] Jc2k: ? [19:43] this should be interesting, i wonder if bzr-mirror.gnome.org will pick it up automatically [19:43] * Jc2k goes to watch the log unfold [19:43] Jc2k: I've done the regular "ssh svn.gnome.org new-svn-repos gnome-specimen" so it should be no different from another new svn repo [19:44] They have websites for that kind of thing [19:44] when this is done, I'll discard the original bzr branch in favor of a bzr-svn clone of the new trunk/ [19:44] awilkins? [19:44] uws: There shouldn't be a need for that [19:44] uws: Since cloning the new trunk/ will create an exact copy of what you already have locally [19:44] ^^ watching the lgo unfold (a poor scat joke) [19:44] jelmer: I can keep pushing from the original bzr branch to turnk/ [19:44] jelmer: even if it wasn't a svn checkout in the first plae? [19:45] uws: i've never watched a new module be born, though :) [19:45] anyway, http://svn.gnome.org/viewvc/gnome-specimen/trunk-from-bzr/ seems to be ok now [19:45] let's try to move it [19:45] uws: Yes, since it was created with svn-push. [19:46] In hindsight, it may be useful to start out by pushing to branches/from-bzr rather than trunk-from-bzr [19:46] To avoid trouble with bzr-svn picking up the branching scheme [19:47] If it's easy to strart over, you may want to do that [19:47] hmm ok [19:47] bkor: still here? [19:47] uws: sort of [19:47] jelmer, bkor: jullie houden net zo veel van voetbal als ik zeker? :) [19:47] bkor: can you rm -fr the gnome-specimen repos from svn.gnome.org now? [19:47] uws: idd (-: [19:48] bkor: I've just created it so there's no need to backup [19:48] bkor: I'll recreate and try the svn import in a correct way, like jelmer suggests [19:48] uws: GOAL! [19:49] uws: I mean.. done! [19:49] * uws loves "direct lines" to people in OSS projects. bzr-svn trouble? ask the maintainer. Gnome SVN issues? ask bkor [19:49] :) [19:49] bkor: I would've heard a sound coming from the people on the street ;) [19:49] http://svn.gnome.org/viewvc/gnome-specimen/ [19:49] and there is is agai n:) [19:49] Ben Collins-Sussman once very kindly uploaded a build of SVN to my SFTP server [19:50] IRC is great [19:50] Freenode in particular [19:50] awilkins: Colleagues make fun of me because I don't do the msn thingy. i know better though :) [19:50] IM networks are too fragmented [19:51] They won't be any use until it all does XMPP [19:52] awilkins: irc.gnome.org is even better than freenode for my particular case :) [19:52] bkor, jelmer: http://svn.gnome.org/viewvc/gnome-specimen/branches/import-from-bzr/ incoming! :) [19:52] uws: can bkor and i lure you into #gnome-bzr on irc.gimp.org? [19:52] :) [19:55] jelmer, bkor: ok, import in branches/import-from-bzr almost done [19:55] now how do I get this as trunk/ ? [19:55] I had to commit a MAINTAINERS file to trunk/ first btw otherwise the push commits would fail [19:56] uws: What's the exact post-commit script that's used in gnome svn? [19:56] jelmer: dunno, ask bkor [19:56] bkor: Still there? [19:56] i can take a look [19:56] i think [19:56] if its in the rysncs [19:56] jelmer: msgfmt checks for .po files, and MAINTAINERS file in trunk/ methinks [19:56] Jc2k: Why do you use rsyncs? [19:57] jelmer: but apart from the commit hook (if it's a real problem we can ask bkor to disable it for like 2 minutes), how would I get this branch as trunk? [19:57] jelmer: post-commit? why does it matter? [19:57] uws: it's probably easiest to just do a checkout of the repository root and then do a "svn rm trunk" followed by "svn mv branches/import-from-bzr trunk" [19:57] uws: i had rsyncs of svn.gnome.org for the initial bzr-mirror conversions [19:58] bkor: I was mainly interested in how it checks for MAINTAINERS - does it make sure the MAINTAINERS file is there after the commit or does it actually look at the delta of the commit? [19:58] jelmer: that is a pre-commit [19:58] bkor, jelmer: eh, pre-commit methinks [19:58] exactly [19:58] jelmer: Ok, but I have to commit after removing the trunk/, and before moving the branch into its place [19:59] but commiting the "svn rm trunk/" fails because of the pre-commit hook [19:59] jelmer: http://pastebin.mozilla.org/462388 [19:59] it is on purpose [19:59] I like the "`whoami`" != "ovitters" part [20:00] bkor: could you type this for me: [20:00] oh so its not just bzr-mirror that needs a workaround for gnomemm :) [20:00] uws: ahh, ok. It is possible to do such a change when using the svn API, guess it's just the UI that forbids it. [20:00] svn checkout svn+ssh://ovitters@svn.gnome.org/svn/gnome-specimen [20:00] cd gnome-specimen/ [20:00] rm -fr trunk [20:00] uws,bkor: Disabling the hook and then doing the move would be easiest [20:00] svn commit -m "Removed trunk/ so bzr import branch can be moved into its place" [20:00] otherwise, I can come up with a python script that does it for you [20:01] jelmer: according to http://pastebin.mozilla.org/462388 bkor can avoid the checks [20:01] so if he removes trunk/ for me [20:01] I can move the branch back [20:01] methinks [20:01] uws: svn rm svn+ssh://svn.gnome.org/svn/gnome-specimen/trunk is easier, and done [20:01] bkor: ah, didn't know that works as well [20:02] its probably worth trying the replay idea, the next time this crops up [20:02] Jc2k: replay breaks all copies of the bzr branch you're pushing though [20:02] Jc2k: what we're doing right now doesn't [20:02] ah [20:03] Yay [20:03] http://svn.gnome.org/viewvc/gnome-specimen/ [20:03] it seems to have worked [20:04] jelmer, bkor: it seems ok to me. [20:04] jelmer: now bzr push svn+ssh://svn.gnome.org/svn/gnome-specimen/trunk/ from my original bzr branch ought to work, right? [20:04] yep [20:05] or, actually - you have to pull first [20:05] yeah, pulled the "move" commit [20:05] which doesn't seem to change anything locally [20:05] jelmer: at least the output "bzr diff --verbose -r204..205" is empty === mw|food is now known as mw [20:06] (r205 is the "Moved branches/import-from-bzr to trunk to (hopefully) complete the import." commit) [20:06] uws: Yep, that all looks fine [20:06] uws: btw, I still have books of yours [20:07] LarstiQ: Hmm. that's right. which ones? [20:07] LarstiQ: alphabet + brown, right? [20:07] LarstiQ: coming to guadec by any chance? [20:07] (that would be a ridiculous place to hand those back, btw ;>) [20:07] * jelmer will most likely be at Guadec, btw [20:08] jelmer: You will? great. Chime in on #gnome-nl! [20:08] uws: yes, what/where? [20:08] LarstiQ: also coming to guadec? [20:08] * LarstiQ rephrases more clearly [20:09] uws: Those two books indeed. I'm familiar with guadec, but I don't know when or where it is this time around? [20:14] LarstiQ: istanbul, July 6--13 [20:15] anyway, dutch oss hackers should probably team up for a beer/other drink sometime [20:15] gnome and bzr ppl, for instance [20:16] no Guadec for me [20:16] uws: but totally agreed about drinking ;) [20:40] moin [20:41] howdy Verterok [20:52] beuno: hi (I'm suffering a bit of lag :P) [20:53] Verterok, ah, 11 minutes lag is going to be interesting :) [20:54] beuno: hehe === dpm_ is now known as dpm [21:58] does bundlebuggy actually perform requested merges, or does it just track them for code reviews? [21:59] it tracks them [21:59] pqm is what performs them [22:05] ok, thanks. Is pqm documented anywhere? the description at https://launchpad.net/pqm sounds pretty awesome, and I'd like to push for bzr (incl. bundlebuggy and pqm) to be used for our department [22:06] there seems to have been some discussion here: https://lists.ubuntu.com/archives/bazaar/2007q4/032572.html [22:07] does anyone know if there's been any progress towards packaging or documenting it since then? [22:07] grantgm: I don't think so [22:07] grantgm: but I'm actively fixing a few pqm bugs [22:11] good to hear that its still being actively developed. is it in a state where I should be pushing for our department to use it, or is it still really only used within bzr? [22:14] I originally reported https://bugs.launchpad.net/bzr/+bug/205564, and this bug seems to be fixed in latest bzr.dev. Should I just close the bug myself? [22:14] Launchpad bug 205564 in bzr "bzr log fails with KeyError: 'null:'" [Medium,Triaged] [22:15] I'm pretty sure you can, so it wouldn't hurt to. [22:15] If you're sure it's fixed. [22:46] how would i check the latest revision of a remote repository? [22:46] nslater, bzr revno LOCATION [22:47] thanks beuno :) [22:47] :) [22:56] Hmm, there appear to be some DNS issues [22:58] oh? [22:59] I'm getting problems resolving my newshost, but it seems to resolve OK from a host in the states [22:59] http://just-ping.com/index.php?vh=news20.forteinc.com&s=ping! [23:10] the bzr-svn page says that merged revisions show up as ghosts in svn. what does that mean? [23:11] niran: They show up as ghosts in bzr [23:12] niran: In other words, right hand side revisions (in other words, revisions show indented by "bzr log") are not pushed into subversion themselve but a pointer to them is [23:12] oh... so the actual changesets shown NOT as ghosts in bzr are the same ones that will end up in svn? [23:12] niran: If you push a branch into Subversion and then run "bzr branch" on the Subversion URL somewhere else [23:12] it will only be able to copy the left hand side (not indented in "bzr log") revisions [23:13] jelmer: ok i think that makes sense [23:13] one more question [23:13] when pushing multiple changesets to svn, do they each get a separate commit, or do they all show up at once? [23:14] each left hand side revisions gets a separate commit [23:14] ok, thanks for your help [23:30] beuno: hi [23:30] mornin' lifeless [23:36] beuno: you have an old index [23:37] beuno: that was before I added reporting of paths, just delete the index [23:37] beuno: also, completion, whaddya think :) :) :) [23:38] lifeless, good, Still bugless then :p [23:38] completion? [23:38] check your gmail [23:38] sorry, suggestions [23:39] search completion/suggestions same thing [23:39] lifeless: are you off to the vibe today? [23:39] lifeless, odd, I somehow missed that email completely :/ [23:39] jml: I think so [23:40] * beuno checks gmail filters [23:40] oh, VERY cool [23:40] lifeless: cool. I'll pack some books. [23:40] * jml will head off in a few minutes. [23:42] beuno: so I guessed right that that is bling you'd find interesting :P [23:43] lifeless, replied back. You rock :) [23:44] I still don't understand how that email got marked as read [23:44] lifeless, can you send a test email my way? [23:44] done [23:45] hrm, works fine. Odd. [23:45] bundle in a sec [23:45] thanks :) [23:46] I've got a dinner, but I already know how to do the ajax bit for that, so it should be just a couple of hours work [23:46] sweet [23:46] after work tonight I'll do the refactoring and partial-read work required to make it faster [23:46] LH will look *very* web 2.0 in a month's time [23:47] :) [23:48] lifeless, I get: beuno@beuno-laptop:~/bzr_devel/bzr-search$ bzr pull ~/Desktop/trunk-38.patch [23:48] bzr: ERROR: Revision {('robertc@robertcollins.net-20080617122537-eyv8tt7s1dki5dyw',)} not present in "". [23:49] you probably don't have 37 [23:49] oh, or my hacking send glitched cause there is no public branch [23:49] beuno@beuno-laptop:~/bzr_devel/bzr-search$ bzr revno [23:49] 37 [23:52] abentley: how can I force bundle to include data for a revision [23:52] (bundle/send/whatever) [23:52] lifeless, maybe just send me the whole branch? should be small enough [23:54] beuno: I have :P [23:54] 401K including its own index :P [23:57] lifeless, very very very cool :) [23:57] and, fast as hell compared to other apps to doing this [23:58] lifeless: create a branch that lacks that revision and use it as the submit branch