-
Notifications
You must be signed in to change notification settings - Fork 55
/
rosetta.php
70 lines (57 loc) · 3.18 KB
/
rosetta.php
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
<html>
<head>
<title>Connecting Django and Java</title>
</head>
<body>
<h1>Connecting Python/Django and Java/Spring MVC</h1>
<ul>
<li><p>
<a href="https://www.dj4e.com/lessons/dj4e_mvc" target="_blank">My module on Django MVC</a>
</p></li>
<li><p>
<a href="https://docs.spring.io/spring-framework/docs/3.2.x/spring-framework-reference/html/mvc.html" target="_blank">Spring MVC Web Framework Dcumentation</a>
</p></li>
<li><p>
<a href="https://docs.spring.io/spring-framework/docs/3.2.x/spring-framework-reference/html/images/mvc.png" target="_blank">Spring MVC Web Framework Diagram</a>
</p></li>
<hr/>
<li><p>
<a href="https://github.com/csev/sakai/blob/plus/plus/api/src/main/java/org/sakaiproject/plus/api/model/Tenant.java" target="_blank">Tenant Data Model</a> ↔️
<a href="https://github.com/csev/dj4e-samples/blob/main/autos/models.py" target="_blank">models.py</a>
</p></li>
<li><p>
<a href="https://github.com/csev/sakai/blob/plus/plus/api/src/main/java/org/sakaiproject/plus/api/model/Context.java" target="_blank">Context Data Model</a>
</p></li>
<li><p>
<a href="https://github.com/csev/sakai/blob/plus/plus/tool/src/main/java/org/sakaiproject/plus/tool/PlusConfiguration.java" target="_blank">PlusConfiguration</a> ↔️
(like WGSIConfig in PythonAnywhere)
</p></li>
<li><p>
<a href="https://github.com/csev/sakai/blob/plus/plus/tool/src/main/java/org/sakaiproject/plus/tool/WebMvcConfiguration.java" target="_blank">WebMvcConfiguration.java</a> ↔️
<a href="https://github.com/csev/dj4e-samples/blob/main/dj4e-samples/settings.py" target="_blank">settings.py</a>
</p></li>
<li><p>
<a href="https://github.com/csev/sakai/blob/plus/plus/tool/src/main/resources/Messages.properties" target="_blank">Messages.properties</a> (I18N)
</p></li>
<li><p>
<a href="https://github.com/csev/sakai/blob/plus/plus/tool/src/main/java/org/sakaiproject/plus/tool/MainController.java" target="_blank">MainController.java</a> ↔️
<a href="https://github.com/csev/dj4e-samples/blob/main/autos/urls.py" target="_blank">urls.py</a> and
<a href="https://github.com/csev/dj4e-samples/blob/main/autos/views.py" target="_blank">views.py</a>
</p></li>
<li><p>
<a href="https://github.com/csev/sakai/blob/plus/plus/tool/src/main/webapp/WEB-INF/templates/index.html" target="_blank">index.html</a> ↔️
<a href="https://github.com/csev/dj4e-samples/blob/main/autos/templates/autos/auto_list.html" target="_blank">auto_list.html</a>
</p></li>
<li><p>
<a href="https://github.com/csev/sakai/blob/plus/plus/tool/src/main/webapp/WEB-INF/templates/tenant.html" target="_blank">tenant.html</a> ↔️
(no detail page in autos)
</p></li>
<li><p>
<a href="https://github.com/csev/sakai/blob/plus/plus/tool/src/main/webapp/WEB-INF/templates/form.html" target="_blank">form.html</a> ↔️
<a href="https://github.com/csev/dj4e-samples/blob/main/autos/templates/autos/auto_form.html" target="_blank">auto_form.html</a>
</p></li>
<li><p>
<a href="https://github.com/csev/sakai/blob/plus/plus/tool/src/main/webapp/WEB-INF/templates/delete.html" target="_blank">delete.html</a> ↔️
<a href="https://github.com/csev/dj4e-samples/blob/main/autos/templates/autos/auto_confirm_delete.html" target="_blank">auto_confirm_delete.html</a>
</p></li>
</ul>