comparison src/global/web/PrivacyPolicy.jtp @ 0:7ecd1a4ef557

add content
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 21 Mar 2019 19:15:52 -0600
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:7ecd1a4ef557
1 <%
2 package global.web;
3
4 import fschmidt.util.servlet.JtpContext;
5 import global.HtmlGlobalUtils;
6
7 import javax.servlet.ServletException;
8 import javax.servlet.http.HttpServlet;
9 import javax.servlet.http.HttpServletRequest;
10 import javax.servlet.http.HttpServletResponse;
11 import java.io.IOException;
12 import java.io.PrintWriter;
13
14
15 public final class PrivacyPolicy extends HttpServlet {
16
17 protected void service(HttpServletRequest request,HttpServletResponse response)
18 throws ServletException, IOException
19 {
20 JtpContext jtpContext = (JtpContext)getServletContext().getAttribute(JtpContext.attrName);
21 jtpContext.setEtag(request,response);
22 PrintWriter out = response.getWriter();
23 %>
24 <!DOCTYPE html>
25 <html lang="en">
26 <head>
27 <% HtmlGlobalUtils.head(request, response, "Privacy Policy"); %>
28 </head>
29 <body lato>
30 <% HtmlGlobalUtils.header(request,response); %>
31 <div content center paddingTop>
32 <h1 oswald>Privacy Policy</h1>
33
34 <div class="terms" style="margin: 2em 1em .83em;text-align: justify">
35 <p class="first-para">
36 This Privacy Policy specifies the manner in which Nabble collects, stores, uses,
37 and discloses information about visitors. By using Nabble, you understand and
38 accept the most recent version of this policy, which will be periodically updated.
39 This document was last updated on April 03, 2015.
40 </p>
41
42 <h2 oswald>Information we collect</h2>
43
44 <p class="first-para">
45 We collect information to provide better services to all of our users. We collect information in two ways:
46 </p>
47 <ul>
48 <li>
49 <strong>Information you give us.</strong>
50 Nabble retains private and personal information only when it is voluntarily submitted by visitors via forms and emails.
51 </li>
52 <li>
53 <strong>Information we get from your use of our services.</strong>
54 We may collect information about the services that you use and how you use them. This includes:
55 <ul>
56 <li>
57 <strong>Cookies and anonymous identifiers.</strong>
58 This site uses some unobtrusive cookies to store information on your computer. Some cookies
59 on this site are essential, and the site won't work as expected without them. These cookies are
60 set when you submit a form, login or interact with the site by doing something that goes beyond
61 clicking on simple links. We also use some non-essential cookies to anonymously track visitors
62 or enhance your experience of the site.
63 </li>
64 <li>
65 <strong>Log information.</strong>
66 Nabble may collect and store certain information in server logs, including details of how you used our service,
67 system activity, hardware settings, browser type, browser language, IP address, the date and time of your request and referral URL.
68 </li>
69 </ul>
70 </li>
71 </ul>
72
73 <h2 oswald>How we use the information we collect</h2>
74
75 <p>
76 The information we collect is used to improve your user experience and the overall quality of our services.
77 This basically includes verification of identity, maintaining user preferences, monitoring web traffic,
78 investigation of bugs and statistical analysis with the purpose of improving the user experience.
79 </p>
80
81 <h2 oswald>Anonymous Usage</h2>
82
83 <p>
84 You may use Nabble without divulging any information beyond what is technologically required to retrieve a web page.
85 Such usage, however, will limit the availability of certain features, including maintaining an account.
86 </p>
87
88 <h2 oswald>Site Owners</h2>
89 <p>
90 A Nabble "site" is a forum, blog, or any other application created on Nabble with its own subdomain.
91 The user who creates a site owns it and can make the content public or private as he/she sees fit.
92 This user may also download backups of the data for the site, and this will include any data
93 that you have submitted to this site (except passwords, which are encrypted and truncated for security reasons).
94 </p>
95
96 <h2 oswald>Third Parties</h2>
97 <p>
98 Nabble utilizes certain third parties for the normal operation of our service.
99 This includes, but is not limited to, providers of hosting, payment gateways, statistical analysis software and advertising networks.
100 We allow third-party companies to collect certain information when you visit our web site. These companies may utilize cookies, pixels or
101 other technologies to collect and use non-personally identifiable information (e.g., hashed data, click stream information, browser type,
102 time and date, subject of advertisements clicked or scrolled over) during your visits to this and other web sites in order to provide
103 advertisements about goods and services likely to be of greater interest to you. To learn more about this behavioral advertising practice or
104 to opt-out of this type of advertising, you can visit the websites of the Digital Advertising Alliance at
105 <a href="http://www.aboutads.info">www.aboutads.info</a> and
106 Networking Advertising Initiative at <a href="http://www.networkadvertising.org/choices/">www.networkadvertising.org/choices/</a>.
107 </p>
108 <p>
109 Personal information we collect is not shared with third parties except when approved by you or necessary for the delivery of the service.
110 Information may likewise be divulged to aid in the investigation of illegal or forbidden activities and as required by law.
111 Information may be transferred in the event that Nabble is acquired by another organization.
112 </p>
113 </div>
114 </div>
115 <% HtmlGlobalUtils.footer(request,response); %>
116 </body>
117 </html>
118 <%
119 }
120 }
121 %>