Skip to content

Commit 35acbf3

Browse files
authored
Fix broken links to other markdown pages (#379)
Does not fix release notes, javadocs, nor any external links.
1 parent d4575b5 commit 35acbf3

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GWT is open source, and is licensed according to the terms of the [Apache 2.0 Li
1111
Here are some important GWT resources:
1212

1313
* [The GWT Home Page](https://www.gwtproject.org "The GWT Home Page")
14-
* 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")
14+
* The GWT Developer Documentation, including the [Overview](doc/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")
1717

src/main/markdown/doc/latest/polymer-tutorial/create.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ For the **TodoList** project, we'll need to run `webAppCreator` with the followi
3737
3838
You may have to modify the `pom.xml` before you can run the application. Add `<type>pom</type>` to the gwt dependency, otherwise you will encounter an error. See the "Creating a `Maven` project" section in the [webAppCreator documentation](https://www.gwtproject.org/doc/latest/RefCommandLineTools.html#webAppCreator) for more information.
3939
40-
2. Run the application in [SuperDevMode](articles/superdevmode.html).
40+
2. Run the application in [SuperDevMode](../../../articles/superdevmode.html).
4141
4242
To check that the project was created correctly start the new app in SuperDevMode.
4343

src/main/markdown/doc/latest/polymer-tutorial/elements-buildui.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In this chapter we'll build a modern looking UI for the **TodoList** application
66

77
1. Create the **main screen** of the application.
88

9-
We will create a [UiBinder](DevGuideUiBinder.html) screen composed of a java file (`Main.java`) and its visual descriptor (`Main.ui.xml`).
9+
We will create a [UiBinder](../DevGuideUiBinder.html) screen composed of a java file (`Main.java`) and its visual descriptor (`Main.ui.xml`).
1010

1111
You can generate these files either by copying the following snippets, or by using the Eclipse GWT plugin.
1212

src/main/markdown/doc/latest/polymer-tutorial/widgets-buildui.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ In this chapter we'll build a modern looking UI for the **TodoList** application
77

88
1. Create the **main screen** of the application.
99

10-
We will create a [UiBinder](DevGuideUiBinder.html) screen composed of a java file (`Main.java`) and its visual descriptor (`Main.ui.xml`).
10+
We will create a [UiBinder](../DevGuideUiBinder.html) screen composed of a java file (`Main.java`) and its visual descriptor (`Main.ui.xml`).
1111

1212
You can generate these files either by copying the following snippets, or by using the Eclipse GWT plugin.
1313

src/main/markdown/doc/latest/tutorial/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ You may also optionally do the following:
3131
1. Install the Google App Engine SDK.
3232
* Google App Engine allows you to run Java web applications, including GWT applications, on Google's infrastructure. The App Engine SDK can be downloaded with the Google Plugin for Eclipse. Alternatively, download the [App Engine SDK](https://developers.google.com/appengine/downloads) for Java separately.
3333

34-
2. [Create and run your first web application](../../../gettingstarted.html#create) - A few, simple steps to familiarize you with the command line commands.
34+
2. [Create and run your first web application](../../../gettingstarted-v2.html#create) - A few, simple steps to familiarize you with the command line commands.
3535

3636
## GWT Tutorials <a id="gwt_tutorials"></a>
3737

3838
### Build a Sample GWT Application
3939

40-
1. [Build a Sample GWT Application](gettingstarted-v2.html)
40+
1. [Build a Sample GWT Application](../../../gettingstarted-v2.html)
4141
* Get started with GWT by developing the StockWatcher application from scratch. You'll learn to create a GWT project, build the UI with GWT wigdets and panels, code the client-side functionality in the Java language, debug in development mode, apply CSS styles, compile the Java into JavaScript, and run the application in production mode.
4242

4343
### Client-Server Communication

src/main/markdown/download.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Download
6666
<div class='moreinfo'>
6767
<a class='download-button' href="http://gwt-plugins.github.io/documentation/gwt-eclipse-plugin/Download.html">Download Plugin &amp; SDKs</a>
6868
<p style='font-size: 90%;'>
69-
Next: Go to <a href="usingeclipse.html">Set up Eclipse</a>, then <a href="doc/latest/tutorial/gettingstarted-v2.html">Build a Sample App</a>
69+
Next: Go to <a href="usingeclipse.html">Set up Eclipse</a>, then <a href="gettingstarted-v2.html">Build a Sample App</a>
7070
</p>
7171
</div>
7272
</div>

src/main/markdown/gettingstarted-v2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Getting Started
22
===
33

4-
Starting with 2.11.0 of the GWT SDK the [webAppCreator](gettingstarted-outdated.html) is deprecated. Instead, we will use
4+
Starting with 2.11.0 of the GWT SDK the [webAppCreator](gettingstarted.html) is deprecated. Instead, we will use
55
the [gwt-maven-archetypes](https://github.com/tbroyer/gwt-maven-archetypes) by Thomas Broyer to create a new GWT project. Using the **artifactId: modular-webapp**
66
the plugin generates a Maven project with separate modules for
77

src/main/markdown/gettingstarted.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,4 +159,4 @@ set up Eclipse to use the GWT SDK:
159159
[Set up Eclipse](usingeclipse.html)
160160

161161
If you are going to stick with the command line, check out Speed Tracer and then
162-
head over to [Build a Sample GWT App](doc/latest/tutorial/gettingstarted-v2.html).
162+
head over to [Build a Sample GWT App](doc/latest/tutorial/gettingstarted.html).

0 commit comments

Comments
 (0)