Tagged Questions
5
votes
2answers
383 views
How can I get Mercurial to push commits again?
I'm not aware that I changed anything and am running Ubuntu 10.10. Mercurial had been working fine and then all of a sudden when I started pushing commits this morning I started receiving the ...
4
votes
2answers
1k views
hg pull from bitbucket using fabric
I'm trying to use fabric to deploy a Django project and I get this error when I run hg pull:
[myusername.webfactional.com] run: hg pull
[myusername.webfactional.com] out: remote: Warning: Permanently ...
1
vote
1answer
40 views
Change internal links rendering using python-creole
My goal is to create a locally-browsable clone of the bitbucket's wiki browser.
Pages are written using creole syntax.
I'm using python-creole to render the files into html. It works relatively ...
1
vote
3answers
312 views
How to pull a BitBucket repository without access to hg
I was wondering if it was possible to pull a private mercurial repo to a server without access to hg. I have SSH access, but do not have the ability to install HG. I was thinking some kind of Python ...
1
vote
4answers
729 views
Bitbucket API authentication with Python's HTTPBasicAuthHandler
I'm trying to get the list of issues on a private repository using bitbucket's API.
I have confirmed that HTTP Basic authentication works with hurl, but I am unable to authenticate in Python. ...
1
vote
3answers
780 views
Python urllib.urlopen() call doesn't work with a URL that a browser accepts
If I point Firefox at http://bitbucket.org/tortoisehg/stable/wiki/Home/ReleaseNotes, I get a page of HTML. But if I try this in Python:
import urllib
site = ...
0
votes
1answer
88 views
Connect to authenticated REST service c# to get back JSON data
I am trying to call a REST Api to get back some JSON data and I can't make it connect. I think it needs a cached cookie or something to work. Any ideas or people that have used the REST Bitbucket.org ...