Merge: Added contributing guidelines and link from readme
[nit.git] / lib / popcorn / examples / static_files / test_example_static.sav / test_example_static.res
1
2 [Client] curl -s localhost:*****/css/style.css
3 body {
4         color: blue;
5         padding: 20px;
6 }
7
8 [Client] curl -s localhost:*****/js/app.js
9 alert("Hello World!");
10
11 [Client] curl -s localhost:*****/hello.html
12 <!DOCTYPE html>
13 <html>
14         <head>
15                 <meta charset="UTF-8">
16
17                 <title>Some Popcorn love</title>
18
19                 <link rel="stylesheet" type="text/css" href="/css/style.css">
20         </head>
21         <body>
22                 <h1>Hello Popcorn!</h1>
23
24                 <img src="/images/trollface.jpg" alt="maybe it's a kitten?" />
25
26                 <script src="/js/app.js"></script>
27         </body>
28 </html>
29
30 [Client] curl -s localhost:*****/
31                 <!DOCTYPE html>
32                 <html>
33                 <head>
34                         <meta charset="utf-8">
35                         <title>Not Found</title>
36                 </head>
37                 <body>
38                 <h1>404 Not Found</h1>
39                 </body>
40                 </html>
41 [Client] curl -s localhost:*****/css/not_found.nit
42                 <!DOCTYPE html>
43                 <html>
44                 <head>
45                         <meta charset="utf-8">
46                         <title>Not Found</title>
47                 </head>
48                 <body>
49                 <h1>404 Not Found</h1>
50                 </body>
51                 </html>
52 [Client] curl -s localhost:*****/static/css/not_found.nit
53                 <!DOCTYPE html>
54                 <html>
55                 <head>
56                         <meta charset="utf-8">
57                         <title>Not Found</title>
58                 </head>
59                 <body>
60                 <h1>404 Not Found</h1>
61                 </body>
62                 </html>
63 [Client] curl -s localhost:*****/not_found.nit
64                 <!DOCTYPE html>
65                 <html>
66                 <head>
67                         <meta charset="utf-8">
68                         <title>Not Found</title>
69                 </head>
70                 <body>
71                 <h1>404 Not Found</h1>
72                 </body>
73                 </html>