Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken links to other markdown pages #379

Merged
merged 1 commit into from
Dec 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note that there is no -outdated file - perhaps there was at one point, but it never merged.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

might be an refactoring issue.

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).
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the "outdated" file, so I don't feel bad for the moment pointing to an old getting started doc.

That said, we don't have a doc/latest/tutorial/gettingstarted-v2 yet, just the original.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is an unmerged branch 'getting-started-v2' which is containing the file

Loading