esoe
2 years ago
10 changed files with 162 additions and 39 deletions
@ -0,0 +1,7 @@
@@ -0,0 +1,7 @@
|
||||
{ |
||||
"linkVC" : "http://molokoin.ru:3000/esoe/molokoin-client/archive/master.zip", |
||||
"downloadPath" : "C:\\Users\\Strannik\\Documents\\esoe\\code\\sourceListener\\out\\zip", |
||||
"zipPath" : "C:\\Users\\Strannik\\Documents\\esoe\\code\\sourceListener\\out\\zip\\molokoin-client-master.zip", |
||||
"unzipPath" : "C:\\Users\\Strannik\\Documents\\esoe\\code\\sourceListener\\out\\unzip\\molokoin" |
||||
|
||||
} |
@ -0,0 +1,45 @@
@@ -0,0 +1,45 @@
|
||||
body { |
||||
font-family: Arial; |
||||
padding: 20px; |
||||
background: #f1f1f1; |
||||
} |
||||
div { |
||||
background-color: rgb(181, 122, 236); |
||||
padding: 5px; |
||||
margin: 5px; |
||||
} |
||||
.header{ |
||||
display: block; |
||||
padding: 30px; |
||||
font-size: 40px; |
||||
text-align: center; |
||||
background: rgb(181, 122, 236); |
||||
/*position: relative; top: 20px;*/ |
||||
} |
||||
.controls{ |
||||
/*position: relative; left: 20px;*/ |
||||
list-style: none; /* Отключение отображения маркеров. */ |
||||
width: 25%; /* Ширина меню. */ |
||||
float: left; |
||||
/*padding-left: 20px;*/ |
||||
} |
||||
.controls li { |
||||
margin: 5px; /* Отступ между блоками по высоте, необходимый для того чтобы пункты меню не сливались */ |
||||
font-family: Verdana, Arial, Helvetica, sans-serif; /* Тип шрифта пунктов меню */ |
||||
font-size: 14px; /* Размер текста меню */ |
||||
} |
||||
.controls li a{ |
||||
display: block; /* Изменение отображения на блочное для того, чтобы иметь возможность задать внутренние отступы. */ |
||||
padding: 4px 15px; /* Отступы внутри блоков. */ |
||||
background: #0db5b5; /* Цвет блоков меню. */ |
||||
color: #3f3f3f; /* Цвет текста в блоках меню. */ |
||||
text-decoration: none; /* Устранение подчёркивания ссылок. */ |
||||
position: relative; /* Это необходимо при использовании Internet Explorer 6 для того, чтобы ссылка по всей своей площади была «кликабельной». */ |
||||
} |
||||
.controls li a:hover { |
||||
background: #92d3d3; /* Цвет фона при наведении курсора мыши */ |
||||
color: #6b6b6b; /* Цвет текста при наведении курсора мыши */ |
||||
} |
||||
.mainframe{ |
||||
background-color: aliceblue; |
||||
} |
@ -0,0 +1,23 @@
@@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="UTF-8"> |
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||
<title>molokoin.ru</title> |
||||
<link rel="stylesheet" type="text/css" href="css/style.css"> |
||||
</head> |
||||
<body> |
||||
<div class="header"> |
||||
molokoin.ru/ добавить картинку и кнопку авторизации |
||||
</div> |
||||
<div class="controls"> |
||||
<li><a href="http://molokoin.ru:3000/esoe">gitea</a></li> |
||||
<li><a href="http://www.molokoin.ru:8080">apache</a></li> |
||||
<li><a href="http://www.egspt.ru">moodle</a></li> |
||||
<li><a href="http://isp12.adminvps.ru">adminvps</a></li> |
||||
|
||||
</div> |
||||
<script src="js/main.js"></script> |
||||
</body> |
||||
</html> |
@ -0,0 +1 @@
@@ -0,0 +1 @@
|
||||
console.log("qu") |
@ -0,0 +1,42 @@
@@ -0,0 +1,42 @@
|
||||
package ru.molokoin.sourceListener; |
||||
|
||||
public class Options { |
||||
private String linkVC; |
||||
private String downloadPath; |
||||
private String zipPath; |
||||
private String unzipPath; |
||||
|
||||
public Options(){} |
||||
public void setLinkVC(String linkVC) { |
||||
this.linkVC = linkVC; |
||||
} |
||||
public String getLinkVC() { |
||||
return linkVC; |
||||
} |
||||
public void setDownloadPath(String downloadPath) { |
||||
this.downloadPath = downloadPath; |
||||
} |
||||
public String getDownloadPath() { |
||||
return downloadPath; |
||||
} |
||||
public void setUnzipPath(String unzipPath) { |
||||
this.unzipPath = unzipPath; |
||||
} |
||||
public String getUnzipPath() { |
||||
return unzipPath; |
||||
} |
||||
public void setZipPath(String zipPath) { |
||||
this.zipPath = zipPath; |
||||
} |
||||
public String getZipPath() { |
||||
return zipPath; |
||||
} |
||||
@Override |
||||
public String toString() { |
||||
String s = "linkVC : " + getLinkVC() + "\n"; |
||||
s = s + "downloadPath : " + getDownloadPath() + "\n"; |
||||
s = s + "zipPath : " + getZipPath() + "\n"; |
||||
s = s + "unzipPath : " + getUnzipPath() + "\n"; |
||||
return s; |
||||
} |
||||
} |
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue