boilerplate 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +27 -0
- data/Rakefile +40 -0
- data/app/assets/javascripts/boilerplate/application.js +15 -0
- data/app/assets/stylesheets/boilerplate/application.css +13 -0
- data/app/assets/stylesheets/boilerplate/print.css +107 -0
- data/app/controllers/boilerplate/application_controller.rb +4 -0
- data/app/controllers/boilerplate/policy_controller.rb +28 -0
- data/app/helpers/boilerplate/application_helper.rb +4 -0
- data/app/views/boilerplate/policy/privacy.html.erb +105 -0
- data/app/views/boilerplate/policy/security.html.erb +33 -0
- data/app/views/boilerplate/policy/terms_of_service.html.erb +278 -0
- data/app/views/layouts/boilerplate/application.html.erb +14 -0
- data/app/views/layouts/boilerplate/policy.haml +8 -0
- data/config/routes.rb +7 -0
- data/lib/boilerplate.rb +4 -0
- data/lib/boilerplate/engine.rb +62 -0
- data/lib/boilerplate/version.rb +3 -0
- data/lib/tasks/boilerplate_tasks.rake +4 -0
- data/test/boilerplate_test.rb +7 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/log/production.log +0 -0
- data/test/dummy/log/server.log +0 -0
- data/test/dummy/log/test.log +0 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/javascripts/application.js +2 -0
- data/test/dummy/public/javascripts/controls.js +965 -0
- data/test/dummy/public/javascripts/dragdrop.js +974 -0
- data/test/dummy/public/javascripts/effects.js +1123 -0
- data/test/dummy/public/javascripts/prototype.js +6001 -0
- data/test/dummy/public/javascripts/rails.js +202 -0
- data/test/dummy/script/rails +6 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/support/integration_case.rb +5 -0
- data/test/test_helper.rb +15 -0
- metadata +197 -0
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2012 YOURNAME
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
= Boilerplate
|
2
|
+
|
3
|
+
Standardized policy documents
|
4
|
+
|
5
|
+
== Gemfile:
|
6
|
+
|
7
|
+
gem 'boilerplate', :git => 'https://github.com/verifip/boilerplate.git'
|
8
|
+
|
9
|
+
== Routes:
|
10
|
+
|
11
|
+
mount Boilerplate::Engine => '/policy'
|
12
|
+
|
13
|
+
results in the following routes:
|
14
|
+
|
15
|
+
/policy/privacy
|
16
|
+
/policy/security
|
17
|
+
/policy/terms_of_service
|
18
|
+
|
19
|
+
== Initializer (config/initializers/boilerplate.rb):
|
20
|
+
|
21
|
+
Boilerplate::Engine.company_name = "My Company"
|
22
|
+
Boilerplate::Engine.company_state = "Florida"
|
23
|
+
Boilerplate::Engine.company_type = "limited liability company"
|
24
|
+
Boilerplate::Engine.company_domain = "verifip.com"
|
25
|
+
Boilerplate::Engine.contact_email = "info@verifip.com"
|
26
|
+
Boilerplate::Engine.contact_phone = "813-VER-IFIP"
|
27
|
+
Boilerplate::Engine.unsubscribe_email = "unsubscribe@verifip.com"
|
data/Rakefile
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
begin
|
3
|
+
require 'bundler/setup'
|
4
|
+
rescue LoadError
|
5
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
6
|
+
end
|
7
|
+
begin
|
8
|
+
require 'rdoc/task'
|
9
|
+
rescue LoadError
|
10
|
+
require 'rdoc/rdoc'
|
11
|
+
require 'rake/rdoctask'
|
12
|
+
RDoc::Task = Rake::RDocTask
|
13
|
+
end
|
14
|
+
|
15
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
16
|
+
rdoc.rdoc_dir = 'rdoc'
|
17
|
+
rdoc.title = 'Boilerplate'
|
18
|
+
rdoc.options << '--line-numbers'
|
19
|
+
rdoc.rdoc_files.include('README.rdoc')
|
20
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
21
|
+
end
|
22
|
+
|
23
|
+
APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
|
24
|
+
load 'rails/tasks/engine.rake'
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
Bundler::GemHelper.install_tasks
|
29
|
+
|
30
|
+
require 'rake/testtask'
|
31
|
+
|
32
|
+
Rake::TestTask.new(:test) do |t|
|
33
|
+
t.libs << 'lib'
|
34
|
+
t.libs << 'test'
|
35
|
+
t.pattern = 'test/**/*_test.rb'
|
36
|
+
t.verbose = false
|
37
|
+
end
|
38
|
+
|
39
|
+
|
40
|
+
task :default => :test
|
@@ -0,0 +1,15 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
+
// listed below.
|
3
|
+
//
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
+
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
|
6
|
+
//
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
+
// the compiled file.
|
9
|
+
//
|
10
|
+
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
|
11
|
+
// GO AFTER THE REQUIRES BELOW.
|
12
|
+
//
|
13
|
+
//= require jquery
|
14
|
+
//= require jquery_ujs
|
15
|
+
//= require_tree .
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
10
|
+
*
|
11
|
+
*= require_self
|
12
|
+
*= require_tree .
|
13
|
+
*/
|
@@ -0,0 +1,107 @@
|
|
1
|
+
body {
|
2
|
+
width: 612px;
|
3
|
+
margin: 0.5in;
|
4
|
+
font-family: Myriad Pro;
|
5
|
+
/* background: url('/images/print-watermark.png') no-repeat 18px 18px;*/
|
6
|
+
font-size: 12pt;
|
7
|
+
}
|
8
|
+
|
9
|
+
h1 {
|
10
|
+
font-size: 18pt;
|
11
|
+
font-weight: normal;
|
12
|
+
}
|
13
|
+
|
14
|
+
h1 img {
|
15
|
+
float: right;
|
16
|
+
}
|
17
|
+
|
18
|
+
h2 {
|
19
|
+
font-size: 18pt;
|
20
|
+
font-weight: normal;
|
21
|
+
margin: 10px 0;
|
22
|
+
}
|
23
|
+
|
24
|
+
h3 {
|
25
|
+
font-size: 12pt;
|
26
|
+
}
|
27
|
+
|
28
|
+
p {
|
29
|
+
color: #181818;
|
30
|
+
}
|
31
|
+
|
32
|
+
a {
|
33
|
+
color: #006A35;
|
34
|
+
}
|
35
|
+
|
36
|
+
table {
|
37
|
+
width: 100%;
|
38
|
+
}
|
39
|
+
|
40
|
+
th {
|
41
|
+
text-align: left;
|
42
|
+
background: #EBF1ED;
|
43
|
+
padding-left: 5px;
|
44
|
+
border-bottom: 1px solid #B1D355;
|
45
|
+
font-size: 9pt;
|
46
|
+
}
|
47
|
+
|
48
|
+
td:first-child {
|
49
|
+
width: 200px;
|
50
|
+
min-width: 200px;
|
51
|
+
max-width: 200px;
|
52
|
+
padding-left: 5px;
|
53
|
+
}
|
54
|
+
|
55
|
+
td {
|
56
|
+
vertical-align: top;
|
57
|
+
border-bottom: 1px solid #007932;
|
58
|
+
padding: 5px;
|
59
|
+
font-size: 11pt;
|
60
|
+
}
|
61
|
+
|
62
|
+
tr:last-child td {
|
63
|
+
border: none;
|
64
|
+
}
|
65
|
+
|
66
|
+
#contact {
|
67
|
+
clear: both;
|
68
|
+
}
|
69
|
+
|
70
|
+
#contact td {
|
71
|
+
border: none;
|
72
|
+
font-size: 12pt;
|
73
|
+
padding: 0;
|
74
|
+
}
|
75
|
+
|
76
|
+
#contact td:first-child {
|
77
|
+
color: #007932;
|
78
|
+
}
|
79
|
+
|
80
|
+
#contact .collaborators {
|
81
|
+
margin-top: 10px;
|
82
|
+
}
|
83
|
+
|
84
|
+
#contact, #completeness, #ownership-in, #ownership-out, #status, #footer {
|
85
|
+
border-top: 2px solid #007932;
|
86
|
+
padding-bottom: 10px;
|
87
|
+
}
|
88
|
+
|
89
|
+
#header {
|
90
|
+
padding-bottom: 10px;
|
91
|
+
}
|
92
|
+
|
93
|
+
#footer {
|
94
|
+
padding-top: 10px;
|
95
|
+
}
|
96
|
+
|
97
|
+
.title {
|
98
|
+
padding-right: 10px;
|
99
|
+
}
|
100
|
+
|
101
|
+
.dateline {
|
102
|
+
float: right;
|
103
|
+
}
|
104
|
+
|
105
|
+
table.line {
|
106
|
+
border-bottom: 1px solid #007932;
|
107
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module Boilerplate
|
2
|
+
|
3
|
+
class PolicyController < ::ApplicationController
|
4
|
+
|
5
|
+
before_filter :assign_company_details
|
6
|
+
|
7
|
+
def privacy
|
8
|
+
end
|
9
|
+
|
10
|
+
def security
|
11
|
+
end
|
12
|
+
|
13
|
+
def terms_of_service
|
14
|
+
end
|
15
|
+
|
16
|
+
def assign_company_details
|
17
|
+
@name = Boilerplate::Engine.company_name
|
18
|
+
@state = Boilerplate::Engine.company_state
|
19
|
+
@company_type = Boilerplate::Engine.company_type
|
20
|
+
@domain = Boilerplate::Engine.company_domain
|
21
|
+
@contact_email = Boilerplate::Engine.contact_email
|
22
|
+
@contact_phone = Boilerplate::Engine.contact_phone
|
23
|
+
@unsubscribe_email = Boilerplate::Engine.unsubscribe_email
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
@@ -0,0 +1,105 @@
|
|
1
|
+
<% content_for :title, 'Privacy Policy' %>
|
2
|
+
<h2>Privacy Policy</h2>
|
3
|
+
|
4
|
+
<p>This privacy policy applies to all information gathered by <%= @name %>, a
|
5
|
+
<%= @state %> <%= @company_type %> (“we,” “us,” “our,” etc.) from users
|
6
|
+
(“you,” “your,” etc.) of our <%= @name %> service and the related website and
|
7
|
+
software (collectively, “service”).</p>
|
8
|
+
|
9
|
+
<h3>Purpose & Effect</h3>
|
10
|
+
<p>Your use of our service is voluntary. We must obtain personal information
|
11
|
+
about you in order to provide you with certain features of the service. By
|
12
|
+
using our service or requesting that we provide the service to you, you are
|
13
|
+
agreeing to disclose certain of your personal information to us and you are
|
14
|
+
authorizing us to use and disclose your personal information pursuant to the
|
15
|
+
provisions of this privacy policy.</p>
|
16
|
+
|
17
|
+
<h3>Opt-Out Procedure</h3>
|
18
|
+
<p>To opt-out of all further contact initiated by us, and to forestall our
|
19
|
+
further use or disclosure of your personal information, go to our opt-out
|
20
|
+
page at any time. Opting out of all communication in this manner means that
|
21
|
+
you must discontinue all use of the service.</p>
|
22
|
+
|
23
|
+
<h3>Your Personal Information</h3>
|
24
|
+
<p>We may request that you enter into our service certain personal information
|
25
|
+
about yourself, including some or all of your: (i) first name and last name;
|
26
|
+
(ii) date of birth; (iii) email address; (iv) mailing address; (v) telephone
|
27
|
+
numbers; and (vi) credit card and bank account numbers.</p>
|
28
|
+
|
29
|
+
<p>We may also record information about your use of our service, such as your
|
30
|
+
local internet address, your click history, the times and dates at which you
|
31
|
+
access our service, the particular portions of the service that you use, and
|
32
|
+
the details of any transactions you conduct using the service.</p>
|
33
|
+
|
34
|
+
<p>Your personal information remains your property at all times, subject to
|
35
|
+
the permissive uses granted hereunder.</p>
|
36
|
+
|
37
|
+
<h3>How We May Use or Disclose Your Personal Information</h3>
|
38
|
+
<p>We will use your personal information to authenticate your access to our
|
39
|
+
service.</p>
|
40
|
+
|
41
|
+
<p>We may combine your personal information (but not your financial account
|
42
|
+
information) with that of our other users in a consolidated database from
|
43
|
+
which we may extract aggregated information, which is statistical
|
44
|
+
information about our users as a group not containing any personally
|
45
|
+
identifiable information about you or any other individual user.</p>
|
46
|
+
|
47
|
+
<p>We may use your personal information to contact you to inform you of
|
48
|
+
changes or available enhancements to the service, or to otherwise
|
49
|
+
communicate with you about issues regarding the service.</p>
|
50
|
+
|
51
|
+
<p>We may contact you to offer you the opportunity to participate in or avail
|
52
|
+
yourself of new or additional services, which such contact may be construed
|
53
|
+
as marketing. You may later opt-out of receiving marketing-related
|
54
|
+
communications from us by sending an email to: <%= @unsubscribe_email %></p>
|
55
|
+
|
56
|
+
<p>We may disclose lists of information containing your personally
|
57
|
+
identifiable information to third parties for their use. We may disclose
|
58
|
+
the aggregated information referenced above to third parties for their
|
59
|
+
use.</p>
|
60
|
+
|
61
|
+
<p>We may disclose your individual personal information if compelled to do so
|
62
|
+
by law, governmental rule or regulation, judicial process, or court order.
|
63
|
+
We may transfer our rights relating to your personal information hereunder
|
64
|
+
to a third party by way of merger, acquisition, or asset sale.</p>
|
65
|
+
|
66
|
+
<h3>Other Information</h3>
|
67
|
+
<p>This service may place a file known as a cookie on your computer’s hard
|
68
|
+
drive, which cookie may be used to maintain password and session information
|
69
|
+
about you, your registration with us, and your use of the service.</p>
|
70
|
+
|
71
|
+
<p>We will store your personal information in encrypted form on secure systems.
|
72
|
+
We do not warrant the security or integrity of our systems or of any internet
|
73
|
+
transmission. We will notify you in accordance with applicable law in the
|
74
|
+
event that the security of your personal information is compromised or is
|
75
|
+
suspected to have been compromised.</p>
|
76
|
+
|
77
|
+
<p>You may modify your personal information you have disclosed to us by
|
78
|
+
following the applicable instructions on our service.</p>
|
79
|
+
|
80
|
+
<h3>Applicable Law & Legal Effect</h3>
|
81
|
+
<p>This privacy policy is subject to all applicable state and federal law
|
82
|
+
regarding privacy, information sharing, and telemarketing, including without
|
83
|
+
limitation Gramm-Leach-Bliley Act, 15 U.S.C. 6802; the California Financial
|
84
|
+
Privacy Act, Ca. Fin. Code. §4050-4060; the Vermont Consumer Protection Act,
|
85
|
+
8 V.S.A. 10202; and the Amended Telemarketing Sales Rule, 16 CFR §310 et seq.
|
86
|
+
This privacy policy constitutes our privacy notice to you under such
|
87
|
+
applicable law. Your use of the service is permitted only on condition of
|
88
|
+
your agreement with this privacy policy. This privacy policy does not extend
|
89
|
+
to any service other than our service, including any service you may access
|
90
|
+
by clicking on our service’s links, or any other party’s use of your personal
|
91
|
+
information other than us. This privacy policy may be revised at any time by
|
92
|
+
us, whereupon we will indicate the same on the main page of our service.
|
93
|
+
Your continued use of our service thereafter constitutes your assent to such
|
94
|
+
revised privacy policy.</p>
|
95
|
+
|
96
|
+
<p>We use good faith efforts to adhere to the European Union Safe Harbor
|
97
|
+
principles as set forth by the United States Department of Commerce regarding
|
98
|
+
the collection, use, and retention of personal information.</p>
|
99
|
+
|
100
|
+
<p>The service and the Services are intended for adult audiences. We will not
|
101
|
+
knowingly collect any personal information from anyone under 16 years of
|
102
|
+
age.</p>
|
103
|
+
|
104
|
+
<p>If you have any questions or concerns about this privacy policy, please
|
105
|
+
contact us at: <%= @contact_email %> or <%= @contact_phone %></p>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<% content_for :title, 'Security Policy' %>
|
2
|
+
<h2>Security Policy</h2>
|
3
|
+
<p>This security policy applies to all information gathered by <%= @name %>, a
|
4
|
+
<%= @state %> <%= @company_type %> (“we,” “us,” “our,” etc.) from users
|
5
|
+
(“you,” “your,” etc.) of our <%= @name %> service and the related website and
|
6
|
+
software (collectively, “service”).</p>
|
7
|
+
|
8
|
+
<h3>Encryption</h3>
|
9
|
+
<p>All information submitted by you through your browser or mobile device is
|
10
|
+
secured by industry standard SSL 128-bit encryption. We understand the
|
11
|
+
important role security plays in intellectual property, and we maintain a
|
12
|
+
secure portal at all times to ensure the safety and security of your
|
13
|
+
sensitive information.</p>
|
14
|
+
|
15
|
+
<h3>Data Storage</h3>
|
16
|
+
<p>Information is not stored in an encrypted format. It is stored on a
|
17
|
+
cloud-based database platform, provided by Amazon Web Services. Access to the
|
18
|
+
database is strictly controlled using public-key encryption and a "whitelist"
|
19
|
+
of domains that are authorized to connect. Any system attempting to make a
|
20
|
+
connection will be rejected if it is not on the list. The entries in the list
|
21
|
+
are controlled via password-protected SSL administrative interface provided
|
22
|
+
by Amazon. Physical access to the hard disk storage is limited to Amazon
|
23
|
+
personnel, and due to the cloud-based nature of the database, data may be
|
24
|
+
spread over several physical devices, making it nearly impossible to identify
|
25
|
+
the exact physical device(s) on which your data is stored.</p>
|
26
|
+
|
27
|
+
<h3>Mobile Data Storage</h3>
|
28
|
+
<p><%= @name %> is a "thin client" that stores only a session token upon
|
29
|
+
successful authentication with the web service. Data interchanged between the
|
30
|
+
web service and your mobile device is never stored locally on the device.
|
31
|
+
No passwords or other authentication or personally identifying information is
|
32
|
+
stored on the device.</p>
|
33
|
+
|
@@ -0,0 +1,278 @@
|
|
1
|
+
<% content_for :title, 'Terms of Service' %>
|
2
|
+
<h2>Terms of Service</h2>
|
3
|
+
|
4
|
+
<p><%= @name %> (“we,” “us,” “our,” etc.) owns and operates the <%= @domain %> web
|
5
|
+
site (our "Site"), on which we provide a service that enables users (“you,”
|
6
|
+
“your,” etc.) to audit their intellectual property portfolios (together with
|
7
|
+
the Site, our "Service"). Your use of our Service is subject to the terms and
|
8
|
+
conditions set forth in this End User Agreement (this “Agreement” or these
|
9
|
+
“Terms”). These Terms govern your use of the Service whether or not you are
|
10
|
+
a registered user.</p>
|
11
|
+
|
12
|
+
<p>These Terms constitute a legally binding Agreement by and between you and us.
|
13
|
+
By accessing the Service, you accept these Terms and agree to the provisions,
|
14
|
+
terms, conditions, and notices contained or referenced herein whether or not
|
15
|
+
you become a registered user. IF YOU DO NOT AGREE WITH THESE TERMS, DO NOT USE
|
16
|
+
THE SERVICE.</p>
|
17
|
+
|
18
|
+
<p>WE RESERVE THE RIGHT TO MAKE CHANGES TO THESE TERMS AT ANY TIME, WHEREOF WE
|
19
|
+
WILL PROVIDE NOTICE ON THE SITE. YOUR CONTINUED USE OF OUR SERVICE THEREAFTER
|
20
|
+
CONSTITUTES YOUR ACCEPTANCE OF SUCH CHANGES. </p>
|
21
|
+
|
22
|
+
<h2>1. USER CONDUCT</h2>
|
23
|
+
|
24
|
+
<p>You agree to use our Service responsibly, with good judgment, and in a
|
25
|
+
manner conforming at minimum to prevailing standards for internet etiquette.
|
26
|
+
For example and without limitation, while using the Service you agree not to:
|
27
|
+
(a) violate any applicable law or regulation; (b) infringe the rights of any
|
28
|
+
third party, including without limitation intellectual property, privacy, and
|
29
|
+
contractual rights; (c) use information obtained through our Service for any
|
30
|
+
unauthorized purpose; (d) interfere with or damage our Service, including
|
31
|
+
without limitation through the use of viruses, bots, Trojan horses, harmful
|
32
|
+
code, flood pings, denial of service attacks, packet or IP spoofing, forged
|
33
|
+
routing, forged electronic mail address information, means to reproduce or
|
34
|
+
circumvent the navigational structure or presentation of the Service or its
|
35
|
+
contents, or similar methods or technology; (e) use our Service to transmit,
|
36
|
+
distribute, post, or submit any unauthorized information concerning any other
|
37
|
+
person or entity, including without limitation photographs, personal contact
|
38
|
+
information, or numbers of credit, debit, or calling cards or accounts; (f)
|
39
|
+
use our Service in connection with the distribution of unsolicited commercial
|
40
|
+
email ("Spam") or advertisements; (g) stalk or harass any other user of our
|
41
|
+
Service; (h) collect any information about any other user other than as
|
42
|
+
customarily arises in the course of permitted use of our Service; (i) use our
|
43
|
+
Service for any unauthorized commercial purpose; (j) impersonate any person
|
44
|
+
or entity; (k) remove any copyright, trademark, or other proprietary right
|
45
|
+
notices or legends contained in the Service; (l) modify, adapt, sublicense,
|
46
|
+
translate, sell, reverse engineer, decipher, decompile, or otherwise
|
47
|
+
disassemble any portion of the Service or our Site or any software used on or
|
48
|
+
for the Service; or (m) assist or facilitate any third party in doing any of
|
49
|
+
the foregoing.</p>
|
50
|
+
|
51
|
+
<h3>2. YOUR INTERACTIONS WITH OTHER USERS OF THE SERVICE</h3>
|
52
|
+
|
53
|
+
<p>IN NO EVENT SHALL WE BE LIABLE FOR ANY DAMAGES WHATSOEVER, WHETHER DIRECT,
|
54
|
+
INDIRECT, GENERAL, SPECIAL, COMPENSATORY, CONSEQUENTIAL, PUNITIVE, OR
|
55
|
+
INCIDENTAL, ARISING OUT OF OR RELATING TO THE CONDUCT OF YOU OR ANYONE ELSE
|
56
|
+
IN CONNECTION WITH THE USE OF THE SERVICE, INCLUDING WITHOUT LIMITATION
|
57
|
+
BODILY INJURY, EMOTIONAL DISTRESS, AND ANY OTHER DAMAGES RESULTING FROM
|
58
|
+
COMMUNICATIONS WITH OTHER USERS OF THE SERVICE OR PERSONS YOU INTERACT WITH
|
59
|
+
THROUGH THE SERVICE.</p>
|
60
|
+
|
61
|
+
<h3>3. PRIVACY</h3>
|
62
|
+
|
63
|
+
<p>Use of the Service is also governed by our Privacy Policy at
|
64
|
+
<%= link_to "http://#{@domain}/policy/privacy", '/policy/privacy' %></p>
|
65
|
+
|
66
|
+
<h3>4. MINORS</h3>
|
67
|
+
|
68
|
+
<p>Our Service is intended for persons 18 years or older and we will not
|
69
|
+
knowingly permit anyone under the age of 18 to use our Service. By using our
|
70
|
+
Service, you represent and warrant that you are at least 18 years old and
|
71
|
+
otherwise have the right, authority and capacity to accept these Terms and
|
72
|
+
abide by all of the terms and conditions set forth herein. </p>
|
73
|
+
|
74
|
+
<h3>5. REGISTRATION</h3>
|
75
|
+
|
76
|
+
<p>You may use the Service at no cost. As an unregistered user, you may
|
77
|
+
participate in some, but not all, of the features and services available
|
78
|
+
within the Service. In order to access additional features and services, you
|
79
|
+
may be required to become a registered user of the Service.</p>
|
80
|
+
|
81
|
+
<h3>6. USER CONTENT</h3>
|
82
|
+
|
83
|
+
<p>By submitting any content to our Site, you represent and warrant to us that
|
84
|
+
you have the right to so submit such content and that our use of your content
|
85
|
+
as described herein will not infringe or violate the rights of any third
|
86
|
+
party.</p>
|
87
|
+
|
88
|
+
<p>Unless otherwise specified in any other document pertaining to specific
|
89
|
+
content, e.g., contest rules, you will continue to own all content you submit
|
90
|
+
to our Site. </p>
|
91
|
+
|
92
|
+
<h3>7. COMMERCIAL USE</h3>
|
93
|
+
|
94
|
+
<p>Our Site is for personal and commercial use.</p>
|
95
|
+
|
96
|
+
<h3>8. PROPRIETARY RIGHTS</h3>
|
97
|
+
|
98
|
+
<p>You agree that all content and materials available on our Site are protected
|
99
|
+
by our or third parties’ rights of publicity, copyright, trademarks, service
|
100
|
+
marks, patents, trade secrets, and other proprietary rights and laws. Except
|
101
|
+
for that information which is in the public domain or for which you have been
|
102
|
+
given express written permission by us, you agree not to sell, license, rent,
|
103
|
+
modify, distribute, copy, reproduce, transmit, publicly display, publicly
|
104
|
+
perform, publish, adapt, edit, or create derivative works of any materials or
|
105
|
+
content available on our Site. Notwithstanding the above, you may use the
|
106
|
+
content and materials on our Site in the course of your normal use of our
|
107
|
+
Service.</p>
|
108
|
+
|
109
|
+
<p>You agree not to use of any of our trademarks as meta tags on other web
|
110
|
+
sites. You agree not to display any of our Site in a frame (or any of our
|
111
|
+
content via in-line links) without our express written permission, which may
|
112
|
+
be requested by contacting us at [EMAIL]. You may, however, establish
|
113
|
+
ordinary links to the homepage and other sections of our Site without our
|
114
|
+
written permission.</p>
|
115
|
+
|
116
|
+
<h3>9. USERNAME AND PASSWORD</h3>
|
117
|
+
|
118
|
+
<p>You will select a username and password when completing the registration
|
119
|
+
process. You are solely responsible for maintaining the confidentiality of
|
120
|
+
your username and password, and are solely responsible for all activities
|
121
|
+
that occur under your username and password. You agree to: (a) immediately
|
122
|
+
notify us of any unauthorized use of your username and password or any other
|
123
|
+
breach of security; and (b) ensure that you log off from your account at the
|
124
|
+
end of each session. We will not be liable for any loss or damage arising
|
125
|
+
from your failure to comply with this paragraph.</p>
|
126
|
+
|
127
|
+
<h3>10. TERMINATION</h3>
|
128
|
+
|
129
|
+
<p>You agree that we, in our sole discretion, may terminate your access to our
|
130
|
+
Service for any reason or no reason, including without limitation your breach
|
131
|
+
of these Terms. You agree that any termination of your access to our Service
|
132
|
+
may be effected without prior notice, and you acknowledge and agree that we
|
133
|
+
may immediately deactivate or delete any of your accounts and all related
|
134
|
+
information and files in such accounts, and bar any further access to such
|
135
|
+
files or our Service. You agree that we will not be liable to you or any
|
136
|
+
third party for any loss or damages of any kind resulting from any
|
137
|
+
termination of your access to our Service. To voluntarily terminate your
|
138
|
+
access to the Service at any time via our Site, simply follow the directions
|
139
|
+
provided on the Site. If for some reason you cannot log-in, you may terminate
|
140
|
+
your account by sending us written or email notice of termination. Written
|
141
|
+
notice should be sent to [ADDRESS].</p>
|
142
|
+
|
143
|
+
<h3>11. DISCONTINUANCE OF SERVICE</h3>
|
144
|
+
<p>We reserve the right at any time to modify or discontinue, temporarily or
|
145
|
+
permanently, any portion of our Service with or without prior notice. You
|
146
|
+
agree that we will not be liable to you or to any third party for any
|
147
|
+
modification or discontinuance of our Service.</p>
|
148
|
+
|
149
|
+
<h3>12. CUSTOMER SERVICE</h3>
|
150
|
+
|
151
|
+
<p>We may provide assistance and guidance through our representatives. When
|
152
|
+
communicating with our representatives, you may not to be abusive, obscene,
|
153
|
+
threatening, harassing, or racially offensive, or otherwise behave
|
154
|
+
inappropriately. If we feel that your behavior towards any of our
|
155
|
+
representatives is at any time threatening or offensive, we reserve the right
|
156
|
+
to immediately terminate your access to our Service.</p>
|
157
|
+
|
158
|
+
<h3>13. BLOCKING OF IP ADDRESSES</h3>
|
159
|
+
|
160
|
+
<p>In order to protect the integrity of the Service, we reserve the right at
|
161
|
+
any time in our sole discretion to block users on certain IP addresses from
|
162
|
+
accessing our Site.</p>
|
163
|
+
|
164
|
+
<h3>14. REPRESENTATIONS AND WARRANTIES</h3>
|
165
|
+
|
166
|
+
<p>You hereby represent and warrant to us that: (a) that you have the full
|
167
|
+
power and authority to enter into and perform under these Terms; and (b) your
|
168
|
+
use our Service will not violate any of these Terms.</p>
|
169
|
+
|
170
|
+
<h3>15. DISCLAIMER OF WARRANTIES</h3>
|
171
|
+
|
172
|
+
<p>YOU AGREE THAT:
|
173
|
+
<ul>
|
174
|
+
<li>A. IF YOU USE OUR SERVICE, YOU DO SO AT YOUR OWN AND SOLE RISK. OUR SERVICE
|
175
|
+
IS PROVIDED ON AN "AS IS" AND "AS AVAILABLE" BASIS. WE EXPRESSLY DISCLAIM ALL
|
176
|
+
WARRANTIES OF EVERY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING WITHOUT
|
177
|
+
LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
178
|
+
PURPOSE, AND NON-INFRINGEMENT.</li>
|
179
|
+
<li>B. WE DO NOT WARRANT THAT: (A) OUR SERVICE WILL MEET YOUR REQUIREMENTS; (B)
|
180
|
+
OUR SERVICE WILL BE UNINTERRUPTED, TIMELY, SECURE, OR ERROR-FREE; (C) ANY
|
181
|
+
INFORMATION THAT YOU MAY OBTAIN ON OUR SERVICE WILL BE ACCURATE OR RELIABLE;
|
182
|
+
(D) THE QUALITY OF ANY PRODUCTS, SERVICES, INFORMATION OR OTHER MATERIAL
|
183
|
+
PURCHASED OR OBTAINED BY YOU THROUGH OUR SERVICE WILL MEET YOUR EXPECTATIONS;
|
184
|
+
OR (E) ANY ERRORS IN ANY DATA OR SOFTWARE WILL BE CORRECTED. WE ARE NOT
|
185
|
+
RESPONSIBLE FOR ANY PROBLEMS OR TECHNICAL MALFUNCTION OF ANY TELEPHONE NETASSET
|
186
|
+
OR LINES, COMPUTER ONLINE SYSTEMS, SERVERS, PROVIDERS, COMPUTER EQUIPMENT,
|
187
|
+
SOFTWARE, FAILURE OF COMMUNICATION ON ACCOUNT OF TECHNICAL PROBLEMS, OR
|
188
|
+
TRAFFIC CONGESTION ON THE INTERNET OR AT ANY WEBSITE OR COMBINATION THEREOF,
|
189
|
+
INCLUDING INJURY OR DAMAGE TO USERS OR TO ANY OTHER PERSON'S COMPUTER RELATED
|
190
|
+
TO OR RESULTING FROM PARTICIPATING OR DOWNLOADING MATERIALS IN CONNECTION WITH
|
191
|
+
THE WEB OR IN CONNECTION WITH THE SERVICE. UNDER NO CIRCUMSTANCES WILL WE OR
|
192
|
+
ANY OF OUR AFFILIATES, ADVERTISERS, PROMOTERS, OR DISTRIBUTION PARTNERS BE
|
193
|
+
RESPONSIBLE FOR ANY LOSS OR DAMAGE, INCLUDING PERSONAL INJURY OR DEATH,
|
194
|
+
RESULTING FROM ANYONE'S USE OF THE SITE OR THE SERVICE.</li>
|
195
|
+
<li>C. NO DATA, INFORMATION OR ADVICE OBTAINED BY YOU IN ORAL OR WRITTEN FORM FROM
|
196
|
+
US OR THROUGH OR FROM OUR SERVICE WILL CREATE ANY WARRANTY NOT EXPRESSLY
|
197
|
+
STATED IN THESE TERMS.</li>
|
198
|
+
</ul>
|
199
|
+
</p>
|
200
|
+
|
201
|
+
<h3>16. LIMITS ON LIABILITY</h3>
|
202
|
+
|
203
|
+
<ul>
|
204
|
+
<li>A. YOU AGREE THAT WE WILL NOT BE LIABLE FOR ANY DAMAGES WHATSOEVER,
|
205
|
+
INCLUDING DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, PUNITIVE
|
206
|
+
OR EXEMPLARY DAMAGES (EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF
|
207
|
+
SUCH DAMAGES), ARISING FROM, RELATING TO, OR CONNECTED WITH: (A) THE USE
|
208
|
+
OR INABILITY TO USE OUR SERVICE, (B) THE COST OF REPLACEMENT OF ANY
|
209
|
+
INFORMATION STORED OR MANAGED USING OUR SERVICE, (C) UNAUTHORIZED ACCESS TO
|
210
|
+
OR ALTERATION OF YOUR CONTENT, (D) STATEMENTS, CONDUCT, OR OMISSIONS OF ANY
|
211
|
+
SERVICE PROVIDERS OR OTHER THIRD PARTY ON OUR SERVICE, OR (E) ANY OTHER
|
212
|
+
MATTER ARISING FROM, RELATING TO, OR CONNECTED WITH OUR SERVICE OR THESE
|
213
|
+
TERMS.</li>
|
214
|
+
|
215
|
+
<li>B. WE WILL NOT BE LIABLE FOR ANY FAILURE OR DELAY IN PERFORMING UNDER
|
216
|
+
THESE TERMS WHERE SUCH FAILURE OR DELAY IS DUE TO CAUSES BEYOND OUR
|
217
|
+
REASONABLE CONTROL, INCLUDING NATURAL CATASTROPHES, GOVERNMENTAL ACTS OR
|
218
|
+
OMISSIONS, LAWS OR REGULATIONS, TERRORISM, LABOR STRIKES OR DIFFICULTIES,
|
219
|
+
COMMUNICATIONS SYSTEMS BREAKDOWNS, HARDWARE OR SOFTWARE FAILURES,
|
220
|
+
TRANSPORTATION STOPPAGES OR SLOWDOWNS, OR THE INABILITY TO PROCURE SUPPLIES
|
221
|
+
OR MATERIALS.</li>
|
222
|
+
|
223
|
+
<li>C. IN NO EVENT WILL OUR AGGREGATE LIABILITY TO YOU OR ANY THIRD PARTY IN ANY
|
224
|
+
MATTER ARISING FROM, RELATING TO OR CONNECTED WITH OUR SERVICE OR THESE TERMS
|
225
|
+
EXCEED THE SUM OF ONE DOLLAR ($1.00).</li>
|
226
|
+
|
227
|
+
<li>D. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF CERTAIN WARRANTIES OR THE
|
228
|
+
LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES.
|
229
|
+
ACCORDINGLY, SOME OF THE LIMITATIONS HEREIN MAY NOT APPLY TO YOU.</li>
|
230
|
+
</ul>
|
231
|
+
|
232
|
+
<h3>17. INDEMNITY</h3>
|
233
|
+
|
234
|
+
<p>You agree to defend, indemnify, and hold harmless us and our subsidiaries,
|
235
|
+
parents, affiliates, and each of our and their directors, officers,
|
236
|
+
managers, members, partners agents, and employees from and against each and
|
237
|
+
every claim, demand, action, damage, loss, cost or expense, including without
|
238
|
+
limitation reasonable attorneys' fees, incurred in connection with any suit
|
239
|
+
or proceeding brought against us arising out of your use of our Service or
|
240
|
+
alleging facts or circumstances that could constitute a breach by you of any
|
241
|
+
provision of these Terms or any of the representations and warranties set
|
242
|
+
forth above. If you are obligated to indemnify us, we will have the right in
|
243
|
+
our sole and unfettered discretion to control any action or proceeding and
|
244
|
+
determine whether we wish to settle it, and if so, on what terms.</p>
|
245
|
+
|
246
|
+
<h3>18. COPYRIGHT POLICY</h3>
|
247
|
+
|
248
|
+
<p>You may not post, distribute, or reproduce in any way any copyrighted
|
249
|
+
material, trademarks, or other proprietary information without obtaining the
|
250
|
+
prior written consent of the owner of such proprietary rights. Without
|
251
|
+
limiting the foregoing, if you believe that your work has been copied and
|
252
|
+
posted on our Site in a way that constitutes copyright infringement, send us
|
253
|
+
your notice of infringement at [ADDRESS].</p>
|
254
|
+
|
255
|
+
<h3>19. USER DISPUTES</h3>
|
256
|
+
|
257
|
+
<p>You are solely responsible for your interactions with other users of our
|
258
|
+
Site. We reserve the right, but have no obligation, to monitor interactions
|
259
|
+
between you and other users.</p>
|
260
|
+
|
261
|
+
<h3>20. DISPUTE RESOLUTION</h3>
|
262
|
+
|
263
|
+
<p>All disputes arising out of or relating to these Terms or your use of our
|
264
|
+
Service will be exclusively resolved in state or federal court located in
|
265
|
+
Tampa, Florida. Each party hereby irrevocably submits to the personal
|
266
|
+
jurisdiction of such courts.</p>
|
267
|
+
|
268
|
+
<h3>21. MISCELLANEOUS</h3>
|
269
|
+
|
270
|
+
<p>These Terms shall be interpreted in accordance with the laws of the State of
|
271
|
+
Florida without reference to conflict of law principles. These Terms contain
|
272
|
+
the entire understanding of the parties regarding their subject matter, and
|
273
|
+
supersede all prior and contemporaneous agreements and understandings between
|
274
|
+
the parties regarding their subject matter. No failure or delay by a party in
|
275
|
+
exercising any right, power or privilege under these Terms shall operate as a
|
276
|
+
waiver thereof. The invalidity or unenforceability of any of these Terms
|
277
|
+
shall not affect the validity or enforceability of any other of these Terms,
|
278
|
+
all of which shall remain in full force and effect.</p>
|