diff --git a/admin.py b/admin.py index a8d4622d..9087e5be 100644 --- a/admin.py +++ b/admin.py @@ -56,6 +56,12 @@ class UserProfileAdmin(ModelAdmin): class TransactionAdmin(ModelAdmin): date_hierarchy = 'date_created' + +class PaymentResponseAdmin(ModelAdmin): + pass + +class ReceiverAdmin(ModelAdmin): + ordering = ('email',) admin_site = RegluitAdmin("Admin") @@ -72,3 +78,5 @@ admin_site.register(models.Ebook, EbookAdmin) admin_site.register(models.Wishlist, WishlistAdmin) admin_site.register(models.UserProfile, UserProfileAdmin) admin_site.register(payment.models.Transaction, TransactionAdmin) +admin_site.register(payment.models.PaymentResponse, PaymentResponseAdmin) +admin_site.register(payment.models.Receiver, ReceiverAdmin) diff --git a/core/models.py b/core/models.py index 1f47c687..809ba5f5 100755 --- a/core/models.py +++ b/core/models.py @@ -92,6 +92,7 @@ class Campaign(models.Model): amazon_receiver = models.CharField(max_length=100, blank=True) work = models.ForeignKey("Work", related_name="campaigns", null=False) managers = models.ManyToManyField(User, related_name="campaigns", null=False) + # status: INITIALIZED, ACTIVE, SUSPENDED, WITHDRAWN, SUCCESSFUL, UNSUCCESSFUL status = models.CharField(max_length=15, null=True, blank=False, default="INITIALIZED") problems = [] @@ -149,9 +150,10 @@ class Campaign(models.Model): else: return 0 - def transactions(self, pledged=True, authorized=True): + def transactions(self, summary=False, pledged=True, authorized=True, incomplete=True, completed=True): p = PaymentManager() - return p.query_campaign(campaign=self, summary=False, pledged=pledged, authorized=authorized) + return p.query_campaign(campaign=self, summary=summary, pledged=pledged, authorized=authorized, incomplete=incomplete, + completed=completed) def activate(self): status = self.status diff --git a/deploy/regluit.conf b/deploy/regluit.conf index 7dff2e0e..28992b89 100644 --- a/deploy/regluit.conf +++ b/deploy/regluit.conf @@ -6,8 +6,10 @@ WSGISocketPrefix /opt/regluit ServerName please.unglueit.com ServerAdmin info@gluejar.com -Redirect 301 /admin https://please.unglueit.com/admin -Redirect 301 /accounts https://please.unglueit.com/accounts +RewriteEngine On +RewriteRule ^/$ https://please.unglueit.com/ [R=301] +RewriteRule /admin(.*) https://please.unglueit.com/admin$1 [R=301] +RewriteRule /accounts(.*) https://please.unglueit.com/accounts$1 [R=301] WSGIDaemonProcess regluit processes=4 threads=4 python-eggs=/tmp/regluit-python-eggs WSGIScriptAlias / /opt/regluit/deploy/regluit.wsgi diff --git a/frontend/forms.py b/frontend/forms.py index fa55f6f3..20747ee3 100644 --- a/frontend/forms.py +++ b/frontend/forms.py @@ -74,7 +74,7 @@ class UserData(forms.Form): label=_("New Username"), max_length=30, regex=r'^[\w.@+-]+$', - help_text = _("30 characters or less."), + help_text = _("30 characters or fewer."), error_messages = { 'invalid': _("This value may contain only letters, numbers and @/./+/-/_ characters.") } diff --git a/frontend/templates/base.html b/frontend/templates/base.html index 2cc7c9d5..7b2fbc16 100644 --- a/frontend/templates/base.html +++ b/frontend/templates/base.html @@ -73,7 +73,7 @@
  • About
  • Blog
  • Press
  • -
  • Newsletter
  • +
  • Newsletter
  • @@ -93,8 +93,8 @@
    Help diff --git a/frontend/templates/basedocumentation.html b/frontend/templates/basedocumentation.html index fc613243..f2419b78 100644 --- a/frontend/templates/basedocumentation.html +++ b/frontend/templates/basedocumentation.html @@ -1,6 +1,10 @@ {% extends "base.html" %} {% block extra_head %} +{% block extra_js %} + + +{% endblock %} {% block extra_extra_head %} {% endblock %} @@ -9,38 +13,14 @@ {% block title %}{% endblock %} {% block topsection %} -
    -
    -
    -
    -
    -
    -
    With your help we raise money to buy book rights. The unglued books are free to download, here.
    - Learn more -
    -
    - -
    -
    - - Facebook - Twitter - email -
    -
    -
    -
    -
    - -
    -
    +{% include "learn_more.html" %} {% endblock %} {% block content %}
    - {% include "explore.html" %} + {% include "faqmenu.html" %}
    diff --git a/frontend/templates/book_panel.html b/frontend/templates/book_panel.html index 7f44cee6..bd9cfdd8 100644 --- a/frontend/templates/book_panel.html +++ b/frontend/templates/book_panel.html @@ -121,7 +121,6 @@ Status: {{ status }}
    - {% if fromsupport %} {% if status == 'No campaign yet' or status == 'INITIALIZED' %} Wished by {{ work.wished_by.count }} {% else %} @@ -130,13 +129,6 @@
    {{ work.percent_unglued_number }}%
    {% endif %} - {% else %} -
    - book list status -
    -
    {{ work.percent_unglued_number }}%
    - {% endif %} -
    Add
    {% if work.first_epub_url %} diff --git a/frontend/templates/comments/list.html b/frontend/templates/comments/list.html index b301a4e8..fcec5a8a 100644 --- a/frontend/templates/comments/list.html +++ b/frontend/templates/comments/list.html @@ -9,7 +9,7 @@ Generic Ungluer Avatar {% endif %}
    - {{comment.user.username }} ({{ comment.submit_date }}): {{ comment.comment }} + {{comment.user.username }} ({{ comment.submit_date }})
    {{ comment.comment }}
    {% endfor %}
    diff --git a/frontend/templates/faq.html b/frontend/templates/faq.html index a0f534f2..a7235871 100644 --- a/frontend/templates/faq.html +++ b/frontend/templates/faq.html @@ -2,24 +2,140 @@ {% block title %} FAQ {% endblock %} {% block doccontent %} -

    FAQ

    +

    Frequently Asked Questions

    +
    Help! My question isn't covered in the FAQs!
    + +
    Please email us at support@gluejar.com. Especially during our alpha phase, we want to make sure everything on the site runs as smoothly as possible. Thanks for helping us do that.
    + +{% if location == 'basics' or location == 'faq' %} +

    Basics

    +{% if sublocation == 'howitworks' or sublocation == 'all' %} +

    How It Works

    +
    What is Unglue.It?
    + +
    TBA
    + +
    What is Crowdfunding?
    + +
    Crowdfunding is working together to support something you believe in. By pooling donations, big and small, from all over the world, we can make huge things happen.
    + +
    What does it cost?
    + +
    Unglue.It is free to join. Most of the things you can do here -- discovering books, adding them them to your wishlist, commenting, sharing -- are free too. If you choose to support a campaign, you may pledge whatever amount you're comfortable with.

    + +If you're a rights holder, starting campaigns is free, too. You only pay Unglue.It if your campaign succeeds. For the basics on campaigns, see the FAQ on Campaigns; for more details, see the FAQ for Rights Holders.
    + +
    Who can use Unglue.It?
    + +
    Anyone! We're located in the United States, but we welcome participants from all over the world.

    + +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.
    + +
    Does Unglue.It own the copyright of unglued books?
    + +
    No. When you unglue a book, the copyright stays with its current owner.

    + +Ungluing involves licensing rights, just like traditional publishing transactions. We use Creative Commons licenses to make ebooks available to the world while respecting and protecting copyright.

    + +If you are a copyright holder, you will retain your copyright when you unglue a book. CC licenses are non-exclusive, so you also retain the right to enter into separate licensing agreements. You can read more about these licenses at the Creative Commons FAQ.
    + +
    If I'm a rights holder and I unglue my book, does that mean I can never make money from it again?
    + +
    No! You are free to enter into additional licensing agreements for other, non-unglued, editions of the work, including translation and film rights. You may continue to sell both print and ebook editions. You may use your unglued books as free samples to market your other works -- for instance, later works in the same series. You can use them to attract fans who may be interested in your speaking engagements, merchandise, or other materials. You absolutely may continue to profit from ungluing books -- and we hope you do!

    + +For some examples of how authors and publishers have made free ebooks work for their business plans, see (TBA: with a little help, o'reilly, baen, ...?) If unglued books are working for you, we'd love to hear your story. Tell us at support@gluejar.com.
    + +
    Why do rights holders want to unglue their books?
    + +
    Lots of reasons! Unglued ebooks may be part of a marketing strategy to publicize other books or increase the value of an author's brand. Or they may be books that are no longer selling through conventional channels, and ungluing them is a low-risk way to get some extra value out of them. Or ungluing provides a simple digital strategy that pays for itself. Or the books may have been written to advance a cause, add to the public conversation, or increase human knowledge. These books succeed by having as many readers as possible.
    +
    I know a book that should be unglued.
    -
    Great! Find it in our database (using the search box above) and add it to your wishlist, so we know it should be on our list, too. You can also contact us:
    +
    Great! Find it in our database (using the search box above) and add it to your wishlist, so we know it should be on our list, too. You can also contact us at rights@gluejar.com
    I know a book that should be unglued, and I own its electronic rights.
    -
    Fabulous! Please refer to the Rights Holder FAQ and then contact us.
    +
    Fabulous! Please refer to the FAQ for Rights Holders and then contact us at rights@gluejar.com.
    -
    How much does a book cost?
    - -
    The author or publisher set a price for giving the book to the world. Once you and your fellow ungluers raise enough money to meet that price, the Unglued ebook is available at no charge, for everyone, everywhere!
    - -
    Are the unglued ebooks compatible with my reader?
    - -
    Unglued ebooks are distributed with NO DRM, so they'll work on Kindle, iPad, Kobo, Mac, Windows, Linux... you get the idea. And if the ePub format isn't best for your device, you're free to shift unglued books to a format that works better for you.
    +
    Is there a widget that can be put on my own site to share my favorite books or campaigns?
    + +
    Yes! Every book page has an "Embed" option. Click that and copy/paste the HTML code wherever you like.
    +{% endif %} +{% if sublocation == 'account' or sublocation == 'all' %} +

    Your Account

    +
    I forgot my password. What do I do?
    + +There's a forgot your password link at the bottom of the sign in page. Enter the email address you use for your account and we'll send you an email to help you reset your password. + +
    I never received a confirmation email after I signed up. What do I do?
    + +
    TBA
    + +
    How do I delete my account?
    + +
    TBA
    + +
    How do I connect my Twitter, Facebook, GoodReads, and/or LibraryThing accounts? How can I link to my personal web site?
    + +Click on "My Settings" near the top of your user profile page. (If you're logged in, your profile page is here.) Some new options will appear. You can enter your personal URL and your LibraryThing username here. There are one-click options to connect your Twitter, Facebook, and GoodReads accounts. (You'll be asked to log in to those accounts, if you aren't logged in already.) Make sure to click on "Save Settings". + +
    Why should I connect those accounts?
    + +
    If you connect your Facebook or Twitter accounts, we'll use your user pics from those sites for your avatar here. If you connect LibraryThing or GoodReads, you can import your books there onto your wishlist here, using the My Settings area.
    + +
    I don't want to connect my accounts. Do I have to?
    + +
    Nope.
    + +
    How can I change my profile name or password?
    + +
    At the bottom of every page there's a link to an account editing page where you can change your profile name and password.
    + +
    How can I change the email address associated with my account?
    + +
    TBA
    + +
    How do I unsubscribe from or adjust which emails I receive?
    + +
    TBA

    + +If you receive our newsletter, there's a link at the bottom of every message to manage your preferences. If you don't and would like to, you can sign up here. +
    + +
    Is my personal information shared?
    + +
    Short version: no. You may share information with Rights Holders so they can deliver premiums to you, but this is not required. For the long version, please read our privacy policy. +{% endif %} +{% if sublocation == 'company' or sublocation == 'all' %} +

    The Company

    + +
    How can I contact Unglue.It?
    + +
    For support requests, support@gluejar.com. For general inquiries, use our Ask Questions Frequently account, aqf@gluejar.com. For rights inquiries, rights@gluejar.com.
    + +
    Who is Unglue.It?
    + +
    We are Eric Hellman, Amanda Mecke, Raymond Yee, and Andromeda Yelton. (TBA: include contractors?) We come from the worlds of entrepreneurship, linked data, physics, publishing, education, and library science, to name a few. You can learn more about us at our personal home pages (linked above) or the team page of our corporate site.
    + +
    Are you a non-profit company?
    + +
    No. Gluejar is a for-profit company with a public-spirited mission. We work with both non-profit and commercial partners.
    + +
    Why does Unglue.It exist?
    + +
    TBA
    +{% endif %} +{% endif %} + +{% if location == 'campaigns' or location == 'faq' %} +

    Campaigns

    +{% if sublocation == 'overview' or sublocation == 'all' %} +

    Overview

    + +{% comment %} +These need to be put in proper order. Also this should be broken down into the general FAQ and the RH FAQ; only the basic create/manage campaign, and the supporter mechanisms of interacting with campaigns, should be in the basic FAQ; more technical questions about running campaigns should be in the RH FAQ.
    Why does it say a book's campaign has been suspended or withdrawn?
    @@ -30,11 +146,376 @@
    Your pledge will time out according to its original time limit. If the campaign is resolved and reactivated before your pledge has timed out, your pledge will become active again. If the campaign is not reactivated before your pledge's time limit, your pledge will expire and you will not be charged. As always, you will only be charged if a campaign is successful, within its original time limit.
    What if I want to change or cancel a pledge?
    +{% endcomment %} +
    Who is eligible to start a campaign on Unglue.It?
    +
    To start a campaign, you need to be a verified rights holder who has signed a Platform Services Agreement with us. If you hold the electronic rights for one or more works, please contact rights@gluejar.com to start the process.
    + +
    How can I claim a work for which I am the rights holder?
    + +
    On every book page there is a Details tab. If you have a signed Platform Services Agreement on file, one of the options on the Details tab will be "Claim This Work". If you represent more than one rights holder, choose the correct one for this work and click "Claim".

    If you expect to see that and do not, either we do not have a PSA from you yet, or we have not yet verified and filed it. Please contact us at rights@gluejar.com.
    + +
    Why should I claim my works?
    + +
    You need to claim a work before you will be able to start a campaign for it.
    + +
    Can I have more than one campaign?
    + +
    Yes!
    + +
    Where can I find a campaign page?
    + +
    If you're looking for a specific book, search for it. The book's page becomes a campaign page when its campaign starts. Your bookmarks and widgets for that book will still work.

    +If you want to find an interesting campaign and don't have a specific book in mind, see the Explore sidebar (on almost any page except the FAQs) for some of our favorites.
    + +

    Campaign Pages

    +
    Can a campaign be edited after launching? (combine with changing funding goal/deadline?)
    + +
    TBA
    + +
    Can campaigns be edited after funding is completed?
    + +
    TBA
    + +
    What is a campaign page?
    + +
    TBA
    + +{% endif %} +{% if sublocation == 'funding' or sublocation == 'all' %} +

    Funding

    +
    Is a Paypal account required to launch a campaign?
    +
    TBA
    + +
    Are a funding goal and deadline required?
    +
    Yes.
    + +
    Can I change my funding goal?
    +
    TBA
    + +
    Can I change my deadline?
    +
    TBA
    + +
    Can funding be canceled?
    + +
    TBA
    + +
    Can I offer tax deductions to people who pledge to my campaign?
    + +
    TBA
    + +
    Are contributions refundable?
    + +
    TBA
    + +
    How do I know when I have started fundraising?
    + +
    TBA
    + +
    How do I collect money for my campaign? (include registering & verifying info as needed)
    + +
    TBA
    + +
    Where can I check the status of my funds?
    + +
    TBA
    + +
    What happens if my campaign reaches its funding goal before its deadline? Can campaigns raise more money than their goal?
    + +
    TBA
    + +
    Can people contribute anonymously?
    + +
    We intend to implement this feature, but have not yet.
    + +
    What happens if a supporter's credit card is declined?
    + +Can campaigns raise more money than their goal? + +
    What fees does Unglue.It charge?
    + +
    TBA
    + +
    Does Paypal charge any fees?
    + +
    TBA
    + +
    Does it cost money to start a campaign on Unglue.It?
    + +
    No.
    + +
    I'm having problems verifying my account with Paypal. What do I need to do?
    + +
    TBA
    + +
    Will Paypal send me a 1099-K tax form?
    + +
    TBA
    + +
    What happens to my pledge if a campaign does not succeed?
    + +
    Your credit card will only be charged when campaigns succeed. If they do not, your pledge will expire and you will not be charged.
    +{% endif %} +{% if sublocation == 'premiums' or sublocation == 'all' %} +

    Premiums

    + +
    What are premiums?
    + +
    Premiums are bonuses people get for supporting a successful campaign, to thank them and incentivize them to pledge. If you've ever gotten a tote bag from NPR, you know what we're talking about.
    + +
    Are premiums required?
    + +
    Yes. All campaigns have a required set of premiums, as follows:

    +
      +
    • $1 // The unglued ebook delivered to your inbox.
    • +
    • $25 // Your name under "supporters" in the acknowledgements section.
    • +
    • $50 // Your name and link of your choice under "benefactors"
    • +
    • $100 // Your name, link of your choice, and a brief message (140 characters max) under "bibliophiles"
    • +
    + +Rights holders are encouraged to offer additional premiums to engage supporters' interest. Think about things that uniquely represent yourself or your work, that are appealing, and that you can deliver quickly and within your budget.
    + +
    What can be offered as a premium? What items are prohibited as premiums?
    + +
    TBA
    + +
    Who is responsible for making sure Rights Holders deliver premiums?
    + +
    The rights holder. (TBA: is this correct? do we need to say more?
    + +
    Who creates the premiums for each campaign?
    + +
    Unglue.It determines the required premiums; the rights holder determines any additional premiums for a campaign.
    + +
    Is there a minimum or maximum for how much a premium can cost?
    + +
    TBA
    + +
    How can I get my supporters' information (mailing address, T-shirt size, etc.) to fulfill premiums?
    + +
    TBA
    + +(TBA: questions about specifying estimated delivery dates/what the process timeline should be) +{% endif %} +{% endif %} + +{% if location == 'unglued_ebooks' or location == 'faq' %} +

    Unglued Ebooks

    +{% if sublocation == 'general' or sublocation == 'all' %} +

    General Questions

    +
    How much does a book cost?
    + +
    The author or publisher set a price for giving the book to the world. Once you and your fellow ungluers raise enough money to meet that price, the Unglued ebook is available at no charge, for everyone, everywhere!
    + +
    Will Unglue.It have campaigns for all kinds of books?
    + +
    Yes. You choose what books to wishlist and what books to support. Your passion will drive the campaigns. We aim to host campaigns for diverse subjects genres, from romance novels to poetry, from history to medicine, from the lectures of famous scentists to your favorite chapter book when you were 8 years old.
    + +
    Will you raise money for books already for sale as an ebook?
    + +
    Yes. Books available as ebooks can still be unglued, to make them available more easily to more people.
    + +
    Does an unglued book have to be out-of-print?
    + +
    No. Unglued books can be anything in copyright, whether 75 years or 7 days old, whether they sell in paperback or hardcover and or can only be found in used bookstores -- or nowhere.
    Does Gluejar help to fund self-published books?
    -
    No.
    +
    No.
    {% comment %}should we provide pointers to other resources? encourage people to CC-license their own works?{% endcomment %} + +{% endif %} +{% if sublocation == 'using' or sublocation == 'all' %} +

    Using Your Unglued Ebook

    +
    What can I do, legally, with an unglued ebook? What can I NOT do?
    +
    Unless otherwise specified for specific books, unglued ebooks are released under a (TBA:link)Creative Commons Attribution-NonCommercial-NoDerivatives license (CC BY-NC-ND). (TBA: improve with input from CC site)

    + +This means that you can: make copies; keep them for as long as you like; shift them to other formats (like .mobi or PDF); share them with friends or on the internet; download them for free.

    + +You cannot: sell them, or otherwise use them commercially, without permission from the rights holder; make derivative works, such as translations or movies, without permission from the rights holder; remove the author's name from the book, or otherwise pass it off as someone else's work; or remove or change the CC license.
    + +
    Are the unglued ebooks compatible with my device? Do I need to own an ereader, like a Kindle or a Nook, to read them?
    + +
    Unglued ebooks are distributed with NO DRM, so they'll work on Kindle, iPad, Kobo, Nook, Android, Mac, Windows, Linux... you get the idea. Whether you have an ereader, a tablet, a desktop or laptop computer, or a smartphone, there are reading apps that work for you. And if the ePub format isn't best for your device, you're free to shift unglued books to a format that works better for you. (TBA: I think ePub does NOT work on Kindle so we need to address that, & how people can deal)
    + +
    Do I need to have a library card to read an unglued ebook?
    + +
    No. (Though we hope you have a library card anyway!) While your library may make unglued ebooks available, they will be available from other sources as well.
    + +
    How long do I have to read my unglued book? When does it expire?
    + +
    It doesn't! You may keep it as long as you like. There's no need to return it, and it won't stop working after some deadline.
    + +
    I love my unglued ebook and I want to loan it to my friends. Can I?
    + +
    Yes! Because everything with a Creative Commons license is free to copy and share, you can copy your file and give it to anyone (and everyone) you want. Just don't sell it -- unglued ebooks are only licensed for noncommercial use.
    + +
    Will I be able to dowload an unglued ebook directly from Unglue.It?
    + +
    Unglue.It will provide links to places where you can find unglued and public domain ebooks. We will not host them ourselves. We encourage you to look for them at bookstores, libraries, literary blogs, social reading sites, and all kinds of places people go to read and talk about books.
    +{% endif %} +{% if sublocation == 'copyright' or sublocation == 'all' %} +

    Ungluing and Copyright

    +
    Why does an unglued book have to be in copyright?
    + +
    Because books out of copyright are already free for you to copy, remix, and share! If a book is in the (TBA: link) public domain, it's already unglued.
    + +
    How can I tell if a book is in copyright or not?
    + +
    Unfortunately, it can be complicated -- which is why Unglue.It wants to simplify things, by making unglued ebooks unambiguously legal to use in certain ways. The laws governing copyright and the public domain vary by country, so a book can be copyrighted in one place and not in another. (TBA: link, library copyright slider; other?) In the United States, the Library Copyright Slider gives a quick estimate. (TBA: more links for people who want to learn more?)

    + +Unglue.It signs agreements concerning the copyright status of every work we unglue, so you can be confident when reading and sharing an unglued ebook.
    +{% endif %} +{% endif %} + +{% if location == 'rightsholders' %} +

    For Rights Holders

    +{% if sublocation == 'authorization' or sublocation == 'all' %} +

    Becoming Authorized

    +
    What do I need to do to become an authorized Rights Holder on Unglue.it?
    + +
    Contact Amanda Mecke, amecke@gluejar.com, to discuss signing our Platform Services Agreement. This is the first step in being able to make an offer to license, set a monetary goal, and run a campaign on Unglue.it.
    + +
    Do I need to know the exact titles I might want to unglue before I sign the Platform Services Agreement?
    + +
    No. You only need to agree to the terms under which you will use Unglue.it to raise money to release an ebook using the Creative Commons license. You can decide which specific titles you wish to make available for licensing later. You can run campaigns for as many, or as few, titles at a time as you like. + +{% endif %} +{% if sublocation == 'campaigns' or sublocation == 'all' %} +

    Launching Campaigns

    +
    What do I need to create a campaign?
    + +
    TBA
    + +
    How do I launch my first campaign?
    + +
    TBA
    + +
    Can I Unglue only one of my books? Can I unglue all of them?
    + +
    Yes! It's entirely up to you. Each Campaign is for a individual title and a separate fundraising goal.
    + +
    Can raise any amount of money I want?
    + +
    You can set any goal that you want in a Campaign. Unglue.It cannot guarantee that a goal will be reached.
    + +
    What should I include in my campaign page?
    + +
    Show us why we should love your book. What makes it powerful, intriguing, moving, thought-provoking, important? How does it capture readers' imaginations, engage their minds, or connect to their emotions? Remind readers who loved the book why they loved it, and give people who haven't read it reasons they want to.

    + +We strongly encourage you to include video. You can upload it to YouTube and embed it here. We also strongly encourage links to help readers explore further -- authors' home pages, organizations which endorse the book, positive reviews, et cetera. Think about blurbs and awards which showcase your book. But don't just write a catalog entry or a laundry list: be relatable, and be concise.
    + +
    What should I ask my supporters to do?
    + +
    (TBA: support campaign and share the word)
    +{% endif %} +{% if sublocation == 'publicity' or sublocation == 'all' %} +

    Publicizing Campaigns

    +
    I need help using social media channels to publicize my campaign.
    + +
    We're developing a social media toolkit for rights holders. Please tell us what you think should be in it so we can serve you better: andromeda@gluejar.com. In the meantime we're happy to help you one-on-one, at the same address.
    + +
    Can I contact my supporters directly?
    +
    TBA
    + +
    How do I get feedback from supporters or fans about my campaign?
    + +
    TBA
    + +
    How do I share my campaign?
    + +
    (TBA: use widget, share functions on page, own social media networks, friends, their friends...)
    + +
    How can I get my campaign featured on the home page or the Explore menu pages?
    + +
    TBA
    + +
    How can I get press coverage or social media buzz for my campaign?
    + +
    We're developing a social media toolkit to help you with this; stay tuned. We're also happy to work with you one-on-one. Email support@gluejar.com. +{% endif %} +{% if sublocation == 'conversion' or sublocation == 'all' %} +

    Ebook Conversion

    +
    I am a copyright holder. Do I need to already have a digital file for a book I want to nominate for a pledge drive?
    + +
    No. You may run campaigns for any of your books, even those that exist only in print copies or are out of print. Any print book can be scanned to create a digital file that can then become an ePub unglued ebook.
    + +
    Will Unglue.It scan the books and produce ePub files?
    + +
    No. We will help you find third parties who will contract for conversion services. (TBA: is this true?)
    + +
    Will Unglue.It raise money to help pay for conversion costs?
    + +
    Yes. Your campaign target should include conversion costs.
    +{% endif %} +{% if sublocation == 'rights' or sublocation == 'all' %} +

    Rights

    +
    If I am an author with my book still in print, can I still start a Campaign to unglue it?
    + +
    This depends entirely on your original contract with your publisher. You should seek independent advice about your royalty clauses and the "Subsidiary Rights" clauses of your contract. The Authors' Guild provides guidance for its members.
    + +
    If I am an author do I have to talk to my publisher or agent first?
    + +
    It is your responsibility to get advice on the current status of any contracts you may have ever had for the right to publish your work, whether or not a book is in print now. Creative Commons licenses are media neutral and worldwide (English). You may need waivers from other parties who have exclusive licenses for this book.
    + +
    If I am a publisher, but I do not have an ebook royalty in my contract, can I sign your Platform Services Agreement?
    + +
    We can't interpret your particular contract regarding subsidiary rights and your ability to use a Creative Commons license. Please seek qualified independent advice regarding the terms of your contract. In any event, you will also want the author to cooperate with you on a successful fundraising campaign, and you can work together to meet the warranties of the PSA.
    + +
    Is the copyright holder the same as a Rights Holder?
    + +
    Not necessarily. If you are the author and copyright holder but have a contract with a publisher, the publisher may be the authorized Rights Holder with respect to electronic rights, and they may be able to sign a licensing agreement on your behalf. Again, you must get advice about your individual contract, especially subsidiary rights clauses and exclusivity.
    + +Questions about the Unglue.it license + +
    Can I offer a book to be Unglued even if I cannot include all the illustrations from the print edition?
    + +
    Yes. If permission to reprint cannot not be obtained for items such as photographs, drawings, color plates, as well as quotations from lyrics and poetry, we can produce an unglued edition which leaves them out. Please indicate the difference between the editions on your Campaign page.
    + +
    What impact does ungluing a book have on the rights status of my other editions?
    + +
    The Creative Commons license will apply only to the unglued edition, not to the print or any other editions. It does not affect the rights status of those other editions.
    + +
    Can an Unglued Ebook be issued only in the US?
    + +
    No. An Unglued Ebook is released to the world. It uses a Creative Commons license which is territory-neutral. That is, the unglued ebook can be read by anyone, anywhere in the world, subject always to the non-commercial limitations of the license.
    +{% endif %} + + +
    What is my responsibility for answering questions from supporters and non-supporters?
    + +
    TBA
    + +
    If I am unable to complete my campaign as listed, what should I do?
    + +
    TBA
    +{% endif %} -{% endblock %} \ No newline at end of file +{% endblock %} + +{% comment %} + +-- stuff that needs to be organized -- + +Will you tell me when campaigns I have pledged to succeed? + +What does it mean when I wish for a book to be Unglued? + +Can I share my wish list with others? + +I see where I can comment on a campaign, but where can I talk about it with other readers? + +See our links to Goodreads, Library Thing...etc where you can join conversations in progress. + +-- stuff that will only go on the RH FAQ (if it's above, needs to be copy/pasted over to there) +Questions about becoming an authorized Rights Holder + +Does a Creative Commons license mean the Rights Holders doesn't get paid? + +No. An Unglued Ebook is pre-paid. A CC BY NC ND license means no one else can sell or adapt the ebook for profit. The Rights Holder can set as high a fee as wanted as a fundraising goal, instead of waiting decades for royalties. + +
    How do I keep track of my contributors and the fulfillment of premiums?
    + +
    TBA
    + +{% endcomment %} \ No newline at end of file diff --git a/frontend/templates/faqmenu.html b/frontend/templates/faqmenu.html new file mode 100644 index 00000000..fd58213d --- /dev/null +++ b/frontend/templates/faqmenu.html @@ -0,0 +1,46 @@ +
    +

    FAQs

    + +
    diff --git a/frontend/templates/home.html b/frontend/templates/home.html index 7b6a7b38..7e0ed4a4 100755 --- a/frontend/templates/home.html +++ b/frontend/templates/home.html @@ -10,29 +10,14 @@ - - - - - + @@ -61,35 +46,7 @@ var $j = jQuery.noConflict(); {% endblock %} {% block topsection %} -
    -
    -
    -
    -
    -
    -
    With your help we raise money to buy book rights. The unglued books are free to download, here.
    - Learn more -
    -
    - -
    -
    - - Facebook - tweeter -
    -
    -
    -
    -
    We all have books we love so much, we'd like to give them to the world. We want to share them, but also reward their creators. With digital books, it can be hard to do both.
    -
    -
    Unglue.it offers a win-win solution: Crowdfunding. We run pledge campaigns for books; you chip in. When, together, we've reached the goal, we'll reward the book's creators and issue an unglued ebook.
    -
    -
    Creative Commons licensing means everyone, everywhere can read and share the unglued book — freely and legally. You've given your favorite book to the world.
    -
    -
    -
    -
    +{% include "learn_more.html" %} {% endblock %} {% block content %} @@ -200,7 +157,7 @@ var $j = jQuery.noConflict();