Merge branch 'master' of github.com:Gluejar/regluit into goodreads

pull/1/head
Raymond Yee 2011-11-15 12:58:07 -08:00
commit d0336fdb59
4 changed files with 61 additions and 52 deletions

View File

@ -62,15 +62,15 @@
<p>
<a href="{{privacyurl}}"><span>Privacy</span></a>&nbsp;&nbsp;&nbsp;&nbsp;
<a href="{{rhtoolsurl}}"><span>Rightsholder tools</span></a>&nbsp;&nbsp;&nbsp;&nbsp;
<a href="{% url api_help %}"<span>API</span></a>&nbsp;&nbsp;&nbsp;&nbsp;
<a href="{% url api_help %}"><span>API</span></a>&nbsp;&nbsp;&nbsp;&nbsp;
{% if user.is_authenticated %}
<a href="{{editurl}}"><span>Settings</span></a>&nbsp;&nbsp;&nbsp;&nbsp;
{% endif %}
<a href="/stub/terms_and_conditions"<span>Terms and Conditions</span></a>&nbsp;&nbsp;&nbsp;&nbsp;
<a href="/stub/terms_and_conditions"><span>Terms and Conditions</span></a>&nbsp;&nbsp;&nbsp;&nbsp;
<a href="/stub/about"><span>About</span></a>&nbsp;&nbsp;&nbsp;&nbsp;
<a href="/stub/contact"><span>Contact</span></a>&nbsp;&nbsp;&nbsp;&nbsp;
<a href="/stub/page_for_lockss_harvester"><span>LOCKSS</span></a>&nbsp;&nbsp;&nbsp;&nbsp;
<a href="http://www.gluejar.com/Blog"><span>Blog</span>&nbsp;&nbsp;&nbsp;&nbsp;
<a href="http://www.gluejar.com/Blog"><span>Blog</span></a>&nbsp;&nbsp;&nbsp;&nbsp;
</p>
</div>

View File

@ -13,9 +13,20 @@
{% endfor %}
{% endif %}
<h2>Rightsholder FAQ/How to launch a campaign</h2>
<h2>Rights Holder FAQ/How to launch a campaign</h2>
<a href="/stub/rightsholder_faq_and_campaign_launch_procedure">Needs to be written.</a>
<ol>
<li>
In order to launch a campaign, the rights holder must first sign and submit an Unglue.it Platform Services Agreement.
Unglue.it staff will review the credentials of the rights holder and enter it into the system, along with an email address and the username for the person who will use the Unglue.it rights holder tools on behalf of the rights holder.
If your unglue.it account has been associated with a rights holder, the name and contact address of that rights holder should appear above.
</li>
<li>
The next step for a rights holder is to claim works from the Unglue.it database. Find the work by adding it to you wishlist.
On the "details" tab of the work's page, you will find a form that allows you to enter a claim.
When you enter a claim, you will be asked to agree to terms and conditions, in which you agree that you're making the claim in good faith, and that you can substantiate that you have legal control over rights to the work.
</li>
</ol>
<h2>Rightsholder social media tools</h2>

View File

@ -1,55 +1,13 @@
{% extends "base.html" %}
{% block title %}
&#8212; Campaign for {{ work.title }}
{{ work.title }}
{% endblock %}
{% block extra_head %}
<link type="text/css" rel="stylesheet" href="/static/css/campaign.css" />
<!-- this was written with JS 1.4.2. does it work with the 1.6.3 in base.html? -->
<script type="text/javascript">
var $j = jQuery.noConflict();
$j(document).ready(function(){
$j('.tabs1').click(function(){
$j('#tabs').find('.active').removeClass('active');
$j(this).addClass('active');
$j('.content-block-content').find('.active').removeClass('active');
$j('#tabs-1').addClass('active').show(300);
$j('#tabs-2').hide(200);
$j('#tabs-3').hide(200);
$j('#tabs-4').hide(200);
});
$j('.tabs2').click(function(){
$j('#tabs').find('.active').removeClass('active');
$j(this).addClass('active');
$j('.content-block-content').find('.active').removeClass('active');
$j('#tabs-2').addClass('active').show(300);
$j('#tabs-1').hide(200);
$j('#tabs-3').hide(200);
$j('#tabs-4').hide(200);
});
$j('.tabs3').click(function(){
$j('#tabs').find('.active').removeClass('active');
$j(this).addClass('active');
$j('.content-block-content').find('.active').removeClass('active');
$j('#tabs-3').addClass('active').show(300);
$j('#tabs-2').hide(200);
$j('#tabs-1').hide(200);
$j('#tabs-4').hide(200);
});
$j('.tabs4').click(function(){
$j('#tabs').find('.active').removeClass('active');
$j(this).addClass('active');
$j('.content-block-content').find('.active').removeClass('active');
$j('#tabs-4').addClass('active').show(300);
$j('#tabs-2').hide(200);
$j('#tabs-1').hide(200);
$j('#tabs-3').hide(200);
});
});
</script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="/static/js/jquery-ui-1.8.16.custom.min.js"></script>
<script type="text/javascript" src="/static/js/tabs4.js"></script>
{% endblock %}
{% block content %}

40
static/js/tabs4.js Normal file
View File

@ -0,0 +1,40 @@
var $j = jQuery.noConflict();
$j(document).ready(function(){
$j('.tabs1').click(function(){
$j('#tabs').find('.active').removeClass('active');
$j(this).addClass('active');
$j('.content-block-content').find('.active').removeClass('active');
$j('#tabs-1').addClass('active').show(300);
$j('#tabs-2').hide(200);
$j('#tabs-3').hide(200);
$j('#tabs-4').hide(200);
});
$j('.tabs2').click(function(){
$j('#tabs').find('.active').removeClass('active');
$j(this).addClass('active');
$j('.content-block-content').find('.active').removeClass('active');
$j('#tabs-2').addClass('active').show(300);
$j('#tabs-1').hide(200);
$j('#tabs-3').hide(200);
$j('#tabs-4').hide(200);
});
$j('.tabs3').click(function(){
$j('#tabs').find('.active').removeClass('active');
$j(this).addClass('active');
$j('.content-block-content').find('.active').removeClass('active');
$j('#tabs-3').addClass('active').show(300);
$j('#tabs-2').hide(200);
$j('#tabs-1').hide(200);
$j('#tabs-4').hide(200);
});
$j('.tabs4').click(function(){
$j('#tabs').find('.active').removeClass('active');
$j(this).addClass('active');
$j('.content-block-content').find('.active').removeClass('active');
$j('#tabs-4').addClass('active').show(300);
$j('#tabs-2').hide(200);
$j('#tabs-1').hide(200);
$j('#tabs-3').hide(200);
});
});