We have migrated moblin.org to our new Drupal infrastructure. This migration enables the moblin community to grow and better collaborate on moblin development going forward. We will be continuously updating the site and adding additional features over time. If you have any problems or issues, please let me (and the list) know.
There is a moblin.org bugzilla to submit bugs and feature requests to: http://moblin.org/projects/moblinorg-drupal http://bugzilla.moblin.org/buglist.cgi?product=moblin.org Here are a few notes for developers: Git: All git access and gitweb browsing is now hosted on git.moblin.org. This was just a DNS change, but will have some side effects. For those who have already started development and have cloned a project from the moblin.org git repos, you may need to update the local .git/config on your system to be able to continue pulling/pushing changes, depending on the git transport you used when you cloned. Please review the following and make adjustments as necessary: Git over SSH: 1) Since the hostname has changed, the saved host key in ~/.ssh/known_hosts for moblin.org is no longer valid. Purge it from your known_hosts file. 2) Verify your SSH access to git.moblin.org, and save the hostkey per your ssh setup. 3) For each local clone/branch of a moblin project that was cloned using ssh, you must change the hostname portion of the "url" entry under the "[remote]" section to be "git.moblin.org", not just "moblin.org". 4) Verify git connection by running a git pull or other git command that will confirm remote access to the origin. Git over HTTP: 1) This is not the most stable transport, and you should consider taking the time now to convert it to git:// instead of http:// 2) For each local clone/branch of a moblin project that was cloned using http, you must either: a) [PREFERED] Change the following on the "url" entry under the "[remote]" section: i) Protocol should be "git://" instead of "http://" ii) Hostname should be "git.moblin.org", not just "moblin.org" iii) Remove "/repos" from the path string *OR* b) Change the hostname portion of the "url" entry under the "[remote]" section to be "git.moblin.org", not just "moblin.org". 3) Verify git connection by running a git pull or other git command that will confirm remote access to the origin. Git over GIT: 1) For each local clone/branch of a moblin project that was cloned using git transport (not http or ssh), change the following on the "url" entry under the "[remote]" section: a) Protocol should be "git://" instead of "http://" b) Hostname should be "git.moblin.org", not just "moblin.org" c) Remove "/repos" from the path string 2) Verify git connection by running a git pull or other git command that will confirm remote access to the origin. Git over RSYNC: 1) For each local clone/branch of a moblin project that was cloned using rsync, change the hostname portion of the "url" entry under the "[remote]" section to be "git.moblin.org", not just "moblin.org". 2) Verify git connection by running a git pull or other git command that will confirm remote access to the origin. Also, all places on the site that provide the command to clone a repo (in your blog entries, comments, documentation, etc...) need to be verified/updated: For example, the instructions for cloning the moblin-compiz-plugins project needed to change from: $ git clone http://www.moblin.org/repos/moblin2/moblin-compiz-plugins.git to $ git clone git://git.moblin.org/moblin2/moblin-compiz-plugins.git The key changes are: 1) Use the git:// transport 2) User the "git.moblin.org" hostname 3) Remove the "/repos" portion of the path _______________________________________________ dev mailing list [email protected] https://www.moblin.org/mailman/listinfo/dev
