Skip to content

Commit 86d211a

Browse files
authored
Update all links to gwtproject.org to use https (#344)
1 parent 3741896 commit 86d211a

24 files changed

+61
-61
lines changed

src/main/markdown/GWTPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ usual process.
2525

2626
Definitions
2727
-----------
28-
* [GWT](http://www.gwtproject.org/) - The product itself. GWT is a development toolkit for building
28+
* [GWT](https://www.gwtproject.org/) - The product itself. GWT is a development toolkit for building
2929
and optimizing complex browser-based applications. Its goal is to enable productive development of
3030
high-performance web applications without the developer having to be an expert in browser quirks,
3131
XMLHttpRequest and JavaScript.

src/main/markdown/articles/gss_migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To help adoption of GWT 2.8 the default for CssResource is still CSS. Once an
99
application has been migrated to 2.8 it can transition over to GSS in multiple
1010
steps.
1111

12-
The [GSS open source](https://code.google.com/p/closure-stylesheets/) project has an overview of GSS features and here is a [list of difference between CSS and GSS](http://www.gwtproject.org/doc/latest/DevGuideGssVsCss.html).
12+
The [GSS open source](https://code.google.com/p/closure-stylesheets/) project has an overview of GSS features and here is a [list of difference between CSS and GSS](https://www.gwtproject.org/doc/latest/DevGuideGssVsCss.html).
1313

1414
This document outlines the steps one needs to take in order to move from CSS to
1515
GSS.

src/main/markdown/articles/using_gwt_with_hibernate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ _July 2009_
77

88
_(with thanks to Bruno Marchesson for his contributions to this article)_
99

10-
Many developers have asked how to use [GWT](http://www.gwtproject.org) and [Hibernate](https://www.hibernate.org/) together. Although you can find numerous discussions about this topic on the [GWT Developer Forum](http://groups.google.com/group/Google-Web-Toolkit), we thought it would be beneficial to sum up some of the most popular strategies, and highlight their advantages and shortcomings in the context of GWT application development.
10+
Many developers have asked how to use [GWT](https://www.gwtproject.org) and [Hibernate](https://www.hibernate.org/) together. Although you can find numerous discussions about this topic on the [GWT Developer Forum](http://groups.google.com/group/Google-Web-Toolkit), we thought it would be beneficial to sum up some of the most popular strategies, and highlight their advantages and shortcomings in the context of GWT application development.
1111

1212
Before we get into integration strategies, let's get familiar with the basics.
1313

src/main/markdown/community-group-charter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ GWT is open source, and is licensed according to the terms of the [Apache 2.0 Li
1010

1111
Here are some important GWT resources:
1212

13-
* [The GWT Home Page](http://www.gwtproject.org "The GWT Home Page")
13+
* [The GWT Home Page](https://www.gwtproject.org "The GWT Home Page")
1414
* The GWT Developer Documentation, including the [Overview](docs/latest/DevGuide.html "Overview"), the [Tutorials](doc/latest/tutorial/index.html "Tutorials"), and the [API Reference](doc/latest/RefGWTClassAPI.html "API Reference")
1515
* [The Discussion Group Archives](http://groups.google.com/group/Google-Web-Toolkit/topics "Discussion Group Archives")
1616
* [The GWT Issue Tracker](https://github.com/gwtproject/gwt/issues?q=is%3Aissue "The GWT Issue Tracker")

src/main/markdown/doc/latest/DevGuideCodingBasicsJSON.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ See [json.org/example.html](http://www.json.org/example.html) for more JSON exam
3030

3131
## Parsing JSON<a id="parsing"></a>
3232

33-
You can parse JSON Strings and convert them to a [JavaScriptObject](/javadoc/latest/com/google/gwt/core/client/JavaScriptObject.html) using [JsonUtils](http://www.gwtproject.org/javadoc/latest/com/google/gwt/core/client/JsonUtils.html).
33+
You can parse JSON Strings and convert them to a [JavaScriptObject](/javadoc/latest/com/google/gwt/core/client/JavaScriptObject.html) using [JsonUtils](https://www.gwtproject.org/javadoc/latest/com/google/gwt/core/client/JsonUtils.html).
3434

3535
```
3636
/*

src/main/markdown/doc/latest/DevGuideCodingBasicsJsInterop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
JsInterop
22
===
33

4-
JsInterop is one of the core features of GWT 2.8. As the name suggests, JsInterop is a way of interoperating Java with JavaScript. It offers a better way of communication between the two using annotations instead of having to write JavaScript in your classes (using JSNI). More details about the annotations can be found in GWT javadoc: http://www.gwtproject.org/javadoc/latest/jsinterop/annotations/package-summary.html
4+
JsInterop is one of the core features of GWT 2.8. As the name suggests, JsInterop is a way of interoperating Java with JavaScript. It offers a better way of communication between the two using annotations instead of having to write JavaScript in your classes (using JSNI). More details about the annotations can be found in GWT javadoc: https://www.gwtproject.org/javadoc/latest/jsinterop/annotations/package-summary.html
55

66

77
## Exporting a Java type to JavaScript

src/main/markdown/doc/latest/DevGuideI18nLocale.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ The easy way to use runtime locales is simply to add:
134134

135135
to your [module XML](DevGuideOrganizingProjects.html#DevGuideModuleXml) file, and all locales that GWT knows about that inherit from
136136
your compile-time locale will be automatically included. You can see the
137-
result in the [`Showcase` sample application](http://samples.gwtproject.org/samples/Showcase/Showcase.html).
137+
result in the [`Showcase` sample application](https://samples.gwtproject.org/samples/Showcase/Showcase.html).
138138

139139
### Caveats
140140

@@ -144,7 +144,7 @@ result in the [`Showcase` sample application](http://samples.gwtproject.org/samp
144144
to be included in the selection script, so inheritance won't work properly
145145
in all cases. This means you either need to specifically control the set
146146
of possible locales, such as in the locale selector in the [`Showcase`
147-
sample application](http://samples.gwtproject.org/samples/Showcase/Showcase.html), or have the server choose the locale using the
147+
sample application](https://samples.gwtproject.org/samples/Showcase/Showcase.html), or have the server choose the locale using the
148148
proper inheritance tables (`GwtLocaleFactoryImpl` will be helpful here,
149149
and you will need a way to get the set of locales your application was built
150150
with).

src/main/markdown/doc/latest/DevGuideLinkers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
The Linker subsystem takes care of writing the GWT compiler's output. It's responsible for each output file's name, location, and content.
44

55
Inside the compiler, each output file is represented by an
6-
[Artifact](http://www.gwtproject.org/javadoc/latest/com/google/gwt/core/ext/linker/Artifact.html).
6+
[Artifact](https://www.gwtproject.org/javadoc/latest/com/google/gwt/core/ext/linker/Artifact.html).
77

88
You usually do not need to care about them, unless you have specific requirements.
99

1010
Linkers create several kinds of files (see
11-
[EmittedArtifact.Visibility](http://www.gwtproject.org/javadoc/latest/com/google/gwt/core/ext/linker/EmittedArtifact.Visibility.html)):
11+
[EmittedArtifact.Visibility](https://www.gwtproject.org/javadoc/latest/com/google/gwt/core/ext/linker/EmittedArtifact.Visibility.html)):
1212

1313
- **Public files** are those intended to be downloaded by web browsers.
1414
This includes JavaScript and other resource files.
@@ -62,7 +62,7 @@ In case you have specific needs not covered by the existing linkers, you can cre
6262

6363
First, implement your linker. It must be a class extending the [Linker](/javadoc/latest/com/google/gwt/core/ext/Linker.html)
6464
abstract class (check its documentation), or
65-
[AbstractLinker](http://www.gwtproject.org/javadoc/latest/com/google/gwt/core/ext/linker/AbstractLinker.html).
65+
[AbstractLinker](https://www.gwtproject.org/javadoc/latest/com/google/gwt/core/ext/linker/AbstractLinker.html).
6666

6767
Using the `@LinkerOrder` annotation, you can specify whether it is a pre-, post- or primary linker.
6868
You must also annotate it with the `@Shardable` annotation.

src/main/markdown/doc/latest/DevGuideUiCellTable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ UiCellTable
33

44
A cell table (data presentation table) provides high-performance rendering of large data sets
55
in a tabular view. You can check out the
6-
[Cell Table example](http://samples.gwtproject.org/samples/Showcase/Showcase.html#!CwCellTable)
6+
[Cell Table example](https://samples.gwtproject.org/samples/Showcase/Showcase.html#!CwCellTable)
77
in the GWT Showcase to see it in action.
88

99
This developer guide will walk you through some advanced features specific to CellTable, such as

0 commit comments

Comments
 (0)