Skip to content

Commit 2fe01af

Browse files
author
Tanechka
committed
Lesson15 web
1 parent 02aee97 commit 2fe01af

File tree

4 files changed

+29
-0
lines changed

4 files changed

+29
-0
lines changed

src/ru/javawebinar/basejava/storage/SqlStorage.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
import java.util.List;
1212
import java.util.Map;
1313

14+
// TODO implement Section (except OrganizationSection)
15+
// TODO Join and split ListSection by `\n`
1416
public class SqlStorage implements Storage {
1517
public final SqlHelper sqlHelper;
1618

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
5+
version="3.1">
6+
</web-app>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Практика Java. Разработка Web приложения.</title>
6+
</head>
7+
<body>
8+
<h2>Приложение вебинара <a href="http://javawebinar.ru/basejava/" target="_blank">Практика Java. Разработка Web
9+
приложения."</a></h2>
10+
</body>
11+
</html>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Title</title>
6+
</head>
7+
<body>
8+
Test
9+
</body>
10+
</html>

0 commit comments

Comments
 (0)