google-code

Download an SVN repository?

风格不统一 提交于 2019-11-28 16:03:47
I'm looking for an online tool that will allow me downloading an online SVN repository (google code etc.). Do you know of anything? Update I want to download the top parent folder and all its subfolders and content, without installing anything on my computer. If you want a GUI to access SVN repos you can use http://tortoisesvn.tigris.org/ (and its Repobrwoser) If you want a browser based tool, to browse ANY SVN repo without installing SVn on your machine, i don't such a tool. I know only tools to install to your webserver and needed a installed SVN client on these server. To checkout or export

Download an SVN repository?

被刻印的时光 ゝ 提交于 2019-11-27 19:50:44
问题 I'm looking for an online tool that will allow me downloading an online SVN repository (google code etc.). Do you know of anything? Update I want to download the top parent folder and all its subfolders and content, without installing anything on my computer. 回答1: If you want a GUI to access SVN repos you can use http://tortoisesvn.tigris.org/ (and its Repobrwoser) If you want a browser based tool, to browse ANY SVN repo without installing SVn on your machine, i don't such a tool. I know only

Reverse Geocoding With Google Map API And PHP To Get Nearest Location Using Lat,Long coordinates

左心房为你撑大大i 提交于 2019-11-27 12:11:26
I need a function to get an nearest address or city from coordinates(lat,long) using google map api reverse geocoding and php... Please give some sample code RedBlueThing You need to use the getLocations method on the GClientGeocoder object in the Google Maps API var point = new GLatLng (43,-75); var geocoder = new GClientGeocoder(); geocoder.getLocations (point, function(result) { // access the address from the placemarks object alert (result.address); }); EDIT : Ok. You are doing this stuff server side. This means you need to use the HTTP Geocoding service . To do this you will need to make

Store password in TortoiseHg

纵饮孤独 提交于 2019-11-27 10:03:17
Is there a way to configure TortoiseHg to store my password? I have a project hosted on Google Code that I access using TortoiseHg. Whenever I want to push changes to Google Code TortoiseHg prompts me for a username and password. Google Code requires me to use an auto-generated password, and it gets quite repetitive to look it up every time. Nicolás Security warning Although this answer is accepted as of 2017-09-15, it is not a recommended solution. You should never store your passwords in plain text. Use the mercurial_keyring extension instead. See another answer here. You can change your

Maven repository for Google Code project

梦想与她 提交于 2019-11-27 09:37:32
问题 I'm hosting a small open source project on Google Code, and I have been asked to submit the jar to a publicly accessible Maven repository. I have almost no practical knowledge of Maven. What would be the best way to do this? Is there some central repository that I can submit to, or can I host my own? What would I need to do when I want to release a new version of the jar? I've been Googling and found this, which looks nice and simple, but it seems a bit ... contrary to the spirit of Maven, to

Get certificate fingerprint of HTTPS server from command line?

梦想的初衷 提交于 2019-11-27 07:48:15
Recently Mercurial has added certificate validation when connecting to HTTPS servers. I'm trying to clone the wiki repository for a googlecode project at https://wiki.pydlnadms.googlecode.com/hg/ , but the certificate is for *.googlecode.com . I was under the impression that this is called a wildcard domain and valid for all subdomains, but I'm receiving the error: matt@stanley:~/src$ hg clone https://wiki.pydlnadms.googlecode.com/hg/ pydlnadms-wiki abort: wiki.pydlnadms.googlecode.com certificate error: certificate is for *.googlecode.com Allegedly I need to add the certificate fingerprint to

Get certificate fingerprint of HTTPS server from command line?

孤街浪徒 提交于 2019-11-27 03:59:53
问题 Recently Mercurial has added certificate validation when connecting to HTTPS servers. I'm trying to clone the wiki repository for a googlecode project at https://wiki.pydlnadms.googlecode.com/hg/ , but the certificate is for *.googlecode.com . I was under the impression that this is called a wildcard domain and valid for all subdomains, but I'm receiving the error: matt@stanley:~/src$ hg clone https://wiki.pydlnadms.googlecode.com/hg/ pydlnadms-wiki abort: wiki.pydlnadms.googlecode.com

How do I download code using SVN/Tortoise from Google Code?

时光毁灭记忆、已成空白 提交于 2019-11-27 02:50:14
I just saw a really cool WPF twitter client that I think is developed by the Herding Code podcast guys HerdingCode called Witty . (or at least, I see a lot of those guys using this client). This project is currently posted up on Google Code. Many of the projects on Google Code use Subversion as the version control system (including Witty). Having never used Subversion, I'm not sure what to do to download the code. On the source page for this project ( google code witty source ) it gives the following instruction: Non-members may check out a read-only working copy anonymously over HTTP. svn

How to download/checkout a project from Google Code in Windows?

风格不统一 提交于 2019-11-27 02:27:32
How do I download a ZIP file of an entire project from Google Code when there are no prepared downloads available? This is what I see on the checkout page: Command-line access Use this command to anonymously check out the latest project source code: svn checkout http://myproject.googlecode.com/svn/trunk/ myproject-read-only But I'm working on Windows and I don't have the svn binaries ... do I need these? I can access individual source code file or view the Subversion HTML pages, but that just allows me to access source code files one-by-one. If you don't want to install anything but do want to

Reverse Geocoding With Google Map API And PHP To Get Nearest Location Using Lat,Long coordinates

给你一囗甜甜゛ 提交于 2019-11-26 22:22:18
问题 I need a function to get an nearest address or city from coordinates(lat,long) using google map api reverse geocoding and php... Please give some sample code 回答1: You need to use the getLocations method on the GClientGeocoder object in the Google Maps API var point = new GLatLng (43,-75); var geocoder = new GClientGeocoder(); geocoder.getLocations (point, function(result) { // access the address from the placemarks object alert (result.address); }); EDIT : Ok. You are doing this stuff server