From 32a7699eb59e04e1e55abbf422c341f56dab1cb0 Mon Sep 17 00:00:00 2001 From: Andromeda Yelton Date: Mon, 21 May 2012 13:39:19 -0400 Subject: [PATCH] addressing some actual questions seen around the interwebs --- frontend/templates/base.html | 22 +--------------------- frontend/templates/faq.html | 11 ++++++++++- static/js/expand_about.js | 19 +++++++++++++++++++ 3 files changed, 30 insertions(+), 22 deletions(-) create mode 100644 static/js/expand_about.js diff --git a/frontend/templates/base.html b/frontend/templates/base.html index a76aca27..57dc121d 100644 --- a/frontend/templates/base.html +++ b/frontend/templates/base.html @@ -21,31 +21,11 @@ {% block base_js %} {% endblock %} + {% block extra_js %} {% endblock %} - {% block extra_head %} {% endblock %} diff --git a/frontend/templates/faq.html b/frontend/templates/faq.html index 7919dec1..71950487 100644 --- a/frontend/templates/faq.html +++ b/frontend/templates/faq.html @@ -36,9 +36,18 @@ If you're a rights holder, starting campaigns is free, too. You only pay Unglue To fund a campaign, you'll need a valid credit card. To start a campaign, you'll need to establish yourself with us as a rights holder, including demonstrating that you have the rights to the content you want to unglue. See the FAQs for Rights Holders for more. +
Why should I fund a book at Unglue.it when I can just buy it somewhere else?
+ +
When you buy a book, you get a copy for yourself. When you unglue it, you give a copy to yourself and everyone on earth.
+ +
What do I get when I unglue a book?
+
You get a better ebook. Your unglued ebook has no DRM: you can put it on any device you want, in any format you want. You can legally copy it and share it with your friends. You can read it on the network or off, with no one tracking your reading.

+You may get premiums, depending on the amount you pledge. Each campaign has its own set.

+And you get the satisfaction of helping readers and libraries everywhere: giving a book to everyone on earth.
+
Does Unglue.it own the copyright of unglued books?
-
No. When you unglue a book, the copyright stays with its current owner. A Creative Commons license is a licensing agreement. As with other licensing agreements, it grants certain rights to others but does not affect the status of the copyright.

+
No. When you unglue a book, the copyright stays with its current owner. Unglue.it does not buy copyrights. A Creative Commons license is a licensing agreement. As with other licensing agreements, it grants certain rights to others but does not affect the status of the copyright.

Just like many traditional publishing transactions, ungluing is about licensing rights. We use Creative Commons licenses to make ebooks available to the world while respecting and protecting copyright.

diff --git a/static/js/expand_about.js b/static/js/expand_about.js new file mode 100644 index 00000000..8c629eaa --- /dev/null +++ b/static/js/expand_about.js @@ -0,0 +1,19 @@ +var $j = jQuery.noConflict(); +$j(document).ready(function(){ + $j('#about_expander').click(function(){ + $j('#js-topsection').css({"opacity": "0.07"}); + $j('.launch_top').css({"opacity": "0.07"}); + $j('#main-container').css({"opacity": "0.07"}); + $j('#js-rightcol').css({"opacity": "0.07"}); + $j('#js-header').css({"opacity": "0.07"}); + $j('#about_expandable').fadeTo("slow", 1); + }); + $j('#about_collapser').click(function(){ + $j('#js-topsection').fadeTo("slow", 1); + $j('.launch_top').fadeTo("slow", 1); + $j('#main-container').fadeTo("slow", 1); + $j('#js-rightcol').fadeTo("slow", 1); + $j('#js-header').fadeTo("slow", 1); + $j('#about_expandable').css({"display": "none"}); + }); +});