-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.md~
122 lines (101 loc) · 2.15 KB
/
README.md~
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
festescat
=========
festes.cat
<html>
<body>
<h1>FESTES.CAT</h1>
Aplicacio desenvolupada per Eduard Renye i Victor Diaz
FESTES - EVENTS - UBICACIONS - USUARIS
-----------------------------------------------------------
Tota aquesta informacio esta disponible ens els formats: JSON,HTML i XML
<table>
<tr>
<td><strong>Method</strong></td>
<td><strong>Resources</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td>GET</td>
<td>/api/festes</td>
<td>Totes les festes disponibles</td>
</tr>
<tr>
<td>POST</td>
<td>/api/festes</td>
<td>Afegir una festa</td>
</tr>
<tr>
<td>GET</td>
<td>/api/festes/ID</td>
<td>Informacio d'una festa en concret</td>
</tr>
<tr>
<td>PUT</td>
<td>/api/festes/ID</td>
<td>Afegir o modificar una festa</td>
</tr>
<tr>
<td>DELETE</td>
<td>/api/festes/ID</td>
<td>Elimina una festa</td>
</tr>
<tr>
<td>GET</td>
<td>/api/events</td>
<td>Tots els events disponibles</td>
</tr>
<tr>
<td>POST</td>
<td>/api/events</td>
<td>Afegir un event</td>
</tr>
<tr>
<td>GET</td>
<td>/api/events/ID</td>
<td>Informacio d'un event</td>
</tr>
<tr>
<td>PUT</td>
<td>/api/events/ID</td>
<td>Afegir o modificar un event</td>
</tr>
<tr>
<td>DELETE</td>
<td>/api/events/ID</td>
<td>Elimina un event</td>
</tr>
<tr>
<td>GET</td>
<td>/api/ubicacions</td>
<td>Totes les ubicacions disponibles</td>
</tr>
<tr>
<td>POST</td>
<td>/api/ubicacions</td>
<td>Afegir una ubicacio</td>
</tr>
<tr>
<td>GET</td>
<td>/api/ubicacions/ID</td>
<td>Informacio de una ubicacio</td>
</tr>
<tr>
<td>PUT</td>
<td>/api/ubicacions/ID</td>
<td>Afegir o modificar una ubicacio</td>
</tr>
<tr>
<td>DELETE</td>
<td>/api/ubicacions/ID</td>
<td>Elimina una ubicacio</td>
</tr>
</table>
Maquetació feta amb bootstrap (CSS i JS).
Semantica:
<ul>
<li>Entitat Festes: Hem usat el tipus EntertainmentBusiness que conté reviews i està relacionat amb events.</li>
<li>Entitat Events: Hem usat el tipus event i està relacionat amb ubicacions.</li>
<li>Entitat Ubicacions: Hem usat el tipus Place.</li>
</ul>
</body>
</html>