Skip to content

Commit

Permalink
Fix broken links to other markdown pages (#379)
Browse files Browse the repository at this point in the history
Does not fix release notes, javadocs, nor any external links.
  • Loading branch information
niloc132 authored Dec 22, 2024
1 parent d4575b5 commit 35acbf3
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/main/markdown/community-group-charter.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GWT is open source, and is licensed according to the terms of the [Apache 2.0 Li
Here are some important GWT resources:

* [The GWT Home Page](https://www.gwtproject.org "The GWT Home Page")
* 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")
* 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")
* [The Discussion Group Archives](http://groups.google.com/group/Google-Web-Toolkit/topics "Discussion Group Archives")
* [The GWT Issue Tracker](https://github.com/gwtproject/gwt/issues?q=is%3Aissue "The GWT Issue Tracker")

Expand Down
2 changes: 1 addition & 1 deletion src/main/markdown/doc/latest/polymer-tutorial/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ For the **TodoList** project, we'll need to run `webAppCreator` with the followi
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.
2. Run the application in [SuperDevMode](articles/superdevmode.html).
2. Run the application in [SuperDevMode](../../../articles/superdevmode.html).
To check that the project was created correctly start the new app in SuperDevMode.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ In this chapter we'll build a modern looking UI for the **TodoList** application

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

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

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ In this chapter we'll build a modern looking UI for the **TodoList** application

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

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

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

Expand Down
4 changes: 2 additions & 2 deletions src/main/markdown/doc/latest/tutorial/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ You may also optionally do the following:
1. Install the Google App Engine SDK.
* 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.

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

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

### Build a Sample GWT Application

1. [Build a Sample GWT Application](gettingstarted-v2.html)
1. [Build a Sample GWT Application](../../../gettingstarted-v2.html)
* 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.

### Client-Server Communication
Expand Down
2 changes: 1 addition & 1 deletion src/main/markdown/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Download
<div class='moreinfo'>
<a class='download-button' href="http://gwt-plugins.github.io/documentation/gwt-eclipse-plugin/Download.html">Download Plugin &amp; SDKs</a>
<p style='font-size: 90%;'>
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>
Next: Go to <a href="usingeclipse.html">Set up Eclipse</a>, then <a href="gettingstarted-v2.html">Build a Sample App</a>
</p>
</div>
</div>
2 changes: 1 addition & 1 deletion src/main/markdown/gettingstarted-v2.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Getting Started
===

Starting with 2.11.0 of the GWT SDK the [webAppCreator](gettingstarted-outdated.html) is deprecated. Instead, we will use
Starting with 2.11.0 of the GWT SDK the [webAppCreator](gettingstarted.html) is deprecated. Instead, we will use
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**
the plugin generates a Maven project with separate modules for

Expand Down
2 changes: 1 addition & 1 deletion src/main/markdown/gettingstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,4 @@ set up Eclipse to use the GWT SDK:
[Set up Eclipse](usingeclipse.html)

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

0 comments on commit 35acbf3

Please sign in to comment.