summaryrefslogtreecommitdiff
path: root/template.go
blob: 85a93f89fa8e36bc03fa39fdcac18d06bd37ee06 (plain)
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
package main

var pkgTempl = `<html>
<html>
<title>Devuan Packages Information -- {{.Name}}-{{.Version}}</title>
<style type="text/css">
body {
      margin-top: 10px;
      line-height:1.6;
      font-size:20px;
}

div.pkgname{
      font-size: 150%;
      margin-top: 40px;
      margin-left: 40px;
}

div.pkg_suite{
      font-size: 110%;
      margin-top: 15px;
      margin-left: 40px;
      margin-bottom: 60px;
}

div.description{
      font-size: 100%;
      margin-left: 20px;
      margin-top: 20px;
      margin-bottom: 20px;
      border-bottom: 2px solid #aaaaaa;
}

div.long_description{
     font-size: 100%;
     width: 600px;
     margin-left: 40px;
}

div.dep_list{
     margin-top:20px;
     margin-left: 20px;

}

li.dep_item{
     margin-left: 35px;
}

div.rec_list {
     margin-top:20px;
     margin-left: 20px;
}

li.rec_item{
     margin-left: 35px;
}

div.provides{
     margin-bottom: 35px;
     margin-left: 20px;
}


</style>

<body>
<div class="search_form">
<form method="GET" action="/cgi-bin/d1pkgweb-query">
Search Devuan Packages for: <input type="text" name="search"/> in release 
<select name="release">
<option value="jessie" selected>Jessie 1.0.0</option>
<option value="ascii" >Ascii</option>
<option value="ceres" >Ceres (unstable) 1.0.0</option>
<option value="experimental" >Experimental 1.0.0</option>
<option value="any" >Any</option>
</select>
<input type="submit" value="Go!"/>
</form>
</div>

<div class="pkgname">{{.Name}} {{.Version}} [{{.Section}} - {{.Priority}}]</div>
<div class="pkg_suite">[{{.Suite}} - {{.Component}}]</div>
<div class="description">
{{.Description}}
</div>
<div class="long_description">
{{.LongDescription}}
</div>

<hr>

<div class="provides">
{{range .Provides}}<div class="prov_item">Provides: {{.}}</div>{{end}}
</div>

<div class="dep_list">
Depends:
<ul>
{{range .Depends}}<li class="dep_item">{{ . }}</li>{{end}}
</ul>
</div>

<div class="rec_list">
Recommends:
<ul>
{{range .Recommends}}<li class="rec_item">{{ . }}</li>{{end}}
</ul>
</div>


<div class="maintainer">
Maintainer: {{.Maintainer}}
</div>
</body>
</html>
`