diff options
Diffstat (limited to 'demos/quickstart/protected/pages/Samples')
| -rw-r--r-- | demos/quickstart/protected/pages/Samples/Hangman.page | 7 | ||||
| -rw-r--r-- | demos/quickstart/protected/pages/Samples/HelloWorld.page | 9 | 
2 files changed, 7 insertions, 9 deletions
diff --git a/demos/quickstart/protected/pages/Samples/Hangman.page b/demos/quickstart/protected/pages/Samples/Hangman.page index 4541c8f9..e39b3e11 100644 --- a/demos/quickstart/protected/pages/Samples/Hangman.page +++ b/demos/quickstart/protected/pages/Samples/Hangman.page @@ -1,4 +1,5 @@  <com:TContent ID="body" >
 +
  <h1>Sample: Hangman Game</h1>
  <p>
  Having seen the simple "Hello World" application, we now build a more complex application called "Hangman Game". In this game, the player is asked to guess a word, a letter at a time. If he guesses a letter right, the letter will be shown in the word. The player can continue to guess as long as the number of his misses is within a prespecified bound. The player wins the game if he finds out the word within the miss bound, or he loses.
 @@ -9,8 +10,6 @@ To facilitate the building of this game, we show the state transition diagram of  <p>
  To be continued...
  </p>
 -<div class="runbar">
 -<a href="?page=Samples.Hangman.Home" target="_blank">Run Sample</a>
 -<a href="?page=ViewSource&path=/Samples/Hangman/Home.php" target="_blank">View Source</a>
 -</div>
 +<com:RunBar PagePath="Samples.Hangman.Home" />
 +
  </com:TContent>
\ No newline at end of file diff --git a/demos/quickstart/protected/pages/Samples/HelloWorld.page b/demos/quickstart/protected/pages/Samples/HelloWorld.page index 7f7e8538..1723d741 100644 --- a/demos/quickstart/protected/pages/Samples/HelloWorld.page +++ b/demos/quickstart/protected/pages/Samples/HelloWorld.page @@ -16,11 +16,10 @@ The code that a developer needs to write is merely the following event handler f  <pre class="source">
  public function buttonClicked($sender,$param)
  {
 -	$sender->Text="Hello World";
 +	$sender->Text="Hello World";
  }
  </pre>
 -<div class="runbar">
 -<a href="?page=Samples.HelloWorld.Home" target="_blank">Run Sample</a>
 -<a href="?page=ViewSource&path=/Samples/HelloWorld/Home.php" target="_blank">View Source</a>
 -</div>
 +
 +<com:RunBar PagePath="Samples.HelloWorld.Home" />
 +
  </com:TContent>
\ No newline at end of file  | 
