Update GitHub links

This commit is contained in:
John Firebaugh
2014-01-08 16:14:28 -08:00
parent e59d24ed3e
commit ab8a4ffd7b
16 changed files with 21 additions and 21 deletions

2
API.md
View File

@@ -13,7 +13,7 @@ in the hash portion of the URL:
way or relation, respectively. Selects the specified entity, and, unless
a `map` parameter is also provided, centers the map on it.
* `background` - The value from a `sourcetag` property in iD's
[imagery list](https://github.com/systemed/iD/blob/master/data/imagery.json),
[imagery list](https://github.com/openstreetmap/iD/blob/master/data/imagery.json),
or a custom tile URL. A custom URL is specified in the format `custom:<url>`,
where the URL can contain the standard tile URL placeholders `{x}`, `{y}` and
`{z}`, `{ty}` for flipped TMS-style Y coordinates, and `{switch:a,b,c}` for

View File

@@ -64,7 +64,7 @@ project** button near the bottom of the project page. You can edit your
getting too many notifications.
Translations are licensed under
[WTFPL](https://raw.github.com/systemed/iD/master/LICENSE), the same license
[WTFPL](https://raw.github.com/openstreetmap/iD/master/LICENSE), the same license
as iD.
**Why are there so many duplicate "Type" translations?** There are multiple
@@ -194,4 +194,4 @@ So let's say you've changed `js/ui/confirm.js`.
1. Run `jshint js/id` to make sure your code is clean
2. Run tests with `npm test`
3. Commit your changes with an informative commit message
4. [Submit a pull request](https://help.github.com/articles/using-pull-requests) to the `systemed/iD` project.
4. [Submit a pull request](https://help.github.com/articles/using-pull-requests) to the `openstreetmap/iD` project.

2
FAQ.md
View File

@@ -28,6 +28,6 @@ main things iD uses the network for:
* Downloading tiles -- ditto
* Uploading changes
We've though a little about [caching tiles](https://github.com/systemed/iD/issues/127)
We've though a little about [caching tiles](https://github.com/openstreetmap/iD/issues/127)
and downloaded data, but haven't actively worked on it, nor on the data download/upload
question.

View File

@@ -1,6 +1,6 @@
# iD - friendly JavaScript editor for [OpenStreetMap](http://www.openstreetmap.org/)
[![Build Status](https://secure.travis-ci.org/systemed/iD.png)](https://travis-ci.org/systemed/iD)
[![Build Status](https://secure.travis-ci.org/openstreetmap/iD.png)](https://travis-ci.org/openstreetmap/iD)
## Basics
@@ -13,10 +13,10 @@
* [Try out the latest stable release](http://openstreetmap.us/iD/release)
* [Read up on Contributing and the code style of iD](CONTRIBUTING.md)
* See [open issues in the issue tracker](https://github.com/systemed/iD/issues?state=open) if you're looking for something to do
* [Translate!](https://github.com/systemed/iD/blob/master/CONTRIBUTING.md#translating)
* See [open issues in the issue tracker](https://github.com/openstreetmap/iD/issues?state=open) if you're looking for something to do
* [Translate!](https://github.com/openstreetmap/iD/blob/master/CONTRIBUTING.md#translating)
[![translation chart](https://www.transifex.com/projects/p/id-editor/chart/image_png)](https://github.com/systemed/iD/blob/master/CONTRIBUTING.md#translating)
[![translation chart](https://www.transifex.com/projects/p/id-editor/chart/image_png)](https://github.com/openstreetmap/iD/blob/master/CONTRIBUTING.md#translating)
## Installation
To run the current development version, fork this project and serve it locally.

View File

@@ -365,7 +365,7 @@ button {
display: inline-block;
height:40px;
border-radius:4px;
/* Crashes Safari: https://github.com/systemed/iD/issues/1188 */
/* Crashes Safari: https://github.com/openstreetmap/iD/issues/1188 */
/*-webkit-transition: all 100ms;*/
-moz-transition: all 100ms;
-o-transition: all 100ms;

View File

@@ -291,7 +291,7 @@ en:
[free OpenStreetMap account](https://www.openstreetmap.org/user/new).
The [iD editor](http://ideditor.com/) is a collaborative project with [source
code available on GitHub](https://github.com/systemed/iD).
code available on GitHub](https://github.com/openstreetmap/iD).
editing_saving: |
# Editing & Saving

View File

@@ -18,7 +18,7 @@ var censor = {
"Stadtplan Z\u00fcrich": true, // https://github.com/osmlab/editor-imagery-index/issues/14
"Public Transport (\u00d6PNV)": true, // https://github.com/osmlab/editor-imagery-index/issues/15
"TIGER 2012 Roads Overlay": true // https://github.com/systemed/iD/pull/2010
"TIGER 2012 Roads Overlay": true // https://github.com/openstreetmap/iD/pull/2010
};
var descriptions = {

View File

@@ -1,5 +1,5 @@
// For fixing up rendering of multipolygons with tags on the outer member.
// https://github.com/systemed/iD/issues/613
// https://github.com/openstreetmap/iD/issues/613
iD.geo.isSimpleMultipolygonOuterMember = function(entity, graph) {
if (entity.type !== 'way')
return false;

View File

@@ -5,7 +5,7 @@ window.iD = function () {
var context = {},
storage;
// https://github.com/systemed/iD/issues/772
// https://github.com/openstreetmap/iD/issues/772
// http://mathiasbynens.be/notes/localstorage-pattern#comment-9
try { storage = localStorage; } catch (e) {}
storage = storage || (function() {

View File

@@ -69,7 +69,7 @@ iD.svg.Areas = function(projection) {
.data(function(layer) { return data[layer]; }, iD.Entity.key);
// Remove exiting areas first, so they aren't included in the `fills`
// array used for sorting below (https://github.com/systemed/iD/issues/1903).
// array used for sorting below (https://github.com/openstreetmap/iD/issues/1903).
paths.exit()
.remove();

View File

@@ -97,14 +97,14 @@ iD.ui = function(context) {
.append('a')
.attr('target', '_blank')
.attr('tabindex', -1)
.attr('href', 'http://github.com/systemed/iD')
.attr('href', 'http://github.com/openstreetmap/iD')
.text(iD.version);
var bugReport = linkList.append('li')
.append('a')
.attr('target', '_blank')
.attr('tabindex', -1)
.attr('href', 'https://github.com/systemed/iD/issues');
.attr('href', 'https://github.com/openstreetmap/iD/issues');
bugReport.append('span')
.attr('class','icon bug light');

View File

@@ -107,7 +107,7 @@ iD.ui.FeatureList = function(context) {
}
(geocodeResults || []).forEach(function(d) {
// https://github.com/systemed/iD/issues/1890
// https://github.com/openstreetmap/iD/issues/1890
if (d.osm_type && d.osm_id) {
result.push({
id: iD.Entity.id.fromOSM(d.osm_type, d.osm_id),

View File

@@ -67,7 +67,7 @@ iD.ui.RadialMenu = function(context, operations) {
.attr('class', 'tooltip-inner radial-menu-tooltip');
function mousedown() {
d3.event.stopPropagation(); // https://github.com/systemed/iD/issues/1869
d3.event.stopPropagation(); // https://github.com/openstreetmap/iD/issues/1869
}
function mouseover(d, i) {

View File

@@ -24,7 +24,7 @@ iD.ui.Splash = function(context) {
.html(t('splash.text', {
version: iD.version,
website: '<a href="http://ideditor.com/">ideditor.com</a>',
github: '<a href="https://github.com/systemed/iD">github.com</a>'
github: '<a href="https://github.com/openstreetmap/iD">github.com</a>'
}));
var buttons = introModal.append('div').attr('class', 'modal-actions cf');

View File

@@ -12,7 +12,7 @@
},
"repository": {
"type": "git",
"url": "git://github.com/systemed/iD.git"
"url": "git://github.com/openstreetmap/iD.git"
},
"keywords": [
"editor",

View File

@@ -118,7 +118,7 @@ describe("iD.Tree", function() {
});
it("don't include parent way multiple times when multiple child nodes are moved", function() {
// checks against the following regression: https://github.com/systemed/iD/issues/1978
// checks against the following regression: https://github.com/openstreetmap/iD/issues/1978
var graph = iD.Graph(),
tree = iD.Tree(graph),
n1 = iD.Node({id: 'n1', loc: [1, 1]}),