mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-17 22:24:49 +02:00
Update various files for removal of master branch
This commit is contained in:
@@ -9,7 +9,7 @@ of iD (e.g. `http://preview.ideditor.com/release/`), the following parameters ar
|
||||
**in the hash portion of the URL**:
|
||||
|
||||
* __`background`__ - The value from a `sourcetag` property in iD's
|
||||
[imagery list](https://github.com/openstreetmap/iD/blob/master/data/imagery.json),
|
||||
[imagery list](https://github.com/openstreetmap/iD/blob/develop/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}`/`{zoom}`, `{ty}` for flipped TMS-style Y coordinates, and `{switch:a,b,c}` for
|
||||
@@ -33,7 +33,7 @@ of iD (e.g. `http://preview.ideditor.com/release/`), the following parameters ar
|
||||
_Example:_ `id=n1207480649`
|
||||
* __`locale`__ - A code specifying the localization to use, affecting the language, layout, and keyboard shortcuts. The default locale is set by the browser.<br/>
|
||||
_Example:_ `locale=en-US`, `locale=de`<br/>
|
||||
_Available values:_ Any of the [supported locales](https://github.com/openstreetmap/iD/tree/master/dist/locales).
|
||||
_Available values:_ Any of the [supported locales](https://github.com/openstreetmap/iD/tree/develop/dist/locales).
|
||||
* __`map`__ - A slash-separated `zoom/latitude/longitude`.<br/>
|
||||
_Example:_ `map=20.00/38.90085/-77.02271`
|
||||
* __`maprules`__ - A path to a [MapRules](https://github.com/radiant-maxar/maprules) service endpoint for enhanced tag validation.<br/>
|
||||
@@ -123,7 +123,7 @@ have `.area` and `.way` classes.
|
||||
Elements also receive classes according to certain of the OSM key-value tags that are
|
||||
assigned to them.
|
||||
|
||||
Tag classes are prefixed with `tag-` (see [`iD.svgTagClasses`](https://github.com/openstreetmap/iD/blob/master/js/id/svg/tag_classes.js) for details).
|
||||
Tag classes are prefixed with `tag-` (see [`iD.svgTagClasses`](https://github.com/openstreetmap/iD/blob/develop/js/id/svg/tag_classes.js) for details).
|
||||
|
||||
#### Primary
|
||||
|
||||
@@ -240,7 +240,7 @@ Optional properties:
|
||||
* `best` - If set to `true`, this imagery is considered "better than Bing" and may be chosen by default when iD starts. Will display with a star in the background imagery list. Defaults to `false`
|
||||
|
||||
For more details about the `iD.data.imagery` structure, see
|
||||
[`update_imagery.js`](https://github.com/openstreetmap/iD/blob/master/scripts/update_imagery.js).
|
||||
[`update_imagery.js`](https://github.com/openstreetmap/iD/blob/develop/scripts/update_imagery.js).
|
||||
|
||||
|
||||
### Presets
|
||||
@@ -249,7 +249,7 @@ iD's preset database is stored in the `iD.data.presets` object and can be overri
|
||||
or modified prior to creating the iD context.
|
||||
|
||||
The format of the `presets` object is
|
||||
[documented here](https://github.com/openstreetmap/iD/tree/master/data/presets#custom-presets).
|
||||
[documented here](https://github.com/openstreetmap/iD/tree/develop/data/presets#custom-presets).
|
||||
|
||||
To add a new preset to iD's existing preset database.
|
||||
```js
|
||||
|
||||
+6
-6
@@ -11,15 +11,15 @@ rendering the map data as well as many sorts of general DOM manipulation tasks
|
||||
for which jQuery would often be used.
|
||||
|
||||
Notable features of d3 that are used by iD include
|
||||
[d3.fetch](https://github.com/d3/d3/blob/master/API.md#fetches-d3-fetch), which is
|
||||
[d3.fetch](https://github.com/d3/d3/blob/develop/API.md#fetches-d3-fetch), which is
|
||||
used to make the API requests to download data from openstreetmap.org and save changes;
|
||||
[d3.dispatch](https://github.com/d3/d3/blob/master/API.md#dispatches-d3-dispatch),
|
||||
[d3.dispatch](https://github.com/d3/d3/blob/develop/API.md#dispatches-d3-dispatch),
|
||||
which provides a callback-based [Observer
|
||||
pattern](http://en.wikipedia.org/wiki/Observer_pattern) between different
|
||||
parts of iD;
|
||||
[d3.geoPath](https://github.com/d3/d3/blob/master/API.md#paths), which
|
||||
[d3.geoPath](https://github.com/d3/d3/blob/develop/API.md#paths), which
|
||||
generates SVG paths for lines and areas; and
|
||||
[d3.zoom](https://github.com/d3/d3/blob/master/API.md#zooming-d3-zoom),
|
||||
[d3.zoom](https://github.com/d3/d3/blob/develop/API.md#zooming-d3-zoom),
|
||||
which implements map panning and zooming.
|
||||
|
||||
|
||||
@@ -233,7 +233,7 @@ of duplicating the code to implement this behavior in all these modes, we
|
||||
extract it to `iD.behaviorHover`.
|
||||
|
||||
_Behaviors_ take their inspiration from [d3's
|
||||
behaviors](https://github.com/d3/d3/blob/master/API.md). Like d3's `zoom`
|
||||
behaviors](https://github.com/d3/d3/blob/develop/API.md). Like d3's `zoom`
|
||||
and `drag`, each iD behavior is a function that takes as input a d3 selection
|
||||
(assumed to consist of a single element) and installs the DOM event bindings
|
||||
necessary to implement the behavior. The `Hover` behavior, for example,
|
||||
@@ -342,7 +342,7 @@ argument is required, a `context`.
|
||||
|
||||
The constructor function returns a draw function which accepts a d3 selection.
|
||||
Drawing is then accomplished with
|
||||
[d3.selection#call](https://github.com/d3/d3-selection/blob/master/README.md#selection_call):
|
||||
[d3.selection#call](https://github.com/d3/d3-selection/blob/develop/README.md#selection_call):
|
||||
|
||||
```js
|
||||
footer = footer.enter()
|
||||
|
||||
+3
-3
@@ -172,7 +172,7 @@ _Breaking changes, which may affect downstream projects or sites that embed iD,
|
||||
_Find the "Add a bridge" and "Add a tunnel" fixes for each crossing in the Issues inspector._
|
||||
* :earth_africa: Selected features now stay visible while zoomed out, plus you can zoom to multiple features together.<br/>
|
||||
_Select a few large features and press <kbd>Z</kbd> to view their full extent, no matter how vast._
|
||||
* :handshake: iD now has its own [Privacy Policy](https://github.com/openstreetmap/iD/blob/master/PRIVACY.md).<br/>
|
||||
* :handshake: iD now has its own [Privacy Policy](https://github.com/openstreetmap/iD/blob/develop/PRIVACY.md).<br/>
|
||||
_Press <kbd>P</kbd> to view privacy preferences._
|
||||
|
||||
#### :boom: Breaking Changes
|
||||
@@ -2621,7 +2621,7 @@ _Activate the Bing Streetside layer by opening the Map Data pane (shortcut <kbd>
|
||||
* Added support for more icon sets (such as [FontAwesome](https://fontawesome.com/icons?d=gallery)) for presets or other iD icons ([#3025])
|
||||
* Extracted many preset icons from the iD sprite into a separate project: [bhousel/temaki](https://github.com/bhousel/temaki)
|
||||
* Many presets that previously did not have a suitable icon now have one.
|
||||
* :warning: All icons in iD now use prefixed names. (e.g. `iD-`, `maki-`, etc). See the [preset README](https://github.com/openstreetmap/iD/blob/master/data/presets/README.md#icons) for more details.
|
||||
* :warning: All icons in iD now use prefixed names. (e.g. `iD-`, `maki-`, etc). See the [preset README](https://github.com/openstreetmap/iD/blob/develop/data/presets/README.md#icons) for more details.
|
||||
|
||||
[#5050]: https://github.com/openstreetmap/iD/issues/5050
|
||||
[#3924]: https://github.com/openstreetmap/iD/issues/3924
|
||||
@@ -4685,7 +4685,7 @@ _Map traffic signals, stop signs, benches, crossings, street lamps, fountains, t
|
||||
* Many deprecated names are still exported as symbols, e.g. `iD.Context` - we will remove these eventually
|
||||
* :warning: Customized iD deployments can manipulate live objects, rather than iD.Context accessors
|
||||
* No longer need to call things like `presets()`, `imagery()`, `taginfo()` when creating `iD.Context`
|
||||
* See [API.md](https://github.com/openstreetmap/iD/blob/master/API.md#customized-deployments) for details on customized deployments
|
||||
* See [API.md](https://github.com/openstreetmap/iD/blob/develop/API.md#customized-deployments) for details on customized deployments
|
||||
* :warning: iD has upgraded to the latest released versions of d3, lodash, rbush, etc.
|
||||
* d3 no longer adds itself to the global namespace, but can now be accessed via `iD.d3`
|
||||
* :warning: iD now uses `npm` scripts for all build processes
|
||||
|
||||
+9
-9
@@ -185,7 +185,7 @@ Work in Progress. Don't start work on these, somebody else already did!
|
||||
|
||||
## Verifying Bug Fixes
|
||||
|
||||
To verify a bug fix (or test a new feature), use the [master deployment](http://preview.ideditor.com/master/)
|
||||
To verify a bug fix (or test a new feature), use the [develop deployment](http://preview.ideditor.com/master/)
|
||||
(http://preview.ideditor.com/master/), which is updated every 10 minutes with the
|
||||
latest code and translation strings.
|
||||
|
||||
@@ -228,7 +228,7 @@ project** button near the bottom of the project page. You can edit your
|
||||
getting too many notifications.
|
||||
|
||||
Translations are licensed under
|
||||
[ISC](https://raw.github.com/openstreetmap/iD/master/LICENSE.md), the same license
|
||||
[ISC](https://raw.github.com/openstreetmap/iD/develop/LICENSE.md), the same license
|
||||
as iD.
|
||||
|
||||
**Why are there so many duplicate "Type" translations?** There are multiple
|
||||
@@ -398,7 +398,7 @@ Additionally here is a step-by-step workflow example for beginners:
|
||||
|
||||
4. Clone or download your local copy of iD from your GitHub account using https `git clone https://github.com/<yourgithubaccount>/iD.git` or using ssh `git clone git@github.com:{{yourgithubaccount}}/iD.git`. In your local copy you'll have a "remote" called origin.
|
||||
|
||||
5. Switch to the iD directory, create a working branch (choose a descriptive name) and switch to it : `cd iD ; git checkout -b <working-branch-name>`. Never do anything in master branch.
|
||||
5. Switch to the iD directory, create a working branch (choose a descriptive name) and switch to it : `cd iD ; git checkout -b <working-branch-name>`. Never do anything in develop branch.
|
||||
|
||||
6. Edit file(s) and try your change locally (See above).
|
||||
|
||||
@@ -419,13 +419,13 @@ you can clean up by deleting the branch from your GitHub-iD-Clone and your local
|
||||
|
||||
### Restart with another PR after some while
|
||||
|
||||
If you did not use your copy of iD for some while, other Pull Request gets merged and you don't have the latest version of iD. You can replace your master with whatever is in our master. If you have not done so yet: Add the main repo as an "upstream" remote:
|
||||
If you did not use your copy of iD for some while, other Pull Request gets merged and you don't have the latest version of iD. You can replace your develop with whatever is in our develop. If you have not done so yet: Add the main repo as an "upstream" remote:
|
||||
|
||||
`git remote add upstream git@github.com:openstreetmap/iD.git`
|
||||
|
||||
Then change to the master branch and get everything from upstream (the main repository)
|
||||
Then change to the develop branch and get everything from upstream (the main repository)
|
||||
|
||||
`git checkout master ; git fetch --all && git reset --hard upstream/master`
|
||||
`git checkout develop ; git fetch --all && git reset --hard upstream/develop`
|
||||
|
||||
|
||||
## Submitting directly in the Browser
|
||||
@@ -442,12 +442,12 @@ Additionally here is a step-by-step workflow example for beginners:
|
||||
|
||||
2. Go to the [iD main repository](https://github.com/openstreetmap/iD) and fork iD into your GitHub account (Fork is top right).
|
||||
|
||||
3. Create a New Branch by clicking on "Branch: master" and entering the name of a new branch (choose a descriptive name).
|
||||
3. Create a New Branch by clicking on "Branch: develop" and entering the name of a new branch (choose a descriptive name).
|
||||
|
||||
4. Navigate to the file you want to edit and click on "Edit this file" and apply your changes to the file. Alternatively, you could also "Create a new file".
|
||||
|
||||
5. When finished editing the file enter a commit text (the description is optional) and commit directly to the newly created branch. You may repeat 4 and 5 until all required changes are commited.
|
||||
5. When finished editing the file enter a commit text (the description is optional) and commit directly to the newly created branch. You may repeat 4 and 5 until all required changes are committed.
|
||||
|
||||
6. Navigate back to your "id" project - https://github.com/{{yourgithubaccount}}/iD
|
||||
|
||||
7. Follow this [Article about Pull Requests](https://help.github.com/articles/about-pull-requests/) to create a new pull request for your change
|
||||
7. Follow this [Article about Pull Requests](https://help.github.com/articles/about-pull-requests/) to create a new pull request for your change
|
||||
|
||||
@@ -5,7 +5,7 @@ Two syllables: "eye dee".
|
||||
|
||||
## How can I help translate iD into another language or fix a mistranslation?
|
||||
|
||||
Please see [CONTRIBUTING.md](https://github.com/openstreetmap/iD/blob/master/CONTRIBUTING.md#translating)
|
||||
Please see [CONTRIBUTING.md](https://github.com/openstreetmap/iD/blob/develop/CONTRIBUTING.md#translating)
|
||||
|
||||
|
||||
## How can I report an issue with background imagery?
|
||||
@@ -71,7 +71,7 @@ and [configure](https://github.com/openstreetmap/openstreetmap-website/blob/mast
|
||||
an instance of the Rails Port, the server that runs the OpenStreetMap website and API.
|
||||
|
||||
Once you have the Rails Port running, you may edit as normal using the version of iD that
|
||||
is bundled with it. Your changes will be saved to your own database. To use a standalone iD with your own api, you may edit the [osm.js](https://github.com/openstreetmap/iD/blob/master/modules/services/osm.js) file.
|
||||
is bundled with it. Your changes will be saved to your own database. To use a standalone iD with your own api, you may edit the [osm.js](https://github.com/openstreetmap/iD/blob/develop/modules/services/osm.js) file.
|
||||
|
||||
Depending on your requirements, you may also want to set up [cgimap](https://github.com/openstreetmap/cgimap)
|
||||
and/or a tile rendering stack, but neither of these are required for editing with iD.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# iD - friendly JavaScript editor for [OpenStreetMap](https://www.openstreetmap.org/)
|
||||
|
||||
[](https://travis-ci.org/openstreetmap/iD)
|
||||
[](https://travis-ci.org/openstreetmap/iD)
|
||||
|
||||
|
||||
:warning: _We've recently changed our branch names. [`develop`](https://github.com/openstreetmap/iD/tree/develop) is now the default branch, replacing `2.x`. [`v3-prototype`](https://github.com/openstreetmap/iD/tree/v3-prototype) is now the alpha version of iD v3, replacing `master`. [`release`](https://github.com/openstreetmap/iD/tree/release) is still `release`._
|
||||
@@ -24,7 +24,7 @@
|
||||
* Read up on [Contributing and the code style of iD](CONTRIBUTING.md).
|
||||
* 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)
|
||||
* [Translate!](https://github.com/openstreetmap/iD/blob/develop/CONTRIBUTING.md#translating)
|
||||
* Test a prerelease version of iD:
|
||||
* Stable mirror of `release` branch: https://preview.ideditor.com/release
|
||||
* Development mirror of `develop` branch + latest translations: https://2-x--ideditor.netlify.com
|
||||
|
||||
+5
-5
@@ -54,13 +54,13 @@ $ git remote add osmlab git@github.com:osmlab/openstreetmap-website.git
|
||||
$ git remote add upstream git@github.com:openstreetmap/openstreetmap-website.git
|
||||
```
|
||||
|
||||
#### Sync master branches
|
||||
#### Sync develop branches
|
||||
|
||||
```bash
|
||||
$ git fetch --all
|
||||
$ git checkout master
|
||||
$ git reset --hard upstream/master
|
||||
$ git push osmlab master
|
||||
$ git checkout develop
|
||||
$ git reset --hard upstream/develop
|
||||
$ git push osmlab develop
|
||||
```
|
||||
|
||||
#### Create and push branch with the new iD version
|
||||
@@ -72,4 +72,4 @@ $ rm -rf vendor/assets/iD/* && vendorer
|
||||
$ git add . && git commit -m 'Update to iD vA.B.C'
|
||||
$ git push osmlab
|
||||
```
|
||||
- [Open a pull request](https://github.com/openstreetmap/openstreetmap-website/compare/master...osmlab:master) using the [markdown text from the changelog](https://raw.githubusercontent.com/openstreetmap/iD/master/CHANGELOG.md) as the description
|
||||
- [Open a pull request](https://github.com/openstreetmap/openstreetmap-website/compare/develop...osmlab:develop) using the [markdown text from the changelog](https://raw.githubusercontent.com/openstreetmap/iD/develop/CHANGELOG.md) as the description
|
||||
|
||||
+1
-1
@@ -1211,7 +1211,7 @@ en:
|
||||
before_start: "You should be familiar with OpenStreetMap and this editor before you start editing. iD contains a walkthrough to teach you the basics of editing OpenStreetMap. Click \"Start the Walkthrough\" on this screen to take the tutorial - it takes only about 15 minutes."
|
||||
open_source_h: "Open Source"
|
||||
open_source: "The iD editor is a collaborative open source project, and you are using version {version} now. The source code is available [on GitHub](https://github.com/openstreetmap/iD)."
|
||||
open_source_help: "You can help iD by [translating](https://github.com/openstreetmap/iD/blob/master/CONTRIBUTING.md#translating) or [reporting bugs](https://github.com/openstreetmap/iD/issues)."
|
||||
open_source_help: "You can help iD by [translating](https://github.com/openstreetmap/iD/blob/develop/CONTRIBUTING.md#translating) or [reporting bugs](https://github.com/openstreetmap/iD/issues)."
|
||||
overview:
|
||||
title: Overview
|
||||
navigation_h: "Navigation"
|
||||
|
||||
@@ -62,7 +62,7 @@ The complete JSON schema for presets can be found in [`data/presets/schema/prese
|
||||
|
||||
The primary name of the feature type in American English.
|
||||
|
||||
Upon merging with `master`, this is sent to Transifex for translating to other localizations. Changing the name of an existing preset will require it to be re-translated to all localizations.
|
||||
Upon merging with `develop`, this is sent to Transifex for translating to other localizations. Changing the name of an existing preset will require it to be re-translated to all localizations.
|
||||
|
||||
This property is required. There is no default.
|
||||
|
||||
@@ -149,7 +149,7 @@ preset are generally not inherited. E.g. the `shop` field is not inherited by `s
|
||||
|
||||
The name of a local SVG icon file. You can use icons from any of the following icon sets. When specifying an icon, use the prefixed version of the name, for example `"icon": "maki-park"` or `"icon": "tnp-2009223"`.
|
||||
|
||||
* [iD's spritesheet](https://github.com/openstreetmap/iD/tree/master/svg/iD-sprite/presets) (`iD-`)
|
||||
* [iD's spritesheet](https://github.com/openstreetmap/iD/tree/develop/svg/iD-sprite/presets) (`iD-`)
|
||||
* [Maki](https://labs.mapbox.com/maki-icons/) (`maki-`), map-specific icons from Mapbox
|
||||
* [Temaki](https://ideditor.github.io/temaki/docs/) (`temaki-`), an expansion pack for Maki
|
||||
* This is the best place to submit a PR if you want to create a preset icon!
|
||||
@@ -508,4 +508,4 @@ A "name" field must be included:
|
||||
"label": "Name",
|
||||
"placeholder": "Common name (if any)"
|
||||
}
|
||||
```
|
||||
```
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -1519,7 +1519,7 @@
|
||||
"before_start": "You should be familiar with OpenStreetMap and this editor before you start editing. iD contains a walkthrough to teach you the basics of editing OpenStreetMap. Click \"Start the Walkthrough\" on this screen to take the tutorial - it takes only about 15 minutes.",
|
||||
"open_source_h": "Open Source",
|
||||
"open_source": "The iD editor is a collaborative open source project, and you are using version {version} now. The source code is available [on GitHub](https://github.com/openstreetmap/iD).",
|
||||
"open_source_help": "You can help iD by [translating](https://github.com/openstreetmap/iD/blob/master/CONTRIBUTING.md#translating) or [reporting bugs](https://github.com/openstreetmap/iD/issues)."
|
||||
"open_source_help": "You can help iD by [translating](https://github.com/openstreetmap/iD/blob/develop/CONTRIBUTING.md#translating) or [reporting bugs](https://github.com/openstreetmap/iD/issues)."
|
||||
},
|
||||
"overview": {
|
||||
"title": "Overview",
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
@@ -221,7 +221,7 @@ export function uiInit(context) {
|
||||
issueLinks
|
||||
.append('a')
|
||||
.attr('target', '_blank')
|
||||
.attr('href', 'https://github.com/openstreetmap/iD/blob/master/CONTRIBUTING.md#translating')
|
||||
.attr('href', 'https://github.com/openstreetmap/iD/blob/develop/CONTRIBUTING.md#translating')
|
||||
.call(svgIcon('#iD-icon-translate', 'light'))
|
||||
.call(tooltip().title(t('help_translate')).placement('top'));
|
||||
|
||||
|
||||
@@ -106,7 +106,7 @@ export function uiSectionBackgroundList(context) {
|
||||
.append('a')
|
||||
.attr('target', '_blank')
|
||||
.call(svgIcon('#iD-icon-out-link', 'inline'))
|
||||
.attr('href', 'https://github.com/openstreetmap/iD/blob/master/FAQ.md#how-can-i-report-an-issue-with-background-imagery')
|
||||
.attr('href', 'https://github.com/openstreetmap/iD/blob/develop/FAQ.md#how-can-i-report-an-issue-with-background-imagery')
|
||||
.append('span')
|
||||
.text(t('background.imagery_problem_faq'));
|
||||
|
||||
|
||||
@@ -56,7 +56,7 @@ export function uiSectionPrivacy(context) {
|
||||
.append('a')
|
||||
.attr('target', '_blank')
|
||||
.call(svgIcon('#iD-icon-out-link', 'inline'))
|
||||
.attr('href', 'https://github.com/openstreetmap/iD/blob/master/PRIVACY.md')
|
||||
.attr('href', 'https://github.com/openstreetmap/iD/blob/release/PRIVACY.md')
|
||||
.append('span')
|
||||
.text(t('preferences.privacy.privacy_link'));
|
||||
|
||||
|
||||
@@ -57,7 +57,7 @@ export function uiSplash(context) {
|
||||
.append('p')
|
||||
.html(t('splash.privacy', {
|
||||
updateMessage: updateMessage,
|
||||
privacyLink: '<a target="_blank" href="https://github.com/openstreetmap/iD/blob/master/PRIVACY.md">' +
|
||||
privacyLink: '<a target="_blank" href="https://github.com/openstreetmap/iD/blob/release/PRIVACY.md">' +
|
||||
t('splash.privacy_policy') + '</a>'
|
||||
}));
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ export function uiVersion(context) {
|
||||
.attr('class', 'badge')
|
||||
.append('a')
|
||||
.attr('target', '_blank')
|
||||
.attr('href', 'https://github.com/openstreetmap/iD/blob/master/CHANGELOG.md#whats-new')
|
||||
.attr('href', 'https://github.com/openstreetmap/iD/blob/release/CHANGELOG.md#whats-new')
|
||||
.call(svgIcon('#maki-gift-11'))
|
||||
.call(tooltip()
|
||||
.title(t('version.whats_new', { version: currVersion }))
|
||||
|
||||
Reference in New Issue
Block a user