[dw-free] convert htdocs/legal to TT
[commit: http://hg.dwscoalition.org/dw-free/rev/f70f277d3918]
http://bugs.dwscoalition.org/show_bug.cgi?id=3030
Move pages under /legal/ to use Template Toolkit rather than BML. No change
to terms. Also adds a couple of constants (domain/email addresses) for use
in views.
Patch by
kareila.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=3030
Move pages under /legal/ to use Template Toolkit rather than BML. No change
to terms. Also adds a couple of constants (domain/email addresses) for use
in views.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- cgi-bin/DW/Controller/Legal.pm
- cgi-bin/DW/Template.pm
- htdocs/legal/index.bml
- htdocs/legal/index.bml.text
- htdocs/legal/privacy.bml
- htdocs/legal/tos.bml
- views/legal/index.tt
- views/legal/index.tt.text
- views/legal/privacy.tt
- views/legal/tos.tt
-------------------------------------------------------------------------------- diff -r bc56d73ac692 -r f70f277d3918 cgi-bin/DW/Controller/Legal.pm --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cgi-bin/DW/Controller/Legal.pm Mon Oct 11 18:57:46 2010 +0800 @@ -0,0 +1,45 @@ +#!/usr/bin/perl +# +# DW::Controller::Legal +# +# Controller for the /legal pages. +# +# Authors: +# Jen Griffin <kareila@livejournal.com> +# +# Copyright (c) 2010 by Dreamwidth Studios, LLC. +# +# This program is free software; you may redistribute it and/or modify it under +# the same terms as Perl itself. For a copy of the license, please reference +# 'perldoc perlartistic' or 'perldoc perlgpl'. +# + +package DW::Controller::Legal; + +use strict; +use warnings; + +use DW::Routing; +use DW::Template; +use LJ::Hooks; + +my @pages = qw( tos privacy ); +LJ::Hooks::run_hook( 'modify_legal_index', \@pages ); # add nonfree pages +my $args = { index => [] }; + +foreach my $page ( @pages ) { + # register the page view + DW::Routing->register_static( "/legal/$page", "legal/$page.tt", app => 1 ); + # add the page to the index list + push @{ $args->{index} }, { page => $page, header => ".$page-header", text => ".$page" } +} + +# register the index view +DW::Routing->register_string( '/legal/', \&index_handler, app => 1 ); + +sub index_handler { + return DW::Template->render_template( 'legal/index.tt', $args ); +} + + +1; diff -r bc56d73ac692 -r f70f277d3918 cgi-bin/DW/Template.pm --- a/cgi-bin/DW/Template.pm Mon Oct 11 17:02:26 2010 +0800 +++ b/cgi-bin/DW/Template.pm Mon Oct 11 18:57:46 2010 +0800 @@ -46,12 +46,24 @@ my $roots_constants = Template::Namespac ssl => $LJ::SSLROOT, }); +my $domain_constants = Template::Namespace::Constants->new({ + site => $LJ::DOMAIN, + web => $LJ::DOMAIN_WEB, +}); + +my $email_constants = Template::Namespace::Constants->new({ + coppa => $LJ::COPPA_EMAIL, + privacy => $LJ::PRIVACY_EMAIL, +}); + # precreating this my $view_engine = Template->new({ INCLUDE_PATH => "$LJ::HOME/views/", NAMESPACE => { site => $site_constants, roots => $roots_constants, + domain => $domain_constants, + email => $email_constants, help => Template::Namespace::Constants->new( \%LJ::HELPURL ), }, CACHE_SIZE => $LJ::TEMPLATE_CACHE_SIZE, # this can be undef, and that means cache everything. diff -r bc56d73ac692 -r f70f277d3918 htdocs/legal/index.bml --- a/htdocs/legal/index.bml Mon Oct 11 17:02:26 2010 +0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,49 +0,0 @@ -<?page - -# -# legal/index.bml -# -# A basic index for the /legal directory. -# -# Authors: -# Denise Paolucci <denise@dreamwidth.org> -# -# Copyright (c) 2009 by Dreamwidth Studios, LLC. -# -# This program is free software; you may redistribute it and/or modify it under -# the same terms as Perl itself. For a copy of the license, please reference -# 'perldoc perlartistic' or 'perldoc perlgpl'. -# - -body<= -<?_code -{ - use strict; - use vars qw/ %GET %POST $title $windowtitle @errors @warnings /; - - # translated/custom page title can go here - $title = BML::ml( '.title', { sitename => $LJ::SITENAME } ); - $windowtitle = BML::ml( '.title', { sitename => $LJ::SITENAME } ); - - my $ret = <<PAGE; - -<div class='itemhead'><a href="tos"><?_ml .tos-header _ml?></a></div> -<div class='itemdef'><?_ml .tos _ml?></div> -<div class='itemhead'><a href="privacy"><?_ml .privacy-header _ml?></a></div> -<div class='itemdef'><?_ml .privacy _ml?></div> - -PAGE - - return $ret; -} -_code?> -<=body -title=><?_code return $title; _code?> -windowtitle=><?_code return $windowtitle; _code?> -head<= -<style type='text/css'> -.itemhead {font-size: bigger; font-weight: bold;} -.itemdef {margin-left: 2em; margin-bottom: 15px;} -</style> -<=head -page?> diff -r bc56d73ac692 -r f70f277d3918 htdocs/legal/index.bml.text --- a/htdocs/legal/index.bml.text Mon Oct 11 17:02:26 2010 +0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,20 +0,0 @@ -;; -*- coding: utf-8 -*- - -.title=[[sitename]] Legal Documents - -.tos-header=Terms of Service - -.tos<< -The Terms of Service explain our usage policies, including instructions -on how to report abuse of the site. -. - -.privacy-header=Privacy Policy - -.privacy<< -The Privacy Policy explains what information we collect from our users -and how we use that information. It also includes our COPPA (Children's -Online Privacy Protection Act) statement. -. - - diff -r bc56d73ac692 -r f70f277d3918 htdocs/legal/privacy.bml --- a/htdocs/legal/privacy.bml Mon Oct 11 17:02:26 2010 +0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,190 +0,0 @@ -<?page -body<= -<?_code -{ - # Privacy Policy - # - # Authors: - # Janine Smith <janine@netrophic.com> - # - # Copyright (c) 2009 by Dreamwidth Studios, LLC. - # - # This program is free software; you may redistribute it and/or modify it under - # the same terms as Perl itself. For a copy of the license, please reference - # 'perldoc perlartistic' or 'perldoc perlgpl'. - # - - use strict; - use vars qw(%GET %POST $title $headextra @errors @warnings); - - $title = "Privacy Policy"; - - my $ret; - - $ret .= <<PAGE; -<p>We hate legalese, so we've tried to make ours readable. If you've got any questions, feel free to <a href='$LJ::SITEROOT/support/submit'>ask us</a>, and we'll do our best to answer.</p> - -<p>This privacy statement ("Privacy Policy") covers all websites (such as $LJ::DOMAIN_WEB) owned and operated by $LJ::SITECOMPANY ("we", "us", "our") and all associated services.</p> - -<p>We use information you share with us for our internal business purposes. We do not sell your information. This notice tells you what information we collect, how we use it, and steps we take to protect and secure it.</p> - - -<h2>Information we automatically collect</h2> - -<p style='margin-top: 0.5em;'><strong>Non-personally-identifying</strong></p> - -<p>Like most website operators, we collect non-personally-identifying information such as browser type, language preference, referring site, and the date and time of each visitor request.</p> - -<p>We collect this to understand how our visitors use our service, and use it to make decisions about how to change and adapt the service.</p> - -<p>From time to time, we may release non-personally-identifying information in aggregate form (for instance, by publishing trends in site usage) to explain our reasoning in making decisions. We will not release individual information, only aggregate information.</p> - - -<p><strong>Personally-identifying</strong></p> - -<p>We automatically collect personally-identifying information, such as IP address, provided by your browser and your computer.</p> - -<p>We collect this information for several purposes:</p> - -<ul class='bullet-list'><li>To diagnose and repair network issues with your use of the site;</li> -<li>To estimate the number of users accessing the service from specific geographic regions;</li> -<li>To help prevent fraud and abuse.</li></ul> - -<p>An individual journal owner may enable IP address logging for comments made to their journal or community. If this option is enabled, we will disclose your IP address to the owner of that journal or community if you make a comment to that journal. We will tell you at the time of commenting if this option is enabled.</p> - - -<h2>Information you are required to provide to us on registration</h2> - -<p>In order to register for the service, you must give us your email address. We will use your email address to send confirmation of certain actions, such as when you change your password. We will contact you when it's necessary to complete a transaction that you've initiated, or if there's a critical or administrative issue affecting your use of the service.</p> - -<p>Once you have created your account, you can choose to subscribe to certain events and have notifications of those events sent to you via email. You will be able to change your mind and opt out of receiving notifications via email at any time.</p> - -<p>When you register, you must also give us your date of birth. This is to make sure we aren't accidentally collecting information from children, which is prohibited by United States law. We save this information so that we can prove we're complying with that law. Once you've created your account, you can specify a birthdate to make public, which does not have to be your actual date of birth.</p> - -<p>We will never sell or provide your email address or your date of birth to any third party, with exceptions as set forth below. </p> - - -<h2>Optional information you provide to us</h2> - -<p>As you use the service, you have the option to provide more personal information, through your profile, your entries, or comments you make. Providing this information is strictly optional.</p> - -<p>We will show this information to others viewing the site, in accordance with the privacy options you've selected for the information. We may also use this information, in aggregate, to make decisions about how to change and adapt the service.</p> - -<p>From time to time, we may release information in aggregate form (for instance, by publishing trends in site usage) to explain our reasoning in making decisions. We will not release individual information, only aggregate information.</p> - -<p>We will not sell or provide this information to any third party, with exceptions as set forth below.</p> - -<p>By choosing to make any personally-identifying information public, you recognize and accept that other people, not affiliated with us, may use this data to contact you. We can't be responsible for the use of any information you post publicly.</p> - -<p>From time to time, we may allow you to provide us with your login credentials for a site that is not owned and operated by us in order to allow you to integrate data from that external service to your $LJ::SITENAMESHORT account. Examples of this include the journal import feature and the entry crosspost feature. Providing us this information is completely optional. Your login credentials are only used for the purposes of these features, and are not used for any other purpose.</p> - -<h2>Account contents</h2> - -<p>You may optionally post content to your account with varying security levels. To the best of our ability, and limited only by the possibility of bugs or technical difficulties, we will honor the security levels you choose for your content and display that content only to those whom you have authorized to see it.</p> - -<p>While maintaining the site, $LJ::SITENAMESHORT staff may need to view the contents of your account, including information for which you have chosen a restrictive security level. Circumstances in which this is necessary include, but are not limited to: troubleshooting and diagnosing technical problems, investigating possible Terms of Service violations, and legal compliance issues.</p> - -<p>$LJ::SITENAMESHORT staff only use the ability to override your chosen security levels during the course of these investigations. At no time is your secured content disclosed to any third party, except when required by law. Any use of this ability is logged and regularly audited.</p> - -<h2>Financial information and transactions</h2> - -<p>You can engage in financial transactions with $LJ::SITENAMESHORT to purchase enhancements for your account. These transactions are optional. If you choose to purchase enhanced services, you will be asked to provide financial information to complete the transaction. There are several payment methods available, each of which requires disclosure of certain personal and financial information. The specifics of these methods of payment are as follows:</p> - -<p><b>Credit cards</b>: If you pay by credit card, we need you to provide your credit card number, your full name as it appears on the card, your address as it appears on the card statment, and the CVN or Card Verification Number. This information is required so we can authorize and charge your credit card. Your financial information is protected by industry-standard encryption methods. It is never stored on our $LJ::SITENAMESHORT's servers: we pass it immediately along to our processor for the sole purpose of completing the authorized transaction.</p> - -<p><b>Checks</b>: If you pay by check, we need you to provide us with a check printed with your bank's routing code and your account number, your name, and your address. This information is required so our bank can transfer funds from your account to ours. We use this information only for the purpose of the single transaction represented by the check, however, our bank retains, on their servers, permanent electronic scans of all checks deposited into our account.</p> - -<p><b>Money orders</b>: If you pay by money order, we need you to provide us with a money order or international money order (as appropriate depending on the country in which you're currently living). We do not require the disclosure of any personal information to use a money order as payment beyond a signature on the face of the money order. However, the location that issues your money order may require you to write additional personal information on the money order. Our bank retains, on their servers, permanent electronic scans of all money orders deposited into our account.</p> - -<p>In all cases, $LJ::SITENAMESHORT collects this personal and financial information only as necessary or appropriate for the completion of the single requested transaction. Any additional personally-identifying but non-financial information you disclose during these transactions will be governed by the "Disclosure of personally-identifying information" provisions below.</p> - - -<h2>Disclosure of personally-identifying information</h2> - -<p>We disclose personally-identifying information only to those of our employees and contractors who (i) need to know that information in order to operate the service and (ii) have agreed not to disclose it to others. Some of these employees and contractors may be located outside your home country. By using this website, you consent to the transfer of your information to them.</p> - -<p>If all of our assets were transferred or acquired, your information would be one of the assets that is transferred or acquired by a third party.</p> - -<p>We may disclose potentially personally-identifying and personally-identifying information when that release is required by law or by court order, or when we believe in good faith that disclosure is reasonably necessary to protect the safety or rights of us, third parties, or the public at large.</p> - -<h2>Special rules regarding children</h2> - -<p>The Children's Online Privacy Protection Act ('COPPA') requires that we inform parents on how we collect and disclose the personal information of children under the age of 13.</p> - -<p>We do not permit children under the age of 13 to use our service. To prevent this, we collect date of birth at the time of account creation. If your child under the age of 13 has mis-represented their age at account creation, please contact us at $LJ::COPPA_EMAIL. After confirming your identity, we will remove the account.</p> - - -<h2>Cookies</h2> - -<p>A cookie is a string of information that a website stores on a visitor's computer, and that the visitor's browser provides to the website each time the visitor returns. We use cookies to help us identify and track visitors, their usage of the website, and their website access preferences. We also use cookies to govern logging into your account.</p> - -<p>Visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using the site, with the drawback that certain features of the site may not function properly without the aid of cookies.</p> - - - -<h2>Confidentiality and security</h2> - -<p>No data transmisson over the Internet can ever be guaranteed to be 100% secure. You use this service at your own risk. However, we do take steps to ensure security on our systems.</p> - -<p>Your account information is password-protected. We recommend that you choose a strong and secure password. We use industry-standard encryption to safeguard any transmission between your computer and ours.</p> - -<p>If we learn of a system security breach, we will notify you electronically so you can take appropriate steps to protect yourself. Depending on where you live, you may have a legal right to receive notice of a security breach in writing. To receive free written notice, you should contact us at $LJ::PRIVACY_EMAIL.</p> - - -<h2>Deleting your information</h2> - -<p>You can change or delete any optional information that you've provided us at any time. If you change or delete any optional information you've provided, the change will take place immediately.</p> - -<p>You can also choose to delete your account entirely. If you choose to delete your account entirely, we will retain any personally-identifying information for a limited amount of time before removing it entirely. This is to allow you to undelete your account and continue using the service if you so choose. After this time, all your personally-identifying information will be removed entirely from our service, with the exception of any records we must retain to document compliance with regulatory requirements.</p> - -<p>As part of the day to day operation of $LJ::SITENAME, we will make regular copies of the data contained in the databases for backup purposes. These backups can potentially contain deleted data for several weeks or months. These backups will also be governed by the rules for disclosure of personally-identifying information.</p> - - -<h2>Outside Vendors</h2> - -<strong>Site Features</strong><br /> - -<p>We reserve the right to contract with third-party vendors to provide site features we are unable to provide ourselves. We will only share personal information with third-party vendors to the extent that is necessary for such affiliates to provide these site features. We require our third-party vendors to provide the same level of privacy protection that we do, and they do not have the right to share or use personal information for any purpose other than for an authorized transaction. Some of our third-party vendors may be located outside of your home country. By using this website, you consent to the transfer of such information to them.</p> - -<p>We will clearly identify which site features are provided by third-party vendors, and provide you a way to opt out of using those site features.</p> - -<p>We provide ways for you to optionally integrate third party applications or services into your account. If you choose to do so, any data you provide to that third party is governed by the privacy policy of the person creating or hosting that application or service.</p> - - -<strong>Business Vendors</strong><br /> - -<p>From time to time, we may contract with outside vendors to provide business services that will assist us in administering and maintaining the $LJ::SITENAMESHORT service. We will list all of our business vendors in this privacy policy, as well as providing links to their privacy policies and information on how to opt out of your information being included in those services.</p> - -<p>Our current business vendors are:</p> - -<ul class='bullet-list'><li><a href='http://www.google.com/services/'>Google Business Services</a>: We use Google Business Services for their Google Analytics service. For information on how Google Business Services may use your information, see <a href='http://www.google.com/intl/en_ALL/privacy.html'>Google's Privacy Center</a>. Google Analytics collects aggregate data on site usage, such as browser type and the navigational paths our users use, which helps us make decisions about how to improve the site. Some users may also have added Google Analytics code to their journals. To opt out of your site use being included in our Google Analytics report, you can use a browser plugin to block the JavaScript being served by google-analytics.com. </li> -</ul> - - -<h2>Changes</h2> - -<p>We may change our privacy policy from time to time. If these changes are minor, we will post them to this page. If the changes are major, we will post them to this page and notify users through our $LJ::SITENAMESHORT News journal and through messages sent to your account's $LJ::SITENAMESHORT Inbox. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.</p> - - -<h2>Contacting us</h2> - -<p>If you have questions about this policy, you can contact us at $LJ::PRIVACY_EMAIL.</p> - - - -<h2>Creative Commons</h2> - -<p>This privacy policy is based on one developed by Automattic (http://automattic.com/privacy/) and is licensed under a Creative Commons Attribution-ShareAlike 2.5 License.</p> - -<p class='note'>Last revised June 6, 2010</p> -PAGE - - return $ret; -} -_code?> -<=body -title=><?_code return $title; _code?> -head<= -<?_code return $headextra; _code?> -<=head -page?> diff -r bc56d73ac692 -r f70f277d3918 htdocs/legal/tos.bml --- a/htdocs/legal/tos.bml Mon Oct 11 17:02:26 2010 +0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,411 +0,0 @@ -<?page -body<= -<?_code -{ - # Terms of Service - # - # Authors: - # Janine Smith <janine@netrophic.com> - # - # Copyright (c) 2009 by Dreamwidth Studios, LLC. - # - # This program is free software; you may redistribute it and/or modify it under - # the same terms as Perl itself. For a copy of the license, please reference - # 'perldoc perlartistic' or 'perldoc perlgpl'. - # - - use strict; - use vars qw(%GET %POST $title $headextra @errors @warnings); - - $title = "Terms of Service"; - - my $ret; - - $ret .= <<PAGE; -<p>We hate legalese, so we've tried to make ours readable. If you've got -any questions, feel free to <a href='$LJ::SITEROOT/support/submit'>ask us</a>, and we'll do our best to answer.</p> - -<h2>Terms of Service</h2> - -<p>$LJ::SITECOMPANY ("we", "us", "our", "$LJ::SITENAMESHORT") present the -following terms and conditions, which govern your use of the $LJ::SITENAMESHORT -site (Website), and all content, services and products available at or -through the Website, including but not limited to -$LJ::SITEROOT. </p> - -<p>The Website is offered subject to your acceptance, without -modification, of all of the terms and conditions contained within, along with all -other operating rules, policies (including, without limitation, -${LJ::SITENAMESHORT}'s <a href="$LJ::SITEROOT/legal/privacy">Privacy -Policy</a>) and procedures that may be published from time to time on -this Website by us (collectively, the Agreement).</p> - -<p>Please read this Agreement carefully before accessing or using the -Website. By accessing or using any part of the Website, you agree that you are bound by the terms and conditions of this Agreement. If you do -not agree to all the terms and conditions of this Agreement, then you -may not access the Website or use any services. If these terms and -conditions are considered an offer by $LJ::SITENAME, acceptance is -expressly limited to these terms. The Website is available only to -individuals who are at least 13 years old.</p> - -<p>If you operate an account, comment on an account, post material to -the Website, post links on the Website, or otherwise make (or allow any -third party to make) material available by means of the Website (any -such material, also known as "Content"), you are entirely responsible for that Content and any harm that may result from it. That is the case -regardless of whether the Content in question constitutes text, -graphics, an audio file, a video file, or computer software.</p> - - -<h2>I. Your Account</h2> - -<p>If you create an account on the Website, you are responsible for -maintaining the security of your account. You are responsible for all -activities that occur under the account and any other actions taken in -connection with the account. You must take reasonable steps to guard the -security of your account. We will not be liable for any acts or -omissions resulting from a breach of security, including any damages of -any kind incurred as a result of such acts or omissions.</p> - - -<h2>II. Account Structure</h2> - -<p>$LJ::SITENAME currently has a tiered account structure.</p> - -<ul><li><em>Free Accounts</em> are available free of charge. To create a -free account, you will need an invitation ("invite code") from an -existing $LJ::SITENAME user. Free accounts can access basic site -functions, but do not receive access to all extended site features.</li> - -<li><em>Paid Accounts</em> are available for term-based fee and receive -access to all extended site features.</li> - -<li><em>Premium Paid Accounts</em> are available for term-based fee and -receive access to all extended site features, at higher limits (for those -features that have limits) than those given to paid accounts.</li> - -<li><em>Seed Accounts</em> are reserved for those who have contributed -significantly to the $LJ::SITENAME project, at our discretion. They -receive all features available to premium paid accounts, at those -limits, for as long as $LJ::SITENAME continues to operate, without need -for future payment.</li></ul> - -<p>Payments to $LJ::SITENAME, for account services or for any other -purpose, are refundable or transferable solely at ${LJ::SITENAMESHORT}'s -discretion.</p> - -<p>By using this Service, you agree to this account structure, and to -${LJ::SITENAMESHORT}'s right to change, modify, or discontinue any type -of account or the features available to it at any time.</p> - -<h2>III. Privacy Policy</h2> - -<p>Your use of the Website is governed by the Privacy Policy, currently -located at $LJ::SITEROOT/legal/privacy. </p> - - -<h2>IV. Indemnity</h2> - -<p>You agree to indemnify and hold harmless $LJ::SITECOMPANY, its -contractors, its licensors, and their respective directors, officers, -employees and agents from and against any and all claims and expenses, -including attorneys' fees, arising out of your use of the Website, -including but not limited to out of your violation of this Agreement.</p> - - -<h2>V. Termination</h2> - -<p>We may terminate your access to all or any part of the Website at any -time, at our sole discretion, if we believe that you have violated this -Agreement. You agree that any termination of your access to the Website -may involve removing or discarding any content you have provided. We -may, at our sole discretion, discontinue providing the Website at any -time, with or without notice. </p> - -<p>If you wish to terminate this Agreement, you may delete your account -and cease using the Website. You agree that, upon deletion of your -account, we may, but are not required to, remove any content you have -provided, at any time past the deletion of your account.</p> - -<p>Paid accounts that are terminated for violations of this Agreement will -only be refunded at our discretion, and only if such termination should -come under our established criteria for issuing refunds.</p> - -<p>All provisions of this Agreement which by their nature should survive -termination shall survive termination, including, without limitation, -ownership provisions, warranty disclaimers, indemnity and limitations of -liability. </p> - - -<h2>VI. License to Reproduce Content</h2> - -<p>By submitting Content to us for inclusion on the Website, you grant -us a world-wide, royalty-free, and non-exclusive license to reproduce, -modify, adapt and publish the Content, solely for the purpose of -displaying, distributing and promoting the contents of your account, -including through downloadable clients and external feeds. </p> - -<p>If you delete Content, we will use reasonable efforts to remove it -from the Website, but you acknowledge that caching or references to the -Content may not be made immediately unavailable.</p> - - -<h2>VII. Account Content</h2> - -<p>You agree to the following provisions for posting Content to the -Website:</p> - -<p>1. We claim no ownership or control over any Content that you post to the -Website. You retain any intellectual property rights to the Content you -post, in accordance with applicable law. By posting Content, you -represent that you have the rights to reproduce that Content (and the right to allow us -to serve such Content) without violation of the rights of any third -party. You agree that you will bear any liability resulting from the -posting of any Content that you do not have the rights to post.</p> - -<p>2. All Content posted to the Website in any way is the responsibility -of the owner. Within the confines of international and local law, we -will generally not place a restriction on the type or appropriateness of -any Content. If Content is deemed illegal by any law having jurisdiction -over you, you agree that we may submit any necessary information to the -proper authorities.</p> - -<p>3. We do not pre-screen Content. However, you acknowledge that we -have the right (but not the obligation), in our sole discretion, to -remove or refuse to remove any Content from the service. You also agree -that we may, without limitation, take any steps necessary to remove -Content from the site search engine or member directory, at our sole -discretion.</p> - -<p>4. If any Content you have submitted is reported to us as violating -this Agreement, you agree that we may call upon you to change, modify, -or remove that Content, within a reasonable amount of time, as defined by -us. If you do not follow this directive, we may terminate your account. -</p> - - - -<h2>VIII. Content Posted on Other Websites</h2> - -<p>We have not reviewed, and cannot review, all of the material, -including computer software, made available through the websites and -webpages to which we, any user, or any provider of Content links, or -that link to us. We do not have any control over those websites and -webpages, and are not responsible for their contents or their use. By -linking to an external website or webpage, we do not represent or imply -that we endorse such website or webpage. You are responsible for taking -precautions as necessary to protect yourself and your computer systems -from viruses, worms, Trojan horses, and other harmful or destructive -content. We disclaim any responsibility for any harm resulting from your -use of external websites and webpages, whether that link is provided by -us or by any provider of Content on the Website.</p> - - - -<h2>IX. No Resale of Services</h2> - -<p>You agree not to reproduce, duplicate, copy, sell, resell, or exploit -any portion of the Website, use of the Website, or access to the -Website.</p> - - -<h2>X. Exposure to Content</h2> - -<p>You agree that by using the service, you may be exposed to Content -you find offensive or objectionable. If such Content is reported to us, -it will be our sole discretion as to what action, if any, should be -taken. </p> - - -<h2>XI. Member Conduct</h2> - -<p>You agree that you will not use the Website to:</p> - -<p>1. Upload, post, or otherwise transmit any Content that is harmful, threatening, abusive, hateful, invasive to the privacy and publicity rights of any person, or that violates any applicable local, state, national, or international law, including any regulation having the force of law; - -<p>2. Upload, post, or otherwise transmit any Content that is spam, or -contains unethical or unwanted commercial content designed to drive -traffic to third party sites or boost the search engine rankings of -third party sites, or to further unlawful acts (such as phishing) or -mislead recipients as to the source of the material (such as -spoofing);</p> - -<p>3. Maliciously impersonate any real person or entity, including but not limited to a -$LJ::SITENAMESHORT staff member or volunteer, or to otherwise misrepresent your -affiliation with any person or entity;</p> - -<p>4. Upload, post or otherwise transmit any Content that you do not -have a right to transmit under any law or under contractual or fiduciary -relationships (such as inside information, proprietary and confidential -information learned or disclosed as part of employment relationships or -under nondisclosure agreements);</p> - -<p>5. Upload, post or otherwise transmit any Content that infringes any -patent, trademark, trade secret, copyright, or other proprietary rights -of any party;</p> - -<p>6. Interfere with or disrupt the Website or servers or networks -connected to the Website, or disobey any requirements, procedures, -policies or regulations of networks connected to the Website;</p> - -<p>7. Solicit passwords or personal identifying information for -unintended, commercial or unlawful purposes from other users;</p> - -<p>8. Provide any material that is illegal under United States law;</p> - -<p>9. Upload, post or otherwise transmit any Content that contains -viruses, worms, malware, Trojan horses or other harmful or destructive -content;</p> - -<p>10. Allow usage by others in such a way as to violate this -Agreement;</p> - -<p>11. Make excessive or otherwise harmful automated use of the -Website;</p> - -<p>12. Access any other person's account, or exceed the scope of the -Website that you have signed up for; for example, accessing and using -features you don't have a right to use.</p> - - -<h2>XII. Copyright Infringement</h2> - -<p>If you believe that material located on the Website violates your -copyright, you may notify us in accordance with our Digital Millennium -Copyright Act ('DMCA') Policy. We will respond to all such notices as -required by law, including by removing the infringing material or -disabling access to the infringing -material. As set forth by law, we will, in our sole discretion, -terminate or deny access to the Website to users of the site who have -repeatedly infringed upon the copyrights or intellectual property rights -of others. </p> - - -<h2>XIII. Volunteers</h2> - -<p>We appreciate the service of volunteers in many aspects of Website -management, including but not limited to providing technical support, -creating web-based content, performing site administration duties, -providing expert advice, research, technical writing, reviewing, -categorizing, and other duties as necessary. </p> - -<p>All volunteers are expected to be of legal age, or volunteering with -the consent of a legal parent or guardian.</p> - -<p>By volunteering, you agree that any work created as a result of your volunteer service shall be licensed to $LJ::SITENAMESHORT on a perpetual, irrevocable, and world-wide basis, to the extent permitted by law. You agree that $LJ::SITENAMESHORT may determine the basis upon which your volunteer work shall be licensed to others, including under Open Source licenses that may permit the further alteration or dissemination of your work. If laws prevent such licensing, you agree never to sue $LJ::SITENAMESHORT for the use of said work.</p> - -<p>By volunteering, you agree that you are providing your work with no -expectation of pay or future consideration by $LJ::SITENAMESHORT. You also agree -that you have taken reasonable diligence to ensure that the work is -correct, accurate, and free of defect. You agree that you will not -disclose or share any proprietary or confidential information you are -provided with in the course of your volunteer work. </p> - -<p>No user is required to volunteer for the Website, and users without -volunteer status will receive equal care, support, and attention.</p> - - -<h2>XIV. Changes</h2> - -<p>We reserve the right, at our sole discretion, to modify or replace -any part of this Agreement at any time. We will take reasonable steps to -notify you of any substantial changes to this Agreement; however, it is -your responsibility to check this Agreement periodically for changes. -Your continued use of or access to the Website following the posting of -any changes to this Agreement constitutes acceptance of those changes. -</p> - -<p>We may also, in the future, offer new services and/or features -through the Website (including the release of new tools and resources). -Such new features and/or services shall be subject to the terms and -conditions of this Agreement. </p> - - -<h2>XV. Disclaimer of Warranties</h2> - -<p><strong>This Website is provided "as is". $LJ::SITECOMPANY and its -suppliers and licensors hereby disclaim all warranties of any kind, -express or implied, including, without limitation, the warranties of -merchantability, fitness for a particular purpose and non-infringement. -Neither $LJ::SITECOMPANY, nor its suppliers and licensors, makes -any warranty that the Website will be error free or that access to the Website -will be continuous or uninterrupted. You agree that any interruptions to the service will not qualify for reimbursement or compensation. You understand that you download -from, or otherwise obtain content or services through, the Website at -your own discretion and risk.</strong></p> - -<p><strong>No advice or information, whether oral or written, obtained by you -in any fashion shall create any warranty not expressly stated in this -Agreement.</strong></p> - - -<h2>XVI. Limitation of Liability</h2> - -<p><strong>You expressly understand and agree that in no event will -$LJ::SITECOMPANY, or its suppliers or licensors, be liable with -respect to any subject matter of this agreement under any contract, -negligence, strict liability or other legal or equitable theory for: (i) -any special, incidental or consequential damages; (ii) the cost of -procurement or substitute products or services; (iii) interruption of use -or loss or corruption of data; (iv) any statements or conduct of any -third party on the service; or (v) any unauthorized access to or -alterations of your Content. We shall have no liability for any failure -or delay due to matters beyond our reasonable control. </strong></p> - -<p><strong>The foregoing shall not apply to the extent prohibited by -applicable law.</strong></p> - - - - -<h2>XVII. General Information</h2> - -<p>This Agreement constitutes the entire agreement between us and you -concerning your use of the Website. This Agreement may only be modified -by a written amendment signed by an authorized representative of -$LJ::SITECOMPANY, or by the posting of a revised version to this -location. Except to the extent that applicable law (if any) provides -otherwise, any dispute arising between you and $LJ::SITECOMPANY -regarding these Terms of Service and/or your use or access of the -Website will be governed by the -laws of the state of Maryland and the federal laws of the United States -of America, excluding any conflict of law provisions. You agree to -submit to the jurisdiction of the state and federal courts located in -Baltimore City, Maryland for any disputes arising out of or relating to -your use of the Website or your acceptance of this Agreement.</p> - -<p>If any part of this Agreement is held invalid or unenforceable, that -part will be construed to reflect the parties' original intent, and the -remaining portions will remain in full force and effect. A waiver by -either party of any term or condition of this Agreement or any breach -thereof, in any one instance, will not waive such term or condition or -any subsequent breach thereof. </p> - -<p>The section titles in this Agreement are for convenience only and -have no legal or contractual effect.</p> - - -<h2>XVIII. Reporting Violations</h2> - -<p>For instructions on how to report a violation of this Agreement, please see <a href="http://www.dreamwidth.org/support/faqbrowse?faqid=80">How do I report a violation of Dreamwidth's Terms of Service?</a></p> - - -<h2>XIX. Creative Commons</h2> - -<p>This Terms of Service document is based on one developed by Automattic -(http://wordpress.com/tos/) and is licensed under a Creative Commons -Attribution-ShareAlike 2.5 License.</p> - - - - -<p class='note'>Last revised April 23, 2009</p> -PAGE - - return $ret; -} -_code?> -<=body -title=><?_code return $title; _code?> -head<= -<?_code return $headextra; _code?> -<=head -page?> diff -r bc56d73ac692 -r f70f277d3918 views/legal/index.tt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/views/legal/index.tt Mon Oct 11 18:57:46 2010 +0800 @@ -0,0 +1,31 @@ +[%# legal/index.tt + # + # A basic index for the /legal directory. + # + # Authors: + # Denise Paolucci <denise@dreamwidth.org> + # Jen Griffin <kareila@livejournal.com> + # + # Copyright (c) 2009-10 by Dreamwidth Studios, LLC. + # + # This program is free software; you may redistribute it and/or modify it + # under the same terms as Perl itself. For a copy of the license, please + # reference 'perldoc perlartistic' or 'perldoc perlgpl'. + # +%] + +[%- sections.head = BLOCK %] +<style type='text/css'> +#content dl dt { font-size: bigger; font-weight: bold; } +#content dl dd { margin-left: 2em; margin-bottom: 1em; } +</style> +[% END -%] + +[%- sections.title='.title' | ml(sitename = site.name) -%] + +<dl> +[% FOREACH topic = index %] +<dt><a href="[% topic.page %]">[% topic.header | ml(siteshort = site.nameshort) %]</a></dt> +<dd>[% topic.text | ml %]</dd> +[% END %] +</dl> diff -r bc56d73ac692 -r f70f277d3918 views/legal/index.tt.text --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/views/legal/index.tt.text Mon Oct 11 18:57:46 2010 +0800 @@ -0,0 +1,19 @@ +;; -*- coding: utf-8 -*- + +.privacy-header=Privacy Policy + +.privacy<< +The Privacy Policy explains what information we collect from our users +and how we use that information. It also includes our COPPA (Children's +Online Privacy Protection Act) statement. +. + +.title=[[sitename]] Legal Documents + +.tos-header=Terms of Service + +.tos<< +The Terms of Service explain our usage policies, including instructions +on how to report abuse of the site. +. + diff -r bc56d73ac692 -r f70f277d3918 views/legal/privacy.tt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/views/legal/privacy.tt Mon Oct 11 18:57:46 2010 +0800 @@ -0,0 +1,172 @@ +[%# legal/privacy.tt + # + # Privacy Policy + # + # Authors: + # Janine Smith <janine@netrophic.com> + # + # Copyright (c) 2009 by Dreamwidth Studios, LLC. + # + # This program is free software; you may redistribute it and/or modify it + # under the same terms as Perl itself. For a copy of the license, please + # reference 'perldoc perlartistic' or 'perldoc perlgpl'. + # +%] + +[%- sections.title='Privacy Policy' -%] + +<p>We hate legalese, so we've tried to make ours readable. If you've got any questions, feel free to <a href='[% roots.site %]/support/submit'>ask us</a>, and we'll do our best to answer.</p> + +<p>This privacy statement ("Privacy Policy") covers all websites (such as [% domain.web %]) owned and operated by [% site.company %] ("we", "us", "our") and all associated services.</p> + +<p>We use information you share with us for our internal business purposes. We do not sell your information. This notice tells you what information we collect, how we use it, and steps we take to protect and secure it.</p> + + +<h2>Information we automatically collect</h2> + +<p style='margin-top: 0.5em;'><strong>Non-personally-identifying</strong></p> + +<p>Like most website operators, we collect non-personally-identifying information such as browser type, language preference, referring site, and the date and time of each visitor request.</p> + +<p>We collect this to understand how our visitors use our service, and use it to make decisions about how to change and adapt the service.</p> + +<p>From time to time, we may release non-personally-identifying information in aggregate form (for instance, by publishing trends in site usage) to explain our reasoning in making decisions. We will not release individual information, only aggregate information.</p> + + +<p><strong>Personally-identifying</strong></p> + +<p>We automatically collect personally-identifying information, such as IP address, provided by your browser and your computer.</p> + +<p>We collect this information for several purposes:</p> + +<ul class='bullet-list'><li>To diagnose and repair network issues with your use of the site;</li> +<li>To estimate the number of users accessing the service from specific geographic regions;</li> +<li>To help prevent fraud and abuse.</li></ul> + +<p>An individual journal owner may enable IP address logging for comments made to their journal or community. If this option is enabled, we will disclose your IP address to the owner of that journal or community if you make a comment to that journal. We will tell you at the time of commenting if this option is enabled.</p> + + +<h2>Information you are required to provide to us on registration</h2> + +<p>In order to register for the service, you must give us your email address. We will use your email address to send confirmation of certain actions, such as when you change your password. We will contact you when it's necessary to complete a transaction that you've initiated, or if there's a critical or administrative issue affecting your use of the service.</p> + +<p>Once you have created your account, you can choose to subscribe to certain events and have notifications of those events sent to you via email. You will be able to change your mind and opt out of receiving notifications via email at any time.</p> + +<p>When you register, you must also give us your date of birth. This is to make sure we aren't accidentally collecting information from children, which is prohibited by United States law. We save this information so that we can prove we're complying with that law. Once you've created your account, you can specify a birthdate to make public, which does not have to be your actual date of birth.</p> + +<p>We will never sell or provide your email address or your date of birth to any third party, with exceptions as set forth below. </p> + + +<h2>Optional information you provide to us</h2> + +<p>As you use the service, you have the option to provide more personal information, through your profile, your entries, or comments you make. Providing this information is strictly optional.</p> + +<p>We will show this information to others viewing the site, in accordance with the privacy options you've selected for the information. We may also use this information, in aggregate, to make decisions about how to change and adapt the service.</p> + +<p>From time to time, we may release information in aggregate form (for instance, by publishing trends in site usage) to explain our reasoning in making decisions. We will not release individual information, only aggregate information.</p> + +<p>We will not sell or provide this information to any third party, with exceptions as set forth below.</p> + +<p>By choosing to make any personally-identifying information public, you recognize and accept that other people, not affiliated with us, may use this data to contact you. We can't be responsible for the use of any information you post publicly.</p> + +<p>From time to time, we may allow you to provide us with your login credentials for a site that is not owned and operated by us in order to allow you to integrate data from that external service to your [% site.nameshort %] account. Examples of this include the journal import feature and the entry crosspost feature. Providing us this information is completely optional. Your login credentials are only used for the purposes of these features, and are not used for any other purpose.</p> + +<h2>Account contents</h2> + +<p>You may optionally post content to your account with varying security levels. To the best of our ability, and limited only by the possibility of bugs or technical difficulties, we will honor the security levels you choose for your content and display that content only to those whom you have authorized to see it.</p> + +<p>While maintaining the site, [% site.nameshort %] staff may need to view the contents of your account, including information for which you have chosen a restrictive security level. Circumstances in which this is necessary include, but are not limited to: troubleshooting and diagnosing technical problems, investigating possible Terms of Service violations, and legal compliance issues.</p> + +<p>[% site.nameshort %] staff only use the ability to override your chosen security levels during the course of these investigations. At no time is your secured content disclosed to any third party, except when required by law. Any use of this ability is logged and regularly audited.</p> + +<h2>Financial information and transactions</h2> + +<p>You can engage in financial transactions with [% site.nameshort %] to purchase enhancements for your account. These transactions are optional. If you choose to purchase enhanced services, you will be asked to provide financial information to complete the transaction. There are several payment methods available, each of which requires disclosure of certain personal and financial information. The specifics of these methods of payment are as follows:</p> + +<p><b>Credit cards</b>: If you pay by credit card, we need you to provide your credit card number, your full name as it appears on the card, your address as it appears on the card statement, and the CVN or Card Verification Number. This information is required so we can authorize and charge your credit card. Your financial information is protected by industry-standard encryption methods. It is never stored on our servers: we pass it immediately along to our processor for the sole purpose of completing the authorized transaction.</p> + +<p><b>Checks</b>: If you pay by check, we need you to provide us with a check printed with your bank's routing code and your account number, your name, and your address. This information is required so our bank can transfer funds from your account to ours. We use this information only for the purpose of the single transaction represented by the check, however, our bank retains, on their servers, permanent electronic scans of all checks deposited into our account.</p> + +<p><b>Money orders</b>: If you pay by money order, we need you to provide us with a money order or international money order (as appropriate depending on the country in which you're currently living). We do not require the disclosure of any personal information to use a money order as payment beyond a signature on the face of the money order. However, the location that issues your money order may require you to write additional personal information on the money order. Our bank retains, on their servers, permanent electronic scans of all money orders deposited into our account.</p> + +<p>In all cases, [% site.nameshort %] collects this personal and financial information only as necessary or appropriate for the completion of the single requested transaction. Any additional personally-identifying but non-financial information you disclose during these transactions will be governed by the "Disclosure of personally-identifying information" provisions below.</p> + + +<h2>Disclosure of personally-identifying information</h2> + +<p>We disclose personally-identifying information only to those of our employees and contractors who (i) need to know that information in order to operate the service and (ii) have agreed not to disclose it to others. Some of these employees and contractors may be located outside your home country. By using this website, you consent to the transfer of your information to them.</p> + +<p>If all of our assets were transferred or acquired, your information would be one of the assets that is transferred or acquired by a third party.</p> + +<p>We may disclose potentially personally-identifying and personally-identifying information when that release is required by law or by court order, or when we believe in good faith that disclosure is reasonably necessary to protect the safety or rights of us, third parties, or the public at large.</p> + +<h2>Special rules regarding children</h2> + +<p>The Children's Online Privacy Protection Act ('COPPA') requires that we inform parents on how we collect and disclose the personal information of children under the age of 13.</p> + +<p>We do not permit children under the age of 13 to use our service. To prevent this, we collect date of birth at the time of account creation. If your child under the age of 13 has mis-represented their age at account creation, please contact us at [% email.coppa %]. After confirming your identity, we will remove the account.</p> + + +<h2>Cookies</h2> + +<p>A cookie is a string of information that a website stores on a visitor's computer, and that the visitor's browser provides to the website each time the visitor returns. We use cookies to help us identify and track visitors, their usage of the website, and their website access preferences. We also use cookies to govern logging into your account.</p> + +<p>Visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using the site, with the drawback that certain features of the site may not function properly without the aid of cookies.</p> + + + +<h2>Confidentiality and security</h2> + +<p>No data transmisson over the Internet can ever be guaranteed to be 100% secure. You use this service at your own risk. However, we do take steps to ensure security on our systems.</p> + +<p>Your account information is password-protected. We recommend that you choose a strong and secure password. We use industry-standard encryption to safeguard any transmission between your computer and ours.</p> + +<p>If we learn of a system security breach, we will notify you electronically so you can take appropriate steps to protect yourself. Depending on where you live, you may have a legal right to receive notice of a security breach in writing. To receive free written notice, you should contact us at [% email.privacy %].</p> + + +<h2>Deleting your information</h2> + +<p>You can change or delete any optional information that you've provided us at any time. If you change or delete any optional information you've provided, the change will take place immediately.</p> + +<p>You can also choose to delete your account entirely. If you choose to delete your account entirely, we will retain any personally-identifying information for a limited amount of time before removing it entirely. This is to allow you to undelete your account and continue using the service if you so choose. After this time, all your personally-identifying information will be removed entirely from our service, with the exception of any records we must retain to document compliance with regulatory requirements.</p> + +<p>As part of the day to day operation of [% site.name %], we will make regular copies of the data contained in the databases for backup purposes. These backups can potentially contain deleted data for several weeks or months. These backups will also be governed by the rules for disclosure of personally-identifying information.</p> + + +<h2>Outside Vendors</h2> + +<strong>Site Features</strong><br /> + +<p>We reserve the right to contract with third-party vendors to provide site features we are unable to provide ourselves. We will only share personal information with third-party vendors to the extent that is necessary for such affiliates to provide these site features. We require our third-party vendors to provide the same level of privacy protection that we do, and they do not have the right to share or use personal information for any purpose other than for an authorized transaction. Some of our third-party vendors may be located outside of your home country. By using this website, you consent to the transfer of such information to them.</p> + +<p>We will clearly identify which site features are provided by third-party vendors, and provide you a way to opt out of using those site features.</p> + +<p>We provide ways for you to optionally integrate third party applications or services into your account. If you choose to do so, any data you provide to that third party is governed by the privacy policy of the person creating or hosting that application or service.</p> + + +<strong>Business Vendors</strong><br /> + +<p>From time to time, we may contract with outside vendors to provide business services that will assist us in administering and maintaining the [% site.nameshort %] service. We will list all of our business vendors in this privacy policy, as well as providing links to their privacy policies and information on how to opt out of your information being included in those services.</p> + +<p>Our current business vendors are:</p> + +<ul class='bullet-list'><li><a href='http://www.google.com/services/'>Google Business Services</a>: We use Google Business Services for their Google Analytics service. For information on how Google Business Services may use your information, see <a href='http://www.google.com/intl/en_ALL/privacy.html'>Google's Privacy Center</a>. Google Analytics collects aggregate data on site usage, such as browser type and the navigational paths our users use, which helps us make decisions about how to improve the site. Some users may also have added Google Analytics code to their journals. To opt out of your site use being included in our Google Analytics report, you can use a browser plugin to block the JavaScript being served by google-analytics.com. </li> +</ul> + + +<h2>Changes</h2> + +<p>We may change our privacy policy from time to time. If these changes are minor, we will post them to this page. If the changes are major, we will post them to this page and notify users through our [% site.nameshort %] News journal and through messages sent to your account's [% site.nameshort %] Inbox. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.</p> + + +<h2>Contacting us</h2> + +<p>If you have questions about this policy, you can contact us at [% email.privacy %].</p> + + + +<h2>Creative Commons</h2> + +<p>This privacy policy is based on one developed by Automattic (http://automattic.com/privacy/) and is licensed under a Creative Commons Attribution-ShareAlike 2.5 License.</p> + +<p class='note'>Last revised June 6, 2010</p> diff -r bc56d73ac692 -r f70f277d3918 views/legal/tos.tt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/views/legal/tos.tt Mon Oct 11 18:57:46 2010 +0800 @@ -0,0 +1,401 @@ +[%# legal/tos.tt + # + # Terms of Service + # + # Authors: + # Janine Smith <janine@netrophic.com> + # + # Copyright (c) 2009 by Dreamwidth Studios, LLC. + # + # This program is free software; you may redistribute it and/or modify it + # under the same terms as Perl itself. For a copy of the license, please + # reference 'perldoc perlartistic' or 'perldoc perlgpl'. + # +%] + +[%- sections.title='Terms of Service' -%] + +<p>We hate legalese, so we've tried to make ours readable. If you've got +any questions, feel free to <a href='[% roots.site %]/support/submit'>ask us</a>, +and we'll do our best to answer.</p> + +<h2>Terms of Service</h2> + +<p>[% site.company %] ("we", "us", "our", "[% site.nameshort %]") present the +following terms and conditions, which govern your use of the [% site.nameshort %] +site (Website), and all content, services and products available at or +through the Website, including but not limited to +[% roots.site %]. </p> + +<p>The Website is offered subject to your acceptance, without +modification, of all of the terms and conditions contained within, along with all +other operating rules, policies (including, without limitation, +[% site.nameshort %]'s <a href="[% roots.site %]/legal/privacy">Privacy +Policy</a>) and procedures that may be published from time to time on +this Website by us (collectively, the Agreement).</p> + +<p>Please read this Agreement carefully before accessing or using the +Website. By accessing or using any part of the Website, you agree that you are bound by the terms and conditions of this Agreement. If you do +not agree to all the terms and conditions of this Agreement, then you +may not access the Website or use any services. If these terms and +conditions are considered an offer by [% site.name %], acceptance is +expressly limited to these terms. The Website is available only to +individuals who are at least 13 years old.</p> + +<p>If you operate an account, comment on an account, post material to +the Website, post links on the Website, or otherwise make (or allow any +third party to make) material available by means of the Website (any +such material, also known as "Content"), you are entirely responsible for that Content and any harm that may result from it. That is the case +regardless of whether the Content in question constitutes text, +graphics, an audio file, a video file, or computer software.</p> + + +<h2>I. Your Account</h2> + +<p>If you create an account on the Website, you are responsible for +maintaining the security of your account. You are responsible for all +activities that occur under the account and any other actions taken in +connection with the account. You must take reasonable steps to guard the +security of your account. We will not be liable for any acts or +omissions resulting from a breach of security, including any damages of +any kind incurred as a result of such acts or omissions.</p> + + +<h2>II. Account Structure</h2> + +<p>[% site.name %] currently has a tiered account structure.</p> + +<ul><li><em>Free Accounts</em> are available free of charge. To create a +free account, you will need an invitation ("invite code") from an +existing [% site.name %] user. Free accounts can access basic site +functions, but do not receive access to all extended site features.</li> + +<li><em>Paid Accounts</em> are available for term-based fee and receive +access to all extended site features.</li> + +<li><em>Premium Paid Accounts</em> are available for term-based fee and +receive access to all extended site features, at higher limits (for those +features that have limits) than those given to paid accounts.</li> + +<li><em>Seed Accounts</em> are reserved for those who have contributed +significantly to the [% site.name %] project, at our discretion. They +receive all features available to premium paid accounts, at those +limits, for as long as [% site.name %] continues to operate, without need +for future payment.</li></ul> + +<p>Payments to [% site.name %], for account services or for any other +purpose, are refundable or transferable solely at [% site.nameshort %]'s +discretion.</p> + +<p>By using this Service, you agree to this account structure, and to +[% site.nameshort %]'s right to change, modify, or discontinue any type +of account or the features available to it at any time.</p> + +<h2>III. Privacy Policy</h2> + +<p>Your use of the Website is governed by the Privacy Policy, currently +located at [% roots.site %]/legal/privacy. </p> + + +<h2>IV. Indemnity</h2> + +<p>You agree to indemnify and hold harmless [% site.company %], its +contractors, its licensors, and their respective directors, officers, +employees and agents from and against any and all claims and expenses, +including attorneys' fees, arising out of your use of the Website, +including but not limited to out of your violation of this Agreement.</p> + + +<h2>V. Termination</h2> + +<p>We may terminate your access to all or any part of the Website at any +time, at our sole discretion, if we believe that you have violated this +Agreement. You agree that any termination of your access to the Website +may involve removing or discarding any content you have provided. We +may, at our sole discretion, discontinue providing the Website at any +time, with or without notice. </p> + +<p>If you wish to terminate this Agreement, you may delete your account +and cease using the Website. You agree that, upon deletion of your +account, we may, but are not required to, remove any content you have +provided, at any time past the deletion of your account.</p> + +<p>Paid accounts that are terminated for violations of this Agreement will +only be refunded at our discretion, and only if such termination should +come under our established criteria for issuing refunds.</p> + +<p>All provisions of this Agreement which by their nature should survive +termination shall survive termination, including, without limitation, +ownership provisions, warranty disclaimers, indemnity and limitations of +liability. </p> + + +<h2>VI. License to Reproduce Content</h2> + +<p>By submitting Content to us for inclusion on the Website, you grant +us a world-wide, royalty-free, and non-exclusive license to reproduce, +modify, adapt and publish the Content, solely for the purpose of +displaying, distributing and promoting the contents of your account, +including through downloadable clients and external feeds. </p> + +<p>If you delete Content, we will use reasonable efforts to remove it +from the Website, but you acknowledge that caching or references to the +Content may not be made immediately unavailable.</p> + + +<h2>VII. Account Content</h2> + +<p>You agree to the following provisions for posting Content to the +Website:</p> + +<p>1. We claim no ownership or control over any Content that you post to the +Website. You retain any intellectual property rights to the Content you +post, in accordance with applicable law. By posting Content, you +represent that you have the rights to reproduce that Content (and the right to allow us +to serve such Content) without violation of the rights of any third +party. You agree that you will bear any liability resulting from the +posting of any Content that you do not have the rights to post.</p> + +<p>2. All Content posted to the Website in any way is the responsibility +of the owner. Within the confines of international and local law, we +will generally not place a restriction on the type or appropriateness of +any Content. If Content is deemed illegal by any law having jurisdiction +over you, you agree that we may submit any necessary information to the +proper authorities.</p> + +<p>3. We do not pre-screen Content. However, you acknowledge that we +have the right (but not the obligation), in our sole discretion, to +remove or refuse to remove any Content from the service. You also agree +that we may, without limitation, take any steps necessary to remove +Content from the site search engine or member directory, at our sole +discretion.</p> + +<p>4. If any Content you have submitted is reported to us as violating +this Agreement, you agree that we may call upon you to change, modify, +or remove that Content, within a reasonable amount of time, as defined by +us. If you do not follow this directive, we may terminate your account. +</p> + + + +<h2>VIII. Content Posted on Other Websites</h2> + +<p>We have not reviewed, and cannot review, all of the material, +including computer software, made available through the websites and +webpages to which we, any user, or any provider of Content links, or +that link to us. We do not have any control over those websites and +webpages, and are not responsible for their contents or their use. By +linking to an external website or webpage, we do not represent or imply +that we endorse such website or webpage. You are responsible for taking +precautions as necessary to protect yourself and your computer systems +from viruses, worms, Trojan horses, and other harmful or destructive +content. We disclaim any responsibility for any harm resulting from your +use of external websites and webpages, whether that link is provided by +us or by any provider of Content on the Website.</p> + + + +<h2>IX. No Resale of Services</h2> + +<p>You agree not to reproduce, duplicate, copy, sell, resell, or exploit +any portion of the Website, use of the Website, or access to the +Website.</p> + + +<h2>X. Exposure to Content</h2> + +<p>You agree that by using the service, you may be exposed to Content +you find offensive or objectionable. If such Content is reported to us, +it will be our sole discretion as to what action, if any, should be +taken. </p> + + +<h2>XI. Member Conduct</h2> + +<p>You agree that you will not use the Website to:</p> + +<p>1. Upload, post, or otherwise transmit any Content that is harmful, threatening, abusive, hateful, invasive to the privacy and publicity rights of any person, or that violates any applicable local, state, national, or international law, including any regulation having the force of law; + +<p>2. Upload, post, or otherwise transmit any Content that is spam, or +contains unethical or unwanted commercial content designed to drive +traffic to third party sites or boost the search engine rankings of +third party sites, or to further unlawful acts (such as phishing) or +mislead recipients as to the source of the material (such as +spoofing);</p> + +<p>3. Maliciously impersonate any real person or entity, including but not limited to a +[% site.nameshort %] staff member or volunteer, or to otherwise misrepresent your +affiliation with any person or entity;</p> + +<p>4. Upload, post or otherwise transmit any Content that you do not +have a right to transmit under any law or under contractual or fiduciary +relationships (such as inside information, proprietary and confidential +information learned or disclosed as part of employment relationships or +under nondisclosure agreements);</p> + +<p>5. Upload, post or otherwise transmit any Content that infringes any +patent, trademark, trade secret, copyright, or other proprietary rights +of any party;</p> + +<p>6. Interfere with or disrupt the Website or servers or networks +connected to the Website, or disobey any requirements, procedures, +policies or regulations of networks connected to the Website;</p> + +<p>7. Solicit passwords or personal identifying information for +unintended, commercial or unlawful purposes from other users;</p> + +<p>8. Provide any material that is illegal under United States law;</p> + +<p>9. Upload, post or otherwise transmit any Content that contains +viruses, worms, malware, Trojan horses or other harmful or destructive +content;</p> + +<p>10. Allow usage by others in such a way as to violate this +Agreement;</p> + +<p>11. Make excessive or otherwise harmful automated use of the +Website;</p> + +<p>12. Access any other person's account, or exceed the scope of the +Website that you have signed up for; for example, accessing and using +features you don't have a right to use.</p> + + +<h2>XII. Copyright Infringement</h2> + +<p>If you believe that material located on the Website violates your +copyright, you may notify us in accordance with our Digital Millennium +Copyright Act ('DMCA') Policy. We will respond to all such notices as +required by law, including by removing the infringing material or +disabling access to the infringing +material. As set forth by law, we will, in our sole discretion, +terminate or deny access to the Website to users of the site who have +repeatedly infringed upon the copyrights or intellectual property rights +of others. </p> + + +<h2>XIII. Volunteers</h2> + +<p>We appreciate the service of volunteers in many aspects of Website +management, including but not limited to providing technical support, +creating web-based content, performing site administration duties, +providing expert advice, research, technical writing, reviewing, +categorizing, and other duties as necessary. </p> + +<p>All volunteers are expected to be of legal age, or volunteering with +the consent of a legal parent or guardian.</p> + +<p>By volunteering, you agree that any work created as a result of your +volunteer service shall be licensed to [% site.nameshort %] on a perpetual, +irrevocable, and world-wide basis, to the extent permitted by law. You +agree that [% site.nameshort %] may determine the basis upon which your +volunteer work shall be licensed to others, including under Open Source +licenses that may permit the further alteration or dissemination of +your work. If laws prevent such licensing, you agree never to sue +[% site.nameshort %] for the use of said work.</p> + +<p>By volunteering, you agree that you are providing your work with no +expectation of pay or future consideration by [% site.nameshort %]. You also agree +that you have taken reasonable diligence to ensure that the work is +correct, accurate, and free of defect. You agree that you will not +disclose or share any proprietary or confidential information you are +provided with in the course of your volunteer work. </p> + +<p>No user is required to volunteer for the Website, and users without +volunteer status will receive equal care, support, and attention.</p> + + +<h2>XIV. Changes</h2> + +<p>We reserve the right, at our sole discretion, to modify or replace +any part of this Agreement at any time. We will take reasonable steps to +notify you of any substantial changes to this Agreement; however, it is +your responsibility to check this Agreement periodically for changes. +Your continued use of or access to the Website following the posting of +any changes to this Agreement constitutes acceptance of those changes. +</p> + +<p>We may also, in the future, offer new services and/or features +through the Website (including the release of new tools and resources). +Such new features and/or services shall be subject to the terms and +conditions of this Agreement. </p> + + +<h2>XV. Disclaimer of Warranties</h2> + +<p><strong>This Website is provided "as is". [% site.company %] and its +suppliers and licensors hereby disclaim all warranties of any kind, +express or implied, including, without limitation, the warranties of +merchantability, fitness for a particular purpose and non-infringement. +Neither [% site.company %], nor its suppliers and licensors, makes +any warranty that the Website will be error free or that access to the Website +will be continuous or uninterrupted. You agree that any interruptions to the service will not qualify for reimbursement or compensation. You understand that you download +from, or otherwise obtain content or services through, the Website at +your own discretion and risk.</strong></p> + +<p><strong>No advice or information, whether oral or written, obtained by you +in any fashion shall create any warranty not expressly stated in this +Agreement.</strong></p> + + +<h2>XVI. Limitation of Liability</h2> + +<p><strong>You expressly understand and agree that in no event will +[% site.company %], or its suppliers or licensors, be liable with +respect to any subject matter of this agreement under any contract, +negligence, strict liability or other legal or equitable theory for: (i) +any special, incidental or consequential damages; (ii) the cost of +procurement or substitute products or services; (iii) interruption of use +or loss or corruption of data; (iv) any statements or conduct of any +third party on the service; or (v) any unauthorized access to or +alterations of your Content. We shall have no liability for any failure +or delay due to matters beyond our reasonable control. </strong></p> + +<p><strong>The foregoing shall not apply to the extent prohibited by +applicable law.</strong></p> + + + + +<h2>XVII. General Information</h2> + +<p>This Agreement constitutes the entire agreement between us and you +concerning your use of the Website. This Agreement may only be modified +by a written amendment signed by an authorized representative of +[% site.company %], or by the posting of a revised version to this +location. Except to the extent that applicable law (if any) provides +otherwise, any dispute arising between you and [% site.company %] +regarding these Terms of Service and/or your use or access of the +Website will be governed by the +laws of the state of Maryland and the federal laws of the United States +of America, excluding any conflict of law provisions. You agree to +submit to the jurisdiction of the state and federal courts located in +Baltimore City, Maryland for any disputes arising out of or relating to +your use of the Website or your acceptance of this Agreement.</p> + +<p>If any part of this Agreement is held invalid or unenforceable, that +part will be construed to reflect the parties' original intent, and the +remaining portions will remain in full force and effect. A waiver by +either party of any term or condition of this Agreement or any breach +thereof, in any one instance, will not waive such term or condition or +any subsequent breach thereof. </p> + +<p>The section titles in this Agreement are for convenience only and +have no legal or contractual effect.</p> + + +<h2>XVIII. Reporting Violations</h2> + +<p>For instructions on how to report a violation of this Agreement, please see <a href="http://www.dreamwidth.org/support/faqbrowse?faqid=80">How do I report a violation of Dreamwidth's Terms of Service?</a></p> + + +<h2>XIX. Creative Commons</h2> + +<p>This Terms of Service document is based on one developed by Automattic +(http://wordpress.com/tos/) and is licensed under a Creative Commons +Attribution-ShareAlike 2.5 License.</p> + + + + +<p class='note'>Last revised April 23, 2009</p> --------------------------------------------------------------------------------