diff --git a/API.md b/API.md index 05cef98d8..4b6920692 100644 --- a/API.md +++ b/API.md @@ -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:`, 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 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cba8e01ff..e19935355 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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. diff --git a/FAQ.md b/FAQ.md index a583ad170..420b298e0 100644 --- a/FAQ.md +++ b/FAQ.md @@ -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. diff --git a/README.md b/README.md index ba7355a08..12eef34bb 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/css/app.css b/css/app.css index 126bc0c25..f86de3fe0 100644 --- a/css/app.css +++ b/css/app.css @@ -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; diff --git a/data/core.yaml b/data/core.yaml index d83781e20..a61b9f380 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -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 diff --git a/data/update_imagery.js b/data/update_imagery.js index 1bba78c45..aa0dfc0b7 100644 --- a/data/update_imagery.js +++ b/data/update_imagery.js @@ -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 = { diff --git a/js/id/geo/multipolygon.js b/js/id/geo/multipolygon.js index 75ec6a3e2..a214d52ea 100644 --- a/js/id/geo/multipolygon.js +++ b/js/id/geo/multipolygon.js @@ -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; diff --git a/js/id/id.js b/js/id/id.js index 2c6f02e67..ceefe8aaf 100644 --- a/js/id/id.js +++ b/js/id/id.js @@ -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() { diff --git a/js/id/svg/areas.js b/js/id/svg/areas.js index 772b6dfa7..c47551aad 100644 --- a/js/id/svg/areas.js +++ b/js/id/svg/areas.js @@ -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(); diff --git a/js/id/ui.js b/js/id/ui.js index d65d60955..678c55ca4 100644 --- a/js/id/ui.js +++ b/js/id/ui.js @@ -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'); diff --git a/js/id/ui/feature_list.js b/js/id/ui/feature_list.js index 584f21e12..77d27d4e2 100644 --- a/js/id/ui/feature_list.js +++ b/js/id/ui/feature_list.js @@ -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), diff --git a/js/id/ui/radial_menu.js b/js/id/ui/radial_menu.js index ad16f1bcc..5fc187967 100644 --- a/js/id/ui/radial_menu.js +++ b/js/id/ui/radial_menu.js @@ -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) { diff --git a/js/id/ui/splash.js b/js/id/ui/splash.js index 2bbeeb3d0..72385ed4a 100644 --- a/js/id/ui/splash.js +++ b/js/id/ui/splash.js @@ -24,7 +24,7 @@ iD.ui.Splash = function(context) { .html(t('splash.text', { version: iD.version, website: 'ideditor.com', - github: 'github.com' + github: 'github.com' })); var buttons = introModal.append('div').attr('class', 'modal-actions cf'); diff --git a/package.json b/package.json index 848c9a9c0..0b3a4a1bd 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ }, "repository": { "type": "git", - "url": "git://github.com/systemed/iD.git" + "url": "git://github.com/openstreetmap/iD.git" }, "keywords": [ "editor", diff --git a/test/spec/core/tree.js b/test/spec/core/tree.js index 35b3385a5..67c9888a0 100644 --- a/test/spec/core/tree.js +++ b/test/spec/core/tree.js @@ -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]}),