forked from kaarposoft/qrlogo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
107 lines (90 loc) · 4 KB
/
about.html
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
<!DOCTYPE html>
<html>
<head>
<!--
QR-Logo: http://qrlogo.kaarposoft.dk
Copyright (C) 2011 Henrik Kaare Poulsen
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="StyleSheet" type="text/css" href="default.css">
<link rel="shortcut icon" href="favicon.ico" />
<title>About QR-Logo</title>
</head>
<body>
<div class="nav clearfix">
<ul>
<li><a href="index.html">QR-Logo</a>
<li><a href="qrencode.html">Encode</a>
<li><a href="qrdecode.html">Decode</a>
<li class="selected">About
</ul>
</div>
<div class="section">
<h1>About QR Logo</h1>
<a href="index.html">QR-Logo</a> can embed your logo into a <a href="http://en.wikipedia.org/wiki/QRcode">QR Code</a>.
<p><a href="index.html">QR-Logo</a> is pure JavaScript, so it runs in your own browser.
</div>
<div class="section">
<h2>Development</h2>
QR-Logo is hosted at <a href="http://github.com/kaarposoft/qrlogo">GitHub</a>
<ul>
<li><a href="http://github.com/kaarposoft/qrlogo">Source Code</a>
<li><a href="http://github.com/kaarposoft/qrlogo/issues">Bug report</a>
</ul>
</div>
<div class="section">
<h2>Acknowledgements</h2>
<ul>
<li>Thank you <a href="http://github.com/kaarposoft/qrlogo">Git Hub</a>
for hosting <a href="http://github.com/kaarposoft/qrlogo">QR-Logo</a>
</ul>
<ul>
<li>Parts of the decoding algorithms have been inspired by
<a href="http://code.google.com/p/zxing">ZXing</a>
(Original Java version by Sean Owen; Copyright 2007 ZXing authors)
<li>Parts of the Reed Solomon decoding algorithms have been inspired by
<a href="http://rscode.sourceforge.net">RSCODE</a>
(Original version copyright by Henry Minsky)
</ul>
<p>
<ul>
<li><a href="http://www.jetbrains.com/webstorm">WebStorm</a>
is a great JavaScript editor
<li><a href="http://www.jslint.com">JSlint</a>
helped keep the JavaScript code in a reasonable shape
<li><a href="http://validator.w3.org">W3C Markup Validation Service</a>
helped keep our HTML code valid
<li><a href="http://seleniumhq.org/">Selenum</a> <a href="http://seleniumhq.org/projects/ide/">IDE</a>
has been used for testing
</ul>
</div>
<div class="section">
<h2>License</h2>
QR-Logo: Copyright (C) 2011 Henrik Kaare Poulsen
<p>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this software except in compliance with the License.
You may obtain a copy of the License at
<a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>
<p>
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
</div>
<div class="section">
<h2>Author</h2>
<a href="http://kaarposoft.dk">KaarPoSoft</a>: <a href="http://kaarepoulsen.dk">Henrik Kaare Poulsen</a>
</div>
</body>
</html>