[00:03] hbeck: An updated package is currently building, which should hopefully resolve the issue [00:06] is there a api in bzrlib to access the toplevel repository, in a local sandbox environmen ? [00:22] NielsD: what is a “local sandbox environment”? how is it different from just a normal branch? [00:25] i have a repo holding a trunk, and feature1, feature2 for example, repo is initialized using bzr init-repo --no-trees [00:25] and i'm looking for a way to find the repo path from trunk, or any branch in the repo [00:26] NielsD: from Python API, or from command-line? [00:27] api [00:27] I don't know :-) someone else will need to answer. [00:27] NielsD: you could begin looking at how ‘bzr info’ gets the repository location. [00:28] yeah, that's what i'm looking at now, realized it when i thought of the cli command :) [00:32] chx: the code to figure out which editor to use can be seen in ‘bzrlib.msgeditor._get_editor’ [00:33] chx: as best I can tell, the cascade is: ‘BZR_EDITOR’, global Bazaar config ‘editor’, ‘VISUAL’, ‘EDITOR’, then a sequence of defaults to try depending on the OS. [00:34] chx: so, I suspect the environment variables are not actually set to the values you think they are, and it's falling back to defaults. [00:34] hrm i tried echo $BZR_EDITOR echo $VISUAL [00:35] both came back empty [00:35] but $EDITOR was definitely nano [00:35] chx: if you can understand Python, the module I mentioned is the one which decides what to do. [00:36] chx: so have a look, it might be different on your system (maybe the behaviour changed between the versions we're running [00:40] bignose: i understnad Python but i can't write Python, i will check [02:12] hbeck: There's an updated qbzr package in bzr/proposed that should help [02:14] maxb: thanks, I'll take a look === Ursinha-afk is now known as Ursinha === Ursinha is now known as Ursinha-afk [17:04] hey, i need some help setting up a bzr server [17:07] DrHalan: OK, what sort of help and what sort of server? [17:09] i have a remote linux (ubuntu) server i access via ssh and i want to setup a bzr repository on that remote server to backup my code [17:16] If Bazaar and SSH are both installed on the server, you do not need to do anything at all to start using bzr+ssh://user@host/path URLs [17:21] sorry my xserver crashed :/ [17:23] are there any good tutorials on how to setup a bzr server? [17:23] maybe someone already answered it but i lost the conversation due to the crash... [17:27] If Bazaar and SSH are both installed on the server, you do not need to do anything at all to start using bzr+ssh://user@host/path URLs [17:29] i just init a bzr repostiory on the server and then i can push to it ? [17:30] Yes, and you don't even have to be on the server for the init step [17:30] You can run bzr init-repo with a remote URL [17:31] Technically you don't even need to create a repository first (in the absence of a shared repository each branch uses an internal repository) but it's usually advisable to take advantage of the space and bandwidth savings [17:37] maxb, thats pretty straightforward :) and how do i add an ssh key to a new user on the server? (don't want to use the rootuser to push to my server) [17:39] Did you intend anything bzr-specific in that question, or are you asking about generic OpenSSH usage? [17:39] guess its a generic openssh question [17:40] So, create the user, add the public key to ~/.ssh/authorized_keys ? [17:40] okay :)