[00:06] jelmer: ping [00:40] SmileyChris: when do you want that shown? [00:40] only when you ask for it? [00:40] or on every commit? [00:40] poolie: I found how the equivalent shows up in "git status" useful [00:41] i can see how that would be useful [00:41] robert was asking for status to also tell you what branch you're working on [00:42] Git keeps every branch on-hand, but bzr doesn't, so it isn't really possible.. [00:43] Sure it's possible. It's just really painful. [00:44] yeah, thinking about it I realise it's a bit different, git has the remote origin branch stored locally in it's repo [00:45] well... [00:45] in at least some cases we could easily do it [00:45] if the parent was local [00:47] something tag like that points at the revision i pushed/pulled last could be useful. so you find out by looking at your local history if you did offline work [00:51] hm, something like that could be hacked as plugin? pre-push hook: remove tag, then in post-push hook: add tag, move tag in post-pull and merge [00:53] there could even be multiple such tags, one for each location one used in the past to push to [01:00] Good morning. [01:01] hello spiv [01:04] poolie: I've got good progress on bug 429747 I think. [01:04] Launchpad bug 429747 in bzr "errors during cleanup mask underlying errors" [High,Confirmed] https://launchpad.net/bugs/429747 [01:05] I think I have a reasonable interface and implementation for the higher-order-function suggested in the bug, and I'm just fleshing out the tests and experimenting with how it works in actual code. [01:07] There are a couple of variations, like "convenient way to run N cleanups so that they all run even if some fail", which commit at least ideally wants. [01:08] I have some code for those too, but there's also a simple "run_cleanup" function that just runs a function and logs/reports any error without letting it propagate. [01:10] poolie: still planning on coming up today? [01:12] spiv, hi [01:12] on phone atm, still basically planning [01:12] depending on weather [01:14] Yeah, it's a bit unpleasant. Fascinating though... [01:15] lifeless: There? [01:19] spiv: with any luck the rain we've copped overnight and is still happening should settle it all down for you. big mud puddles everywhere but an improvement. [01:19] spm: yeah, looking forward to that. [01:19] spm: in the meantime, I've been admiring http://www.flickr.com/photos/plasticbag/galleries/72157622310168099/ [01:20] wow! we got nothing like that. dusty, but wow. [01:25] jkakar: phone call [01:25] lifeless: Ah, okay. [01:27] spiv: Amazing photos! [01:41] lifeless, poolie: just an FYI, but upgrading stacked branches works now (just tested on staging) [01:41] for Launchpad anyway [01:45] Hi [01:45] does anyone know if tortoisebzr and tortoisesvn can be installed on the same system? [01:46] ub3rst4r: is there any reason it wouldn't be possible ? [01:46] i dunno [01:54] ub3rst4r: I believe they can be [02:07] jkakar: hi [02:07] lifeless: Heya! [02:07] lifeless: I'd like to use cmd_alias in Commandant, ideally making it automatically available to any Commandant-based program. [02:07] lifeless: I've implemented a prototype and got it working. [02:08] lifeless: There's a couple of warts though: [02:09] 1. It prints 'bzr' in it's output. I've dealt with this in the help text produced by Command.get_help_text by using text.replace("bzr", "my-program"). This trick isn't really possible with the cmd_alias command. [02:09] 2. I have to monkey patch the bzrlib.config.config_filename to return the patch to my program's configuration file, instead of ~/.bazaar/bazaar.conf. [02:10] lifeless: So, I'm thinking about making the change in Bazaar to make this easier. [02:10] I think these are: 1. Add a set_config_filename function to bzrlib.config. [02:11] if I can tempt you with doing a little more [02:11] 2. Add get_program_name and set_program_name functions (probably to bzrlib.__init__) which default to 'bzr'. Change places that use 'bzr' to use the function. [02:11] we'd like /etc/bazaar/*.conf to work (bazaar/locations/..) [02:11] 3. Make %(program-name)s work in docstrings. [02:11] this would seeem to conflict with just set_config_filename [02:12] lifeless: Yeah, it feels like what I'm proposing is good for me, but not necessarily clean for Bazaar. [02:12] lifeless: That's why I wanted to chat you up, to figure out what the right thing to do is. I'm happy to be tempted to do more than I originally intended. :) [02:13] jkakar: so I think if you got /etc/bazaar/* working, and then added something that works for you, we'd both be happy [02:13] for get/set program name. [02:13] * fullermd is very worried about implementations of /etc/bazaar/* [02:13] that's fine, I wouldn't add it to __init__ though [02:14] commands for now please [02:14] lifeless: Ah, so for /etc/bazaar/* you want something like a set_config_path? [02:14] lifeless: commands sounds like a good place for that, yeah. [02:14] and 3 seems kindof obvious [02:14] Cool. [02:14] fullermd: in what regard? [02:15] jkakar: for substitions, uhm, there should be a method on Command [02:15] or something like that, so it can be locally controlled yada yada yada [02:15] either to do, or to look up the thing being substituted [02:16] we have 2 primary use cases today: manpage generation, and online help [02:16] lifeless: Yeah, I was thinking about something like adding a check for a get_substituted_variables function on command, and then passing the dict of default + command variables to Command.get_help_text. [02:16] Well, in a sentence, because it brings up a lot of problems in our config structure, which means either (a) a very long process of working them out, or (b) an implementation that explicitly disavows doing that, and probably makes it worse in the long run. [02:16] fullermd: what sort of problems - I'm completely at a loss here [02:17] lifeless: I'll have to figure out how manpages are generated to make sure the substitution logic lands in the right places. [02:17] jkakar: see make docs [02:17] lifeless: Ta. [02:17] It relates to the issue of "branch.conf parameters that should be propogated by branch vs shouldn't", which we unsatisfactorally sidestep at the moment. [02:18] Some things we'd want to hard-override per system, some we'd want to default. Mechanism, blah blah. [02:18] (and the unrelated issue of "/etc? No, it should be..." of course) [02:20] fullermd: will you be unhappy if jkakar puts a patch forward that makes /etc/bazaar/bazaar.conf & locations.conf work ? [02:21] * fullermd shrugs. [02:21] I don't get a vote in such things anyway. [02:21] I'm just rather pessimistic today, and it feels lose-lose to me. [02:21] If the discussion doesn't come up, we've added another layer of pre-existing conditions we have to somehow not screw up when we DO add such capabilities. [02:22] If it does, I'm sure it will get to a useful conclusion almost as fast as per-branch rules. [02:23] fullermd: so per branch rules stuck because the folk needed in such a discussion where backlogged way above eyeballs with performance [02:23] fullermd: and its non trivial. [02:24] fullermd: If you agree that system wide configuration is useful [do you?] [02:24] I know. I don't claim it's because of malice or indifference, but it still bogs down. [02:25] i think we certainly want system-wide config [02:25] we can always say 'we suggest you don't set X system-wide' [02:26] yup [02:26] jkakar: so - we have a go ;) [02:26] jkakar: can i suggest that rather than setting these things individually there should be some kind of ConfigFactory [02:26] Absolutely. We very much need many levels of configuration beyond "OK, tell all your users to manually edit this file to add these lines" [02:26] and you replace that wholesale to make it think it's called something other than bzr [02:42] poolie: Sounds like a plan. [02:43] lifeless: Yep, I'll start on it tonight. :) [02:52] lifeless: do you know off hand how to ask apt whether a set of packages would be installable, short of installing it? [02:52] nope, sorry [02:52] theres a graph resolver thingy [02:52] justinstall --dry-run? [02:52] oh [02:52] I thought you meant pyapt :) [02:53] thingywhatsit [02:53] apt-get -u install foo? [02:53] apt-get -s install foo [02:53] mm [02:53] https://bugs.edge.launchpad.net/ubuntu/+source/devscripts/+bug/434987 [02:53] Launchpad bug 434987 in devscripts "chdist fails with "E: Internal Error, Could not perform immediate configuration (2) on libattr1"" [Undecided,New] [02:54] Ah, -s it is indeed. I'm used to using -u with upgrade and dist-upgrade so thought it might work with install (it doesn't). [02:55] -u shows what will be upgraded [03:00] lifeless: http://images.apple.com/macosx/technology/docs/GrandCentral_TB_brief_20090903.pdf <-- a bit interesting [03:00] images...pdf :P [03:01] [reading] [03:03] this explains why they did the C code blocks work :P [03:06] I needed to use non bzr diff and patch. The patch is only changing a few lines in the files but bzr diff shows that bzr wants to change the whole file for those changed. Can I do anything about this? [03:08] Meths: you may be dealing with some EOL issues [03:08] Meths: are you on windows? [03:08] yeah [03:08] patch has probably changed the line ending on the file [03:08] you could see if it has an option to control that, and if it does bzr revert then apply the patch again with that option [03:08] Diff and patch? Like, GNU diff and patch? [03:09] ah, so a dos2unix should get a normal diff, I'll go try now, thanks. [03:09] Peng_: yep [03:09] What are you doing? Why not use 'bzr merge' or a revision bundle or somesuch? [03:11] Sweet, dos2unix fixed them up nicely, shoulda known [03:29] :( [03:29] a crash [03:30] What crashed? [03:30] bzr [03:31] * thumper is filing a bug [03:31] Ah. [03:33] https://bugs.edge.launchpad.net/bzr/+bug/435000 [03:33] Launchpad bug 435000 in bzr "bzr crashed on commit after removing a directory of files" [Undecided,New] [03:34] Nice bug number. [03:37] I've made a local branch [03:37] and I've just committed to it [03:37] but I want to push the branch as of one revision ago to LP [03:37] is there an easy way to do this? [03:37] bzr push -r 123 [03:37] Well, -2 [03:37] * igc lunch [03:38] * thumper tries [03:47] spiv: more dust photo's, tho .. I dunno. 'shopped maybe? http://www.militaryphotos.net/forums/showthread.php?t=165656 [03:49] spm: nah, I used to live near there. That was a regular sight ;) [03:50] * spm thinks for a suitable response. can't, so just sniggers. [05:23] hello all [05:25] hai [05:25] versioning yourself now? [05:25] poolie1.1.1.1.1.1 [05:25] :D [05:26] is irc bug [05:26] No, it would be like poolie1.1.1.1.1397.1. [05:26] Anyway, I'm done now. === poolie1 is now known as poolie [06:01] lifeless: any particular reason for bug 435026? [06:01] Launchpad bug 435026 in bzr "bzrlib.ui docstring references factories not in the module" [Wishlist,Confirmed] https://launchpad.net/bugs/435026 [06:04] Hmm, I think clearing test._log_contents in more cases (e.g. not applicable, known failure) significantly cuts the test suite's memory consumption... [06:05] How significantly? [06:05] it's only at 59M after 1500 tests, and growing very slowly. [06:06] Give me a few minutes and I'll have a decent direct comparison. [06:06] poolie: yes, fixing a deprecation warning you added ;) [06:07] poolie: in conflictchecker, its cron is annoying everyone watching it ;) [06:07] ? [06:07] which one? [06:07] poolie: direct construction of ProgressBar [06:07] and what checks the docstring? [06:07] programmers [06:08] I read pydoc to find out what I should be using [06:08] and had forgotten that things were in submodules, so when I added ui_factory=bzrlib.ui.TextUIFactory() - well it failed ;) [06:08] i'll fix that bug if you're not immediately going to [06:09] poolie: please [06:09] poolie: its not major, but having observed it I just wanted to capture it [06:09] sure [06:09] i just wondered if you were running an api doc tool or something [06:10] no, interesting idea though [06:13] Hmm, or maybe it's making less difference than I thought. I thought I was seeing much worse memory consumption yesterday though... hmm. [06:13] ~1514 tests == VmPeak of about 205 MB for me. [06:14] Peng_: I'm running the "(?i)commit" subset, for no particular reason. [06:14] And on 32-bit. [06:14] I was running no particular subset, on 32-bit. [06:15] I'm not sure VmPeak is very useful, I think Python tends to allocate lots more address space than it actually uses. [06:16] VmPeak is interesting because everything else is the current value, not the peak value. [06:16] VmRSS: 85584 kB [06:17] I tend to look at VmHWM. I wouldn't mind an authorative link for exactly what the different fields in -Dmemory mean... [06:17] I know *roughly*, but details tend to matter. [06:17] I have no idea what VmHWM is. [06:19] Peng_: man proc claims "Peak resident set size ("high water mark")" [06:19] Oh, cool! [06:19] That sounds perfect! [06:19] spiv++ [06:26] lifeless: http://pastebin.ubuntu.com/276214/ - pre-review welcome [06:27] what am I looking at? [06:29] is there how to query bzr status of a file? [06:29] bzr st file [06:30] I'm doing a rebase but when I commit the change list shows "missing some_file.OTHER" [06:30] lifeless: the whole file is new, it's an attempt at interface testing of uifactory [06:30] poolie: ok [06:30] i think it's uncontroversial [06:30] but that's why i'm asking [06:31] poolie: I just needed some context :) [06:31] there's a comment explaining the point, but we also talked about this a while ago [06:32] a conflict occurred in rebase, so I solved it manually and bzr resolve filename, but now when I commit filename.OTHER shows as missing [06:32] poolie: I'd be very strongly inclined to use injection rather than subclassing here. [06:32] is this normal? I don't want that artificial info on the history [06:33] RenatoSilva: I don't really know, few folk in the bzr community use rebase. [06:33] if the files were added on separate branches that you're now rebasing together [06:33] lifeless: it seems very interesting! [06:33] it's reasonable that you'd end up with [06:33] that kind of conflict and it's not necessarily a problem [06:34] lifeless: tell me why? just because we're generally doing that? [06:34] poolie: I'm not asking about the conflict itself, which was solved [06:34] i was originally going to do that but the problem i ran into is that the resource i want to inject includes some code that makes assertions about what happened [06:34] poolie: I'm asking about the artificial "missing xxx.OTHER" when committing [06:35] and that code can most conveniently be written within a subclass of TestCase [06:35] poolie: I think it would fit and scale better [06:36] to use scenarios? [06:36] poolie: yes [06:36] mm [06:36] poolie: possibly in combination with resources, or something the encapsulates the setup of the fixture [06:36] how would you handle having assertion-making code be parameterised? [06:36] s/the/that/ [06:37] lifeless: I just achieved a clearer, natural history, as described in http://pastie.org/625271 [06:37] lifeless: a guy from #git said that it may work for small feature branches, but not for long-lived [06:38] so [06:38] your conflict is probably a name conflict [06:39] xxx.OTHER means rebase is trying to readd a file already on the other side [06:39] this could be a bug in rebase [06:39] or in how you're using it. [06:39] lifeless: weird! I uncommitted, then committed again and the xx.OTHER is not reported anymore [06:39] thats because the pointer to it was removed on the first commit [06:40] so it's a bug right [06:40] you may find you get a delete+add when you merge to the other branch [06:40] and that your history of that file is disconnected [06:40] RenatoSilva: no, it may be you using rebase when you shouldn't :). Or it may be a bug. I don't know. [06:41] lifeless: bzr resolve --all maybe does not clean .OTHER files [06:41] poolie: well, when I look at your code, you have 'create a resource' code, 'execute the test' code, and 'check the resource' code. [06:41] RenatoSilva: the file was deleted, but your tree still wanted it. [06:41] RenatoSilva: because it was part of the conflict [06:42] lifeless: conflicts on a merge are displayed as BASE and THIS, in rebase it is BASE and OTHER, maybe bzr resolve does not know OTHER [06:42] RenatoSilva: conflicts within a file are BASE+THIS+OTHER, conflicts about *names* show up differently. [06:42] RenatoSilva: but I'm having to guess because I don't know what happened [06:43] lifeless: well, I think bzr resolve --all should have deleted all info about those files [06:48] Woot, Command.get_help_text is using the program name from a centrally registered ProgramInfo instance! [06:51] spiv: https://bugs.edge.launchpad.net/bzr/+bug/435048 [06:51] Launchpad bug 435048 in bzr "many get_parent_map calls during walk to common revisions" [Medium,Confirmed] [06:52] poolie: thanks [06:52] is that new or old ? :) [06:53] lifeless: the bug? Dunno, that's why I asked him to file it ;) [06:53] lifeless: http://yfrog.com/0ximagemxap [06:53] lifeless: better resolution: http://img33.yfrog.com/img33/5295/imagemxa.png [06:55] RenatoSilva: yes, I understand what you're doing [06:55] RenatoSilva: that doesn't mean I know what happened [06:55] RenatoSilva: you need to look at the per file graphes [06:56] I will also note that you're publishing these branches as you develop, so rebase really isn't a good choice. [06:56] lifeless: for solving the .OTHER issue? I think it's ok now [06:56] RenatoSilva: Until you've checked the per file graph in both branches after merging back, you can't know. [06:57] lifeless: confusing [06:58] RenatoSilva: how so? [07:01] publishing these branches as you develop, so rebase really isn't a good choice. ----> I don't know how would that rebase affect another derived branches, I think that it would make merge easier. I don't know... [07:02] maybe I need to get more experienced [07:04] try it and see....but as you say that rebase is bad, maybe I'll keep the former approach (update merges) [07:05] the wonderful thing of that rebase is that it's just liked I branched trunk today, and I could bzr push (not merge) to trunk now [07:06] * RenatoSilva flips a coin for pushing userprefs or userprefs.rebase [07:07] RenatoSilva: rebase _breaks_ the ability to pull or merge the old branch [07:07] RenatoSilva: it breaks the links in history [07:07] RenatoSilva: in the git world, rebase is used for private branches, not for ones shown to the world [07:11] well, I can't understand it atm, hope to do in the future as I get more used to it... [07:11] thank you anyway! [07:13] hi all [07:13] hi [07:13] http://paste.ubuntu.com/271990/ have you reproduced at all? [07:15] lifeless: actually, yes, just this morning on gentoo, but it's still... random [07:15] vila: open a bug please [07:15] was it ext4 again? [07:16] lifeless: err, let me check, I think the last time was on karmic no ? [07:16] no ext4 on my gentoo VM [07:17] lifeless: so tmpfs or ext3 [07:39] lifeless: I think I've done the basic things necessary to have customizable program information (name and version right now) and substitution in help text generated from docstrings. [07:40] lifeless: I'm going to start a second branch, based on this first one, to update bzrlib.builtins, since I've only touched bzrlib.commands so far. [07:40] lifeless: Should I create a merge proposal for the first branch now, or would you prefer them together? [07:51] lifeless: bug #435065 [07:51] Launchpad bug 435065 in bzr "Random test_hammer_hashcache failure" [Medium,Confirmed] https://launchpad.net/bugs/435065 [07:52] lifeless: I'll comment to add the new occurrences if ever [07:52] at first I thought that said "test hammer headache failure" which I would think would be an easy test to pass; apply hammer to head, and assert(). === AfC2 is now known as AfC === vila is now known as vila-dentist [07:55] AfC: :D [07:58] vila-dentist: thanks [08:10] Are there tests for the bzrlib.builtins module? [08:11] Ah ha, bzrlib/tests/commands. [08:18] jkakar: not really [08:18] jkakar: they are ... odd [08:18] jkakar: bzrlib/tests/blackbox/test_foo is our current preferred place [08:35] lifeless: Yeah. [08:35] lifeless: I'd like to write a test that basically goes through each builtin command and calls Command.get_help_text() on it, to make sure that the interpolation works properly. [08:37] I don't want to misspell %(program-name)s and not find out until it's too late. [08:38] jkakar: don't [08:38] lifeless: Heh, okay. [08:38] jkakar: I think thats essentially a CPU time waste [08:39] because, the code is in command.py [08:39] lifeless: Yeah, I can see that. On the other hand, I do want to make sure users don't get a broken experience. [08:39] so we should have a test there === weigon_ is now known as jan [08:39] if a particular command wants to vary, it should be able to === jan is now known as weigon [08:39] I don't think that e.g. 'cmd_push' should show up as anything other than 'bzr push' in its help [08:39] There's a test for the generic logic, just not each actual docstring for each builtin command. [08:39] lifeless: Oh, hmm. [08:40] lifeless: I've gone and replaced all the 'bzr' instances in the help text with %(program-name)s. [08:40] there are commands that are general and reusable [08:40] such as alias, where it makes sense [08:40] lifeless: Maybe I should only do it for commands that are obviously reusable? [08:41] jkakar: I think you should do it for the ones you want to reuse, so we can evaluate if it makes sense etc [08:41] cmd_help :) [08:41] I don't see that branding the front end for 'cmd_serve' makes a lot of sense though. [08:41] lifeless: Also cmd_version. [08:42] the text is easier to read for program authors as 'bzr this' [08:42] and 'bzr that' [08:42] lifeless: Okay, I guess I'll revert the changes that aren't necessary. [08:42] lifeless: It is, yeah. [08:42] so we should only pay the price of having it have subst vars when there is a benefit [08:42] lifeless: Right now it always tries to. [08:42] [a benefit we want :P] === vila-dentist is now known as vila [08:42] jkakar: the cost to calculate them is low, I'm fine with the program always translating [08:43] lifeless: Okay, cool. [08:43] jkakar: cmd_version seems surprising to me, I would have expected --version to be what you advertise/want folk to see [08:46] lifeless: I was just looking at it and it's not as trivial to replace as I'd hoped. [08:47] lifeless: I have a cmd_version in commandant.builtins that prints the program name and version and has a --short option. [08:47] lifeless: I was hoping to remove it and use the version in bzrlib, but it's not obvious just now how to do that nicely. [08:49] I have two thoughts here [08:50] one is that --version != 'frontend version'. I wish bzr didn't have a 'version' command. [08:50] the second is that you can probably write an appropriately hookable thing, but its such a shallow thing I'd rather we encouraged people to do what bzr does [08:51] and include all sorts of useful things there [08:51] by not giving the a fork [08:51] the second is kindofweakandarguable [08:53] Yeah, makes sense. [08:54] Being able to install a custom bzrlib.version.show_version would be the trick I guess. [09:04] fullermd: hey [09:04] fullermd: you still around? === mrevell-dinner is now known as mrevell [09:16] hello bzr [09:19] Where do you say in Launchpad what version of Ubuntu you're running when reporting a bug? [09:19] AfC, in the comment? :) [09:20] otherwise, you file the bug against the package in the specific series [09:20] AfC: ubuntu-bug will do that for you [09:20] beuno: garh no [09:20] lifeless: what's that? [09:20] AfC: are you filing a bug upstream on e.g. bzr, or on something in ubuntu itself? [09:21] beuno: really? You mean their bug tracker devoted to bugs about a Linux distro doesn't have concrete metadata for which distro version something is being reported about? [09:21] lifeless: ubuntu [09:22] AfC: then you should run, on your machine 'ubuntu-bug PACKAGE' [09:22] AfC: and thats all :> [09:22] oh [09:22] AfC, correct. Primarily because it's not ubuntu-specific [09:22] [well, in this case not sure what package, but I guessed] [09:22] beuno: well that's stupid. [09:22] beuno: because it may not be Ubuntu specific, but it's surely Ubuntu central! [09:22] AfC: the feature of tracking versions <->packages is called 'infestation'. We had it, but not polished, so it was removed to avoid the massive scaling problems it engendered. [09:23] beuno: I think you should have some coffee; or some sleep. [09:23] lifeless: sure [09:23] * igc dinner [09:23] lifeless, I've had both! [09:23] lifeless: but I mean, you'd think it'd be important for me to concretely be able to say [09:23] beuno: because you're suggesting things the ubuntu bugs team would be quite unhappy with! [09:23] "THIS IS A RELEASE CRITICAL BUG IN KARMIC". You know, just FYI. Trying to help. Hello? Anyone? [09:24] AfC: so by definition we can only have RC bugs with unreleased code ;) [09:24] lifeless, I don't think I'm suggesting anything at all. I'm stating how things work! [09:24] AfC: a floating bug is presumed to be in karmic [09:24] beuno: only ubuntu-bugs & teams with similar privileges can open series bugs; other folk have to nominate. [09:24] lifeless: well, sure. I'm taking the definition from what it meant in Debian terms ~ 10 years ago. I'm sure things have involved. [09:24] evolved* [09:25] beuno: and its used to track planned work, not present-in [09:25] beuno: in Ubuntu's usage of launchpad today. [09:25] anyway, it just seems kinda important to be able to indicate I'm actually using Karmic so that maybe this report is timely, etc [09:25] oh well [09:25] they'll see it some time in 2012. [09:26] AfC: the vast bulk of reports are from $current [09:26] end users rarely file bugs compared to contributors [09:26] lifeless: so am I running $current or $current + 1? [09:26] (and by running karmic you're a contributor) [09:27] lifeless: yeah, not for long [09:27] in my lingo you're running $current [09:27] * AfC can't wait to not be a contributor anymore. This is hell [09:27] Yesterday it was "crash the system on logout". [09:27] I mean, sure, that's one way to shut down, but not quite what I had in mind :) [09:27] Hi, where's the plugins directory? it isn't ~/.bazaar/plugins? [09:28] jnz_: yes [09:28] it isn't there :\\\ [09:28] jnz_, you can create it [09:29] lifeless: and, of course, "try to use 3G card a 2nd time makes CPU spin to 100%, no workie for you" is not exactly fun either. Especially when it was working fine 4 days ago. [09:29] ok, and what about this: Unable to load plugin 'filters'. filters I don't know what kind of plugin it is. [09:29] Sorry, I'll stop venting now. Just been a really frustrating few days. Not really what I was expecting. [09:30] how do i add the actual root to a MemoryTree on a fresh branch [09:31] jnz_: does the command [09:31] $ bzr plugins [09:31] jnz_: give you sane looking output? [09:31] here is some random stuff i tried, im a bit puzzled http://paste.pocoo.org/show/141082/ [09:32] yes AfC, but I don't see filters [09:33] bzr is v2.0rc2 [09:33] jnz_: run the failing command with -Derror [09:33] jnz_: that will give a backtrace [09:33] ronny: look in the bzr test suite for MemoryTree, you can see example usage [09:34] ronny: note that when you drop the lock on a MemoryTree it resets to no-changes [09:34] AfC: well, to be fair we haven't hit Beta yet. its a shame its rough though [09:35] hmm, now i have to check, why i loose the lock [09:36] If I use a different repo format than the launchpad mirror, pulls will b ereally slow, right? [09:36] eh, I mean branch (someone is trying to get a copy of an existing branch on lp) [09:36] lifeless: thnaks for the hint with the lock, didnt think that one would have an issue [09:36] (basically he wants git clone) [09:37] lvh: if the format is different, some degree of transformation will be needed [09:37] lvh: just doing 'bzr branch lp:foo /tmp/foo' will preserve the format [09:37] the command is ok, then the problem is the bzr plugin for eclipse [09:37] lifeless: yeah, but hes' going to make a lot of branches off of that, so I started with bzr init-repo [09:38] lifeless: not sure if that changes anything [09:39] if the thing you're branching from isn't in the default format, init-repo would have a different format [09:39] right [09:39] would you notice that in the form of ridiculously slow bzr branching? (eg, 10kb/s while 'Finding revisions') [09:40] i thought that transformation happened afterwards [09:40] current repo format: Packs 6 rich-root (uses btree indexes, requires bzr 1.9) [09:40] lifeless: _really_? I thought alpha [that you warned me away from] was only the first month / six. Damn. My mistake. I really should have been running Intrepid after all. [09:41] I'm not entirely sure about what he's using, but if I use bzr init-repo I get 2a [09:41] lvh: right, and yes [09:41] lifeless: Woot, it's ready: https://code.edge.launchpad.net/~jkakar/bzr/custom-project-name/+merge/12267 [09:41] And now it's time for bed. G'night and thanks for the help! [09:42] gnight [09:42] lifeless: so I should tell him to get rid of the current repo dir, and just use bzr init-repo --1.6.1-rich-root twisted [09:42] jkakar: bye :-) [09:42] err, --1.9-rich-root [09:43] lvh: yes [09:43] or be very very patient [09:43] lvh: you kinda want to avoid cross format all the time. It's really ok to use one or the other [assuming you're not in a corner case that the newer format (and the code that leverages it) requires]; if you use an older one then all upgrade in concert you'll be ok [09:43] lvh: I believe the twisted wiki page documents this already [09:43] lifeless: ah, yeah, I should probably link him to that [09:43] lifeless: Thanks! [09:48] jkakar, I like your new patch. [09:48] (I have a few questions, but sadly bzr patch code review has to wait on days that Launchpad is releasintg) [10:19] jml: btw, you can trim -some- content out in mail replies ;) === doko_ is now known as doko === cprov-afk is now known as cprov [12:20] hmm [12:20] lifeless: is there any other stupid thing one could do to get that exception [12:21] (im pretty convinced i keep the lock) === mrevell is now known as mrevell-lunch [12:39] lifeless: here is my session: http://paste.pocoo.org/show/141106/ [12:51] ronny: you haven't made the directories [12:52] ronny: I'm not sure if you can on MemoryTree; as previously discussed its a test double, its not 'complete' [12:53] lifeless: You pung? [12:56] fullermd: yah; thinking I might tap you for a few BSD packages [12:56] testtools, junitxml & subunit [12:56] hmm, appearantly it has mldir [12:56] eh mkdir [12:56] lifeless: all that path2id/id2path stuff is pretty frustrating [12:59] ronny: all what stuff; you should only rarely need to call it [12:59] lifeless: well, i need it for setting file contents for example [13:00] its late here and I'm not really up for an API discussion right now, but perhaps you could mail the list? [13:01] Mmm. Possible I guess, but not with any alacrity. [13:01] fullermd: I'll drop you a mail [13:01] I'm leery of setting myself up as maintainer for something I don't myself use and understand. [13:01] fullermd: fair enough; I just want to bootstrap stuff for drizzle:) [13:04] Q: Is there some special shell I could/should use for a user who only has access to a server for bzr? === mrevell-lunch is now known as mrevell [15:03] How do I convert an old *old* subtree-capable tree to the new repo format? [15:03] Hmm, s'not that old I think [15:03] Standalone tree (format: pack-0.92-subtree) [15:03] bzr upgrade --format=2a [15:04] bzr: ERROR: Cannot convert from format to format . Does not support nested trees [15:04] Ah, subtree, sorry. [15:04] I mixed with rich-root. [15:05] Kinnison: you can't upgrade directly [15:05] Kinnison: IIRC, subtree should be possible to convert to rich-root [15:05] Kinnison: But you should be able to pull from a subtree repo into a rich root repo [15:05] Kinnison: so the work around is basically: [15:05] Kinnison: bzr init --2a /tmp/foo; bzr pull -d /tmp/foo /path/to/subtree/branch [15:07] jelmer: aha, ta [15:24] Kinnison: if you actually have nested trees this may give strange errors [15:25] Kinnison: which is why upgrading is refused at the moment [15:25] Kinnison: we should really just do a check of the contents of the repo and only allow upgrading if there aren't any nested trees [15:30] It was simply that it was an old svn upgrade i think [15:57] hey guys im having an issue when running the bzr bd command it keeps complaining about my secret key not available [15:57] i uploaded my key to the keyserver.ubuntu.com as well as verified the email and activated so the public key is active [15:59] anyone have any idea :( [16:00] What is the 'bd' command? [16:00] eagles0513875: the name in the changelog doesn't match any UIDs on your GPG key [16:01] ahhhh james_w ok [16:01] Kinnison: builds packages [16:01] thanks james_w [16:01] https://wiki.ubuntu.com/UbuntuDevelopment/Uploading#Signing%20the%20package [16:02] "The UID must be byte-for-byte identical to the Changed-By value (including the key "comment"), so any changes in the name or email address (even down to whitespace) will cause the match to fail" [16:02] see the bit under that for checking this is the case and the ways to fix it [16:02] ahhhhhhh [16:02] ok thanks [16:03] james_w: does that link still apply if im only packaging somethign to test on my local machine [16:03] in that case you don't need to sign it [16:03] "bzr bd -- -uc -us" [16:04] bzr bd --uc -us [16:14] * idnar scratches his head [16:15] bzr: ERROR: Cannot commit from a lightweight checkout to a stacked branch. See https://bugs.launchpad.net/bzr/+bug/375013 for details. [16:15] Launchpad bug 375013 in bzr "lightweight checkout commit to a stacked branch does not work" [High,Triaged] [16:16] I just read that bug, but I don't understand the part about "lightweight checkout"; as far as I know, I don't have any lightweight checkouts involved here [16:17] I guess I'm misunderstanding something about stacking [16:17] should I be using a shared repository instead? [16:18] idnar: run bzr info -v and you'll see what you actually have [16:19] "Standalone tree (format: 1.6)" [16:20] I don't understand what is stacked then [16:20] idnar: is your tree stacked? [16:20] parent branch: /home/mithrandi/code/Fusion/trunk [16:20] stacked on: /home/mithrandi/code/Fusion/trunk [16:21] james_w: will you get a chance to look at bug 425507 before karmic beta freeze? [16:21] Launchpad bug 425507 in bzr-explorer "[needs-packaging] bzr-explorer should be packaged in ubuntu and the ppa" [High,Confirmed] https://launchpad.net/bugs/425507 [16:22] no, afraid not [16:22] idnar: bzr info /home/mithrandi/code/Fusion/trunk [16:22] I thought bzr-explorer was Windows stuff? [16:22] bialix: that's also "Standalone tree (format: 1.6)", not stacked on anything [16:22] Lo-lan-do: it was joke? [16:22] igc should have called it bzr-nautilus [16:23] or bzr-navigator [16:23] james_W: would pitti or someone else be able to tackle it do you think? [16:23] or RapidBzr [16:23] bialix: No, I must have been confused. What was the alternative to TortoiseBzr? [16:23] idnar: I'm give up [16:23] igc: well, we're well past the time when new packages are normally accepted [16:23] I guess I'll try shared repositories instead [16:23] Lo-lan-do: bzr-explorer is [16:24] Oh. But it's portable then, right? [16:24] igc: someone may have time, but they will also need a freeze exception [16:24] Lo-lan-do: yes, it's Qt-based as QBzr [16:24] bialix: I see. Thanks. [16:24] Lo-lan-do: but bzr-explorer can use bzr-gtk plugin [16:25] funny, eh? [16:25] james_w: I thought poolie's ffe was going to cover explorer as well as bzr core - maybe it didn't [16:26] Lo-lan-do: see http://doc.bazaar-vcs.org/explorer/en/ [16:26] time for some sleep [16:26] night all [16:26] igc: night [16:27] night bialix [16:27] igc: https://bugs.edge.launchpad.net/ubuntu/+source/bzr/+bug/430467/comments/4, so it wasn't clear if that was how it was intended to be [16:27] Launchpad bug 430467 in subvertpy "[ffe] please ship bzr 2.0.0 or 2.0.0rc2 in Karmic" [Undecided,Fix released] [16:27] night igc === TheLyle is now known as IslandUsurper === deryck is now known as deryck[lunch] [17:30] jml: Cool. I'll be happy to try and answer whatever questions you have. === mrevell is now known as mrevell-dinner === deryck[lunch] is now known as deryck [19:24] What does bzr use for an SSH client on Windows? [19:26] Paramiko or Putty, I think. [19:27] How would I add an ssh key to that in Windows? [19:27] Looks like bzr can use paramiko, putty, OpenSSH or SSH Corp. SSH. [19:28] I know Putty can. No idea about Paramiko though. And I don't have a Windows box :-) [19:28] Whether you can run the latter two on Windows... [19:28] Paramiko can use either Putty or OpenSSH's keys, IIRC. [19:30] magcius: Use Pageant for that http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html [19:31] Peng_, what does Bazaar use in the Windows distribution. [19:33] I honestly don't know which one is preferred. [19:33] What matters is which one it's using for *you* anyway. [19:33] * Peng_ tries to dodge question. [19:46] hello jam [19:46] hi bialix [19:46] may I ask you some questions about reference counting in Python? [19:46] magcius: We generally use paramiko first, and I recommend using Pageant (from the putty utils) [19:46] you can use that as an agent, and add your keys there [19:47] (putty is a decent manual tool, it makes a bad subprocess, so we prefer not to use it for the ssh connection) [19:47] bialix: sure === mrevell-dinner is now known as mrevell === TheLyle_ is now known as IslandUsurper [21:16] hi [21:16] i had a 3 MB ogg and mp3 file in my project's examples at particular points [21:16] isn't that bad for people who are checking out my project? wouldn't it increase the download time? [21:20] Yes, but 3 MB isn't all that much. [21:20] Besides, it's too late to remove it from the history now. [21:20] i know :( [21:21] i was contemplating rerolling my revisions [21:21] Peng_: is a 10MB .bzr directory for a 77 revision project normal? [21:21] you can try to use rebase plugin [21:21] it's 10.3 MB [21:23] 100MB would be much worse [21:23] bialix: would the rebase plugin allow me to remove an entire directory from every commit? [21:23] mmm, not really [21:24] you can replay your revisions [21:24] you can delete some revisions [21:24] oh [21:24] a rerolling script sounds better if i would have to [21:24] and what do you mean "100MB would be much worse" [21:24] to remove entire directory you can look at fast-import pluign [21:24] is 10.3MB bad? [21:24] it depends [21:24] what does fast-import do [21:25] fast-import has filter feature [21:25] you can filter out some files or directories [21:25] from everything? [21:25] Just out of curiosity, which repo format are you using? [21:25] 1.x [21:26] And does the 10.3 MB include junk in .bzr/repository/obsolete_packs and .bzr/repository/upload? [21:26] I don't understand your question: "from everything" [21:26] obsolete_packs is empty here [21:26] so is upload [21:27] Overall, a 10 MB repo isn't very interesting... Lots of large projects are many times larger. [21:27] If you don't mind, got an URL? [21:27] I'm just curious. [21:27] 10MB usually means you have a lot of files, or several big files inside [21:27] for 77 revisions [21:27] https://launchpad.net/amethyst-mm [21:28] i want the examples to be gone pretty much, they are quite unnecessary [21:28] well, at least the ogg and mp3 file that i had [21:30] I could go either way. 10 MB isn't that much data, but the longer you wait, the harder it'll be to recreate the branch... [21:30] In my case, laziness would probably win out over tidiness. :P [21:31] jelmer: what am i supposed to put into dulwichs object_stroe.add_objects(objects) [21:32] jelmer: trying a list of git objects, but it wants a list of tuples of path, object [21:36] bialix: so, i could use fast-import and basically just tell it to chop these 2 files out off all the history? [21:36] and then overwrite the repo in launchpad [21:36] you can try, yes [21:36] Any preexisting repos would keep all of the revisions, actually increasing their size. :D [21:36] i can try meaning i would have to hack around and try to get it to do something it's not meant to do? [21:37] after fast-import processed your branch all old branches will be totally incompatible with new one [21:37] what do you mean old branches? [21:37] we only have 1 branch [21:38] All copies of it. [21:38] oh, yes, that shouldn't be a big deal [21:38] only like 3 people actually have pulled a copy of my project :P [21:39] meoblast001: you have big files in revno 8 and 71 [21:39] maybe you need relax and live with them [21:39] i do? [21:40] what are those big files? [21:40] your mp3 and ogg [21:40] exactly [21:40] mp3 committed in revno 8, then deleted in 71 and replaced with ogg [21:41] rebase will rewrite entire history post revno 7 [21:41] yup, i want to chop both of those out completely, sure, it would break the examples, but it's not necessary we have those files [21:41] so almost everything [21:41] that would be bad, right? [21:41] it depends [21:41] fast-import will rewrite entire history [21:41] rebase nost of history [21:41] rebase most of history [21:42] hm [21:42] fast-import will be simpler [21:42] i know someone who wrote a bzr to git script [21:42] maybe i could use that? [21:42] rebase will require manual work [21:43] bzr to bzr [21:43] you can [21:43] git has filter feature [21:43] to convert form bzr to git you anyway needs fast-import ;-) [21:44] well, this would be bzr to bzr minus a few files [21:44] converion bzr->git->bzr will destroy your history identity as well [21:44] no [21:44] not bzr->git->bzr [21:44] just bzr->bzr_minus_some_files [21:44] fast-import is bzr->anything [21:44] rewriting everything but removing specific files [21:45] yep [21:45] fast-import can do that? [21:45] fast-import is yhe answer [21:45] fast-import is the answer [21:45] install this plugin and read its docs, there is examples [21:45] ok [21:45] if i need help i'll ask you :P [21:46] but first i will read the docs [21:46] if you catch me ;-P [21:46] time to sleep for me [21:46] oh, good night === TheLyle is now known as IslandUsurper [21:54] "bzr fast-import clean.fi clean.bzr" [21:55] what is ".bzr" and ".fi" [21:55] fi is fast-import stream [21:56] hm, is it a directory? [21:56] no, fi it's the file [21:56] should i just use this "bzr fast-import-filter -x missile-codes.txt > clean.fi" [21:56] i don't know what "the file" is [21:57] the file i want removed? [21:57] fast-export command produce stream of your history in special format [21:57] format called git-fast-import [21:57] hence fi -- it's the stream saved on the disk [21:58] fi = fast-import [21:58] that doesn't sound good [21:58] i just want it to remove the stuff from my bazaar repository [21:58] you can use | [21:58] |? [21:58] bzr fast-export YOURBRANCH | bzr fast-import-filter -x mp3 | bzr fast-import NEWBRANCH [21:59] something like that [21:59] pipes? [21:59] if i want the MP3 and the OGG out, do i just add a second "bzr fast-import-filter -x ogg? [22:00] and "yourbranch" would be ./ if i'm cd'd into it? [22:00] and newbranch would be the new directory? [22:02] no, you can combine several -x options [22:02] can i do *.mp3 and *.ogg? [22:02] I don't remember exact details about NEWBRANCH [22:02] meoblast001: I dunno [22:03] try [22:03] save the stream of original history to orig.fi file [22:03] and then filter it [22:03] i don't know where the ".fi" file is [22:03] the size of this file will be hundred of MBs but it's all locally [22:04] where is the file at? [22:05] bzr fst-export YOURBRANCH > somefile.fi [22:05] bzr fst-export YOURBRANCH > othernameyouwouldlike.xxx [22:05] anything will work [22:06] I mean "fast-export" above [22:06] why am i importing the new branch [22:06] and exporting the current branch? [22:07] you export current branch, filter it and thus get new stream, then convert the stream to the branch [22:08] fast-import working in the terms of "history stream" [22:09] woah woah woah [22:09] this is going to remove revisions with these files? [22:10] no, filter out files from revisions [22:10] ok [22:10] the last part is giving me bzr: ERROR: [Errno 2] No such file or directory: u'new.fi' [22:10] "woah"? [22:11] i thought it was going to remove any revision that had to deal with that file [22:11] what is the last part? [22:11] bzr fast-import new.fi [22:12] do you have new.fi file? [22:12] no [22:12] hence error [22:13] should i just do bzr fast-export YOURBRANCH | bzr fast-import-filter -x mp3 > file.fi? [22:13] fast-import read the stream and re-create the branch [22:13] yep [22:13] bzr: broken pipe [22:14] bzr fast-export YOURBRANCH > orig.fi [22:14] why ? [22:14] bzr fast-import-filter orig.fi -x mps > new.fi [22:14] oh, ok [22:14] I dunno why, are you on windows? [22:14] no [22:14] I dunno twice [22:15] ah [22:15] ahbzr fast-export YOURBRANCH | bzr fast-import-filter - -x mp3 > file.fi [22:15] >.< it's printing to console [22:15] you'd better look at examples for filter command [22:16] i forgot to output it to a file >.< [22:16] ronny: for blobs and trees that should be the path they have but it may also be None. It's used for finding optimal delta bases [22:17] jelmer: ah, i see [22:17] ronny: you can without problems just use None as path everywhere [22:17] jelmer: i kind of did that (using '' as path) [22:17] bialix: how do i reexport this to a directory? [22:17] jelmer: im currently extending anyvc commit building to more complex cases [22:17] reexport? [22:18] run fastexport again [22:18] Why do I get this error? http://pastie.org/628005 [22:18] Is it bzr 1.18.1 bug? [22:19] Or is it because of this line: email C:\Arquivos de Programas\Bazaar\plugins\email [unknown] [22:19] look at branch.conf [22:19] I've committed two merges from personal bzr-email branches [22:19] i'll take a look at it more later, thank you [22:19] i've gtg [22:20] RenatoSilva: try bzr --no-plugins info [22:20] bye [22:21] RenatoSilva: it seems you have wrong characters in branch.conf, have no idea why. Maybe disk failure? === Toksyury1l is now known as Toksyuryel [22:22] * bialix disappears [22:26] bialix: oh, it's the "Olá", non-ascii is not supported there :( [22:27] RenatoSilva: the error was with utf8. so i'd think its more than asci. but maybe the file was saved with the wrong encoding. did you edit it? [22:28] zsquareplusc: ok let me try Olá as utf-8, probably it was the encoding really [22:30] hello all, is there an way to delete an old revision? like my current revision is 756 and the revision that i want to remove is 746. [22:30] rbelem: what do you expect to happen? edit the history? [22:31] if you just want to "unapply" the changes of that revision, that's possible. you'll just end up with a new commit undoing the changes [22:32] zsquareplusc: saved as utf-8 without bom and worked just fine, thanks :) [22:33] zsquareplusc, yes... :-) i want to remove that revision because now see that revision do not make sense [22:33] lifeless: I was trying to understand what you said about rebase breaking pull and merge [22:33] lifeless: you mean branches based on the rebased branch in the past, right? [22:33] zsquareplusc, but with unapply what with earlier revisions? [22:34] * happens [22:34] lifeless: however I wasnt really thinking of rebasing trunk or branches that potentially could be branched [22:34] rbelem: nothing. the old revisions are kept as they are [22:34] zsquareplusc, oh! i got [22:35] lifeless: the branch in question isn't really targeted for being branched, it's a personal branch targeted for merging into trunk [22:37] zsquareplusc, ok... so if i want to make that revision vanish i will have to create another branch and reapply patch by patch? [22:37] LarstiQ: https://code.edge.launchpad.net/~kfogel/bzr-hookless-email/byte-limit/+merge/11233 :-) [22:38] lifeless: I don't think it's a good idea to rebase project branches either, but when your feature branch personal and you know that no one will branch it (you can put a warning in description), well, in this case I think rebase is a good option [22:39] lifeless: I don't think it's a good idea to rebase project branches either, but when your feature branch is personal and you know that no one will branch it (you can put a warning in description), well, in this case I think rebase is a good option [22:40] RenatoSilva_: another good reason for rebase is that the feature diff becomes clean, only one single diff between revision can tell you how code changes compared to trunk [22:40] lifeless: ^ [22:41] lifeless: using updating merges it may be a bit hard as trunk may have changed since your work [22:41] rbelem: http://doc.bazaar-vcs.org/bzr.dev/en/user-guide/index.html#reverse-cherrypicking [22:42] RenatoSilva_: bzr diff -r ancestor:../trunk - will tell you whats different in the branch easily as well [22:46] ronny: cool [22:47] are the devs working on TortoiseBZR here? [22:49] zsquareplusc, i will test here [22:49] thanks :-) [22:49] jelmer: with some luck i'll have a nice api for building and introspecting usefull commits on all important vcs's at the end of the week [22:49] lifeless: sorry, being disconencted all the time [22:50] lifeless: bzr diff -r ancestor:../trunk -, including the '-'? [22:51] lifeless: well in my example here http://img33.yfrog.com/img33/5295/imagemxa.png, rev. 18 in the former is rev.23 in the latter [22:51] lifeless: I just have to diff -r 22..23 and I'll have the changes according to the latest code [22:52] lifeless: for the former the same diff -r 17..18 is --outdated-- [22:53] lifeless: I'll have to go through the brach and look at all merges from trunk till the end, to get a view on the updated change [22:53] lifeless: by elimitating update-only merges, I make the feature diff more natural [22:54] lifeless: unfortunately I don't have the diffs now but in that example what happened was that... [22:55] lifeless: I had pt-br_solenoid.Theme.po in branch root, then I created the feature branch and modified this file [22:55] lifeless: in the meantime, the file was moved in trunk to a subfolder /translation, and was renamed to pt_BR.po [22:56] lifeless: using update merges, the rev that implements the feature is now outdated because it relates to old /pt-br_solenoid.Theme.po [22:58] abentley: you about? [22:58] lifeless: that diff is not enougth to know how the feature changes the code, you have to also look at the specific merge feature --> trunk where the conflict occurs and is solved [22:58] RenatoSilva: that why you use 'diff -r ancestor:../trunk', not 'dff -r 17..18' [22:58] RenatoSilva: Just out of curiosity, what's up with your connection? [22:58] hmm [22:59] bzr log -r $revno:$branch [22:59] shows $revno in the context of $branch in the output [22:59] not $revno in the context of . [22:59] lifeless: (i.e pt-br_solenoid.Theme.THIS and pt-br_solenoid.Theme.BASE, then you move THIS to /translations/pt_BR.po and bzr resolve --all and merge) [22:59] that wasn't what i was expecting [22:59] lifeless: sorry I will read your answer now [23:00] Peng_: I don't know what's up with my conn :9 [23:01] lifeless: literally as you typed? is it possible in ui? [23:02] lifeless: I'll try diff -r ancestor:../trunk at home anyway [23:04] mwhudson: so bzr log -r $revno:$branch? how would that be in my example? [23:05] RenatoSilva: mwhudson is talking about something completely different [23:05] ok sorry then [23:05] RenatoSilva: yeah, sorry for dropping in with something that looked similar but is in fact entirely different [23:06] lifeless: diff -r ancestor:../trunk, s/ancestion/feature-branch's name, right? [23:06] s/..\/trunk/path_to_trunk [23:06] lifeless: I'm sorry can't grok that command atm [23:06] cd $feature_branch [23:06] bzr diff -r ancestor:$trunk_url [23:06] lifeless: trunk is lp:moin-solenoid [23:07] lifeless: and feature branch is ~/moin-solenoid/userprefs [23:08] lifeless: so bzr branch [...]userprefs, cd userprefs, bzr diff -r ancestor:lp:moin-solenoid right [23:09] yes [23:09] ok [23:11] lifeless: I'll check later if I'll get the same diff as with rebase, thanks! [23:27] is .bzr's branch.conf pushed to lp too? [23:27] I'm worried about some bzr-email confs I don't want to share [23:27] the one in your home direcotry, not [23:28] you can have a branch specific config in the .bzr folder i guess that one is pushed [23:28] No, it's not. [23:29] ok [23:29] ok thanks! [23:29] Here's a potentially stupid and probably inflammatory question that Google hasn't been able to help me with... I have a Client (customer) that has decided to move to bzr for source control from git (long story omitted about git's UI being "too hard" to use). What repository format will get me closest to the performance of git? --2a? --1.9-rich-root ? --1.14-rich-root? I.e., what is the fastest repo format given half a dozen developers using a semi-de [23:29] centralized approach with some folks using a sandbox (git-like) workflow and others using a subversion-like workflow? [23:29] what's the point of holding in in the braches .bzr directory then? [23:30] milli: 2a [23:30] milli: What thumper said, assuming everyone's on a new enough (2.0.0 ideally, 1.18 OK) version. [23:30] thumper: that's it? Hands down it's the fastest? No caveats? [23:31] 2a is supported since 1.16 (I think offhand), but it's a little rough early on. [23:31] milli: I'd say yes [23:31] I saw the 2.0.0 just hit Karmic... [23:31] that [23:31] ok [23:34] Ursinha: ^ [23:36] milli: 2a fixes a number of big-O scaling problems with older formats. Its got lets; we know of a handful of minor regressions, and they won't require format changes to fix. [23:36] milli: with bzr 2.0.0 you should have fine performance; if you don't _please_ file a bug and we can figure out why [23:37] lifeless: nod [23:37] s/lets/legs/ [23:44] hi there [23:49] hai [23:50] lifeless: i put up the uifactory tests [23:50] for review [23:50] however lp is readonly atm [23:50] yah [23:53] * fullermd read that as "olfactory tests"... [23:54] mm [23:54] i'd like to do some import tariff tests soon :) [23:55] blah [23:55] i guess it's better than being offline entirely [23:56] I figured that meant "tests to tell you if your code stinks".