Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Fixed xsd reference as suggested by Travis Eddy

...

Code Block
languagexml
titlesrc/main/resources/com/example/tutorial/pages/address/CreateAddress.tml
<html t:type="layout" title="Create New Address"
    xmlns:t="http://tapestry.apache.org/schema/tapestry_5_43.xsd">

    <em>coming soon ...</em>

</html>

(Note, depending on your version of Tapestry, you may need tapestry_5_4.xsd there instead.)

Next, And the corresponding class:

Code Block
languagejava
titlesrc/main/java/com/example/tutorial/pages/address/CreateAddress.java
package com.example.tutorial.pages.address;

public class CreateAddress
{

}

...