bonjour,

j'essaye ce tutoriel : http://baptiste-meurant.developpez.c...ernate/#LVII.A

j'en suis au moment de tester sur le serveur avec la page "login"

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
    <head>
        <title>Login</title>
    </head>
    <body>
	  <div id="login_box">
	     <t:form>
	         <t:errors />
		   <table>
		       <tr>
			     <td><label t:type="Label" for="login" class="login_label"/></td>
			     <td><input t:type="TextField" t:id="login" t:value="login" t:label="login " 
				 					 class="login_input" /></td>
			 </tr>
			 <tr>
			     <td><label t:type="Label" for="password" class="login_label"/></td>
				  <td><input t:type="PasswordField" t:id="password" t:value="password" t:label="password " 
				  					  class="login_input" /></td>
			    </tr>
			    <tr>
			        <td><input t:id="submitform" t:type="Submit" t:value="submit" class="login_submit"/></td>
			    </tr>
			</table>				
		   </t:form>
		</div>
	</body>
</html>
j'ai une page qui s'affiche, mais qui est incorrect et en regardant la source j'ai


Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
    <head>
        <title>Login</title>
    </head>
    <body>
	  <div id="login_box">
	     <t:form>
	         <t:errors />
 
		   <table>
		       <tr>
			     <td><label t:type="Label" for="login" class="login_label"/></td>
			     <td><input t:type="TextField" t:id="login" t:value="login" t:label="login " 
				 					 class="login_input" /></td>
			 </tr>
			 <tr>
			     <td><label t:type="Label" for="password" class="login_label"/></td>
				  <td><input t:type="PasswordField" t:id="password" t:value="password" t:label="password " 
				  					  class="login_input" /></td>
			    </tr>
 
			    <tr>
			        <td><input t:id="submitform" t:type="Submit" t:value="submit" class="login_submit"/></td>
 
			    </tr>
			</table>				
		   </t:form>
		</div>
	</body>
</html>
donc les " t: " ne sont pas interprété :/
pourtant j'ai bien suvi le tuto, ou même essayer avec les sources de l'auteur

si quelqu'un a une idée
merci