Skip to content

Commit dd58ebd

Browse files
author
pdavidc
committed
Updated urls in documentation to use HTTPS wherever possible
1 parent 7a329a4 commit dd58ebd

19 files changed

+23
-23
lines changed

GDAL_README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ Deploying with Java Web Start
4646
------------------------------------------------------------
4747

4848
Instructions for using the World Wind GDAL libraries with a Java Web Start application are available at
49-
http://goworldwind.org/getting-started/
49+
https://goworldwind.org/getting-started/

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ geometric objects. More information at [worldwind.arc.nasa.gov](https://worldwin
1212

1313
## Get Started
1414

15-
Develop a world-class World Wind application for personal computers. Setup instructions, developers guides,
16-
API documentation and more are available at [worldwind.arc.nasa.gov](https://worldwind.arc.nasa.gov). This GitHub
17-
repository contains the library source, examples and tutorials.
15+
Develop a world-class World Wind application for personal computers. Setup instructions, developers guides, API
16+
documentation and more are available at [worldwind.arc.nasa.gov](https://worldwind.arc.nasa.gov). This GitHub repository
17+
contains the library source, examples and tutorials.
1818

1919
- [worldwind.arc.nasa.gov](https://worldwind.arc.nasa.gov) has all things World Wind in one place
2020
- [World Wind Forum](http://forum.worldwindcentral.com) provides help from the World Wind community
2121
- [GitHub Issues](https://github.com/NASAWorldWind/WorldWindJava/issues) provides requirements and issue tracking
2222
- [Travis CI](https://travis-ci.org/NASAWorldWind/WorldWindJava) provides continuous integration and build automation
23-
- [IntelliJ IDEA](https://www.jetbrains.com/idea/) is used by the NASA World Wind development team
23+
- [IntelliJ IDEA](https://www.jetbrains.com/idea) is used by the NASA World Wind development team
2424

2525
## Releases and Roadmap
2626

@@ -45,7 +45,7 @@ builds have the newest, bleeding-edge World Wind Java features. Intended for dev
4545
###### From a Web Browser
4646

4747
- [World Wind Demo App](https://worldwind.arc.nasa.gov/java/latest/webstart/ApplicationTemplate.jnlp) shows World Wind's basic capabilities
48-
- [Java Demos](http://goworldwind.org/demos) has a complete list of example apps
48+
- [Java Demos](https://goworldwind.org/demos) has a complete list of example apps
4949

5050
###### From a Windows Development Environment
5151

src/config/worldwind.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
<!--<Property name="gov.nasa.worldwind.avkey.UrlProxyType" value="Proxy.Type.Http"/>-->
9595

9696
<!-- Location of icons for MIL-STD-2525C symbol set. This can be a URL to a web server, to a local zip or jar archive.
97-
See http://goworldwind.org/developers-guide/symbology/tactical-symbols/#offline-use for more information on how
97+
See https://goworldwind.org/developers-guide/symbology/tactical-symbols/#offline-use for more information on how
9898
to configure a local symbol repository.
9999
Examples: http://myserver.com/milstd2525/ (web server)
100100
jar:file:milstd2525-symbols.zip! (local zip archive) -->

src/gov/nasa/worldwind/data/package.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ <h3>GDAL Library Locations</h3>
298298
<h3>Deploying with Java Web Start</h3>
299299

300300
Instructions for using the World Wind GDAL libraries with a Java Web Start application are available at
301-
<a href="http://goworldwind.org/getting-started/" target="_blank">http://goworldwind.org/getting-started/</a>.
301+
<a href="https://goworldwind.org/getting-started/" target="_blank">https://goworldwind.org/getting-started/</a>.
302302

303303
<!--**************************************************************-->
304304
<!--******************** Use Case Examples *********************-->

src/gov/nasa/worldwind/symbology/AbstractTacticalGraphic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/**
2121
* Base class for tactical graphics. See the TacticalGraphic <a title="Tactical Graphic Usage Guide"
22-
* href="http://goworldwind.org/developers-guide/symbology/tactical-graphics/" target="_blank">Usage Guide</a> for
22+
* href="https://goworldwind.org/developers-guide/symbology/tactical-graphics/" target="_blank">Usage Guide</a> for
2323
* instructions on using TacticalGraphic in an application. This base class provides functionality for creating and
2424
* rendering a graphic that is made up of one or more shapes, and text labels.
2525
* <p/>

src/gov/nasa/worldwind/symbology/IconRetriever.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* Retrieves icons for symbols in a symbol set from a local disk or the network. Typically, an icon retriever will be
1515
* implemented for a specific symbol set. For example, the {@link gov.nasa.worldwind.symbology.milstd2525.MilStd2525IconRetriever}
16-
* retrieves icons for symbols in the MIL-STD-2525 symbology set. See the <a href="http://goworldwind.org/developers-guide/symbology/iconretriever/"
16+
* retrieves icons for symbols in the MIL-STD-2525 symbology set. See the <a href="https://goworldwind.org/developers-guide/symbology/iconretriever/"
1717
* target="_blank">Icon Retriever Usage Guide</a> for more information.
1818
*
1919
* @author ccrick

src/gov/nasa/worldwind/symbology/TacticalGraphic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* TacticalGraphic provides a common interface for displaying a graphic from a symbology set. A graphic can be an icon
1717
* that is drawn a geographic position, a vector graphic that is positioned using one or more control points, or a line
1818
* or polygon that is styled according to the symbol set's specification. See the TacticalGraphic <a title="Tactical
19-
* Graphic Usage Guide" href="http://goworldwind.org/developers-guide/symbology/tactical-graphics/"
19+
* Graphic Usage Guide" href="https://goworldwind.org/developers-guide/symbology/tactical-graphics/"
2020
* target="_blank">Usage Guide</a> for instructions on using TacticalGraphic in an application.
2121
* <p/>
2222
* See the {@link gov.nasa.worldwindx.examples.symbology.Symbology} and {@link gov.nasa.worldwindx.examples.symbology.TacticalGraphics}

src/gov/nasa/worldwind/symbology/TacticalSymbol.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* TacticalSymbol provides a common interface for displaying tactical point symbols from symbology sets. A tactical
1616
* symbol displays graphic and textual information about an object at a single geographic position at a particular point
17-
* in time. See the <a title="Tactical Symbol Usage Guide" href="http://goworldwind.org/developers-guide/symbology/tactical-symbols/"
17+
* in time. See the <a title="Tactical Symbol Usage Guide" href="https://goworldwind.org/developers-guide/symbology/tactical-symbols/"
1818
* target="_blank">Tactical Symbol Usage Guide</a> for instructions on using TacticalSymbol in an application.
1919
* <p/>
2020
* <h2>Construction</h2> Implementations of this interface provide support for symbols belonging to a specific symbology

src/gov/nasa/worldwind/symbology/milstd2525/MilStd2525IconRetriever.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
/**
1919
* Retriever to retrieve icons for symbols in the MIL-STD-2525 symbol set. The retriever can retrieve icons from either
20-
* a local or remote symbol store. See the <a href="http://goworldwind.org/developers-guide/symbology/tactical-symbols/#offline-use">Symbology
20+
* a local or remote symbol store. See the <a href="https://goworldwind.org/developers-guide/symbology/tactical-symbols/#offline-use">Symbology
2121
* Usage Guide</a> for details on how to configure a local symbol repository. For more information on how to use this
2222
* class see the IconRetriever Usage Guide and the {@link gov.nasa.worldwindx.examples.symbology.IconRetrieverUsage}
2323
* example.

src/gov/nasa/worldwind/symbology/milstd2525/MilStd2525PointGraphicRetriever.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
/**
1919
* Retriever to fetch icons for MIL-STD-2525C point graphics. The retriever can fetch images from either local or remote
20-
* locations. See <a href="http://goworldwind.org/developers-guide/symbology/tactical-symbols/#offline-use">Offline
20+
* locations. See <a href="https://goworldwind.org/developers-guide/symbology/tactical-symbols/#offline-use">Offline
2121
* Use</a> for information on how to set the icon retrieval location.
2222
* <p/>
2323
* The retriever base URL must identify a location on a local or remote file system (including zip and jar files) that

0 commit comments

Comments
 (0)