Merge: Added contributing guidelines and link from readme
[nit.git] / lib / popcorn / examples / routing / test_example_glob_route.sav / test_example_glob_route.res
1
2 [Client] curl -s localhost:*****/user/Morriar/item/10
3 Here the item 10 of the use Morriar.
4 [Client] curl -s localhost:*****/user/Morriar/item/10/
5 Here the item 10 of the use Morriar.
6 [Client] curl -s localhost:*****/user/Morriar/item/10/profile
7 Here the item 10 of the use Morriar.
8 [Client] curl -s localhost:*****/user/Morriar/item/10/profile/settings
9 Here the item 10 of the use Morriar.
10 [Client] curl -s localhost:*****/
11                 <!DOCTYPE html>
12                 <html>
13                 <head>
14                         <meta charset="utf-8">
15                         <title>Not Found</title>
16                 </head>
17                 <body>
18                 <h1>404 Not Found</h1>
19                 </body>
20                 </html>
21 [Client] curl -s localhost:*****/not_found
22                 <!DOCTYPE html>
23                 <html>
24                 <head>
25                         <meta charset="utf-8">
26                         <title>Not Found</title>
27                 </head>
28                 <body>
29                 <h1>404 Not Found</h1>
30                 </body>
31                 </html>
32 [Client] curl -s localhost:*****/not_found/not_found
33                 <!DOCTYPE html>
34                 <html>
35                 <head>
36                         <meta charset="utf-8">
37                         <title>Not Found</title>
38                 </head>
39                 <body>
40                 <h1>404 Not Found</h1>
41                 </body>
42                 </html>