diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/global/web/PrivacyPolicy.jtp	Thu Mar 21 19:15:52 2019 -0600
@@ -0,0 +1,121 @@
+<%
+package global.web;
+
+import fschmidt.util.servlet.JtpContext;
+import global.HtmlGlobalUtils;
+
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.io.IOException;
+import java.io.PrintWriter;
+
+
+public final class PrivacyPolicy extends HttpServlet {
+
+	protected void service(HttpServletRequest request,HttpServletResponse response)
+		throws ServletException, IOException
+	{
+		JtpContext jtpContext = (JtpContext)getServletContext().getAttribute(JtpContext.attrName);
+		jtpContext.setEtag(request,response);
+		PrintWriter out = response.getWriter();
+%>
+<!DOCTYPE html>
+<html lang="en">
+	<head>
+		<% HtmlGlobalUtils.head(request, response, "Privacy Policy"); %>
+	</head>
+	<body lato>
+		<% HtmlGlobalUtils.header(request,response); %>
+		<div content center paddingTop>
+			<h1 oswald>Privacy Policy</h1>
+
+			<div class="terms" style="margin: 2em 1em .83em;text-align: justify">
+				<p class="first-para">
+					This Privacy Policy specifies the manner in which Nabble collects, stores, uses,
+					and discloses information about visitors. By using Nabble, you understand and
+					accept the most recent version of this policy, which will be periodically updated.
+					This document was last updated on April 03, 2015.
+				</p>
+
+				<h2 oswald>Information we collect</h2>
+
+				<p class="first-para">
+					We collect information to provide better services to all of our users. We collect information in two ways:
+				</p>
+				<ul>
+					<li>
+						<strong>Information you give us.</strong>
+						Nabble retains private and personal information only when it is voluntarily submitted by visitors via forms and emails.
+					</li>
+					<li>
+						<strong>Information we get from your use of our services.</strong>
+						We may collect information about the services that you use and how you use them. This includes:
+						<ul>
+							<li>
+								<strong>Cookies and anonymous identifiers.</strong>
+								This site uses some unobtrusive cookies to store information on your computer. Some cookies
+								on this site are essential, and the site won't work as expected without them. These cookies are
+								set when you submit a form, login or interact with the site by doing something that goes beyond
+								clicking on simple links. We also use some non-essential cookies to anonymously track visitors
+								or enhance your experience of the site.
+							</li>
+							<li>
+								<strong>Log information.</strong>
+								Nabble may collect and store certain information in server logs, including details of how you used our service,
+								system activity, hardware settings, browser type, browser language, IP address, the date and time of your request and referral URL.
+							</li>
+						</ul>
+					</li>
+				</ul>
+
+				<h2 oswald>How we use the information we collect</h2>
+
+				<p>
+					The information we collect is used to improve your user experience and the overall quality of our services.
+					This basically includes verification of identity, maintaining user preferences, monitoring web traffic,
+					investigation of bugs and statistical analysis with the purpose of improving the user experience.
+				</p>
+
+				<h2 oswald>Anonymous Usage</h2>
+
+				<p>
+					You may use Nabble without divulging any information beyond what is technologically required to retrieve a web page.
+					Such usage, however, will limit the availability of certain features, including maintaining an account.
+				</p>
+
+				<h2 oswald>Site Owners</h2>
+				<p>
+					A Nabble "site" is a forum, blog, or any other application created on Nabble with its own subdomain.
+					The user who creates a site owns it and can make the content public or private as he/she sees fit.
+					This user may also download backups of the data for the site, and this will include any data
+					that you have submitted to this site (except passwords, which are encrypted and truncated for security reasons).
+				</p>
+
+				<h2 oswald>Third Parties</h2>
+				<p>
+					Nabble utilizes certain third parties for the normal operation of our service.
+					This includes, but is not limited to, providers of hosting, payment gateways, statistical analysis software and advertising networks.
+					We allow third-party companies to collect certain information when you visit our web site. These companies may utilize cookies, pixels or
+					other technologies to collect and use non-personally identifiable information (e.g., hashed data, click stream information, browser type,
+					time and date, subject of advertisements clicked or scrolled over) during your visits to this and other web sites in order to provide
+					advertisements about goods and services likely to be of greater interest to you. To learn more about this behavioral advertising practice or
+					to opt-out of this type of advertising, you can visit the websites of the Digital Advertising Alliance at
+					<a href="http://www.aboutads.info">www.aboutads.info</a> and
+					Networking Advertising Initiative at <a href="http://www.networkadvertising.org/choices/">www.networkadvertising.org/choices/</a>.
+				</p>
+				<p>
+					Personal information we collect is not shared with third parties except when approved by you or necessary for the delivery of the service.
+					Information may likewise be divulged to aid in the investigation of illegal or forbidden activities and as required by law.
+					Information may be transferred in the event that Nabble is acquired by another organization.
+				</p>
+			</div>
+		</div>
+		<% HtmlGlobalUtils.footer(request,response); %>
+	</body>
+</html>
+<%
+	}
+}
+%>