VRFS-1921 legal policy links are now specific to environment, fixed bug with legal policy link on Session Info page
This commit is contained in:
parent
c8162f55ca
commit
4aa359fc13
|
|
@ -419,15 +419,15 @@ module JamRuby
|
|||
|
||||
def legal_policy_url
|
||||
# TODO: move to DB or config file or helper
|
||||
case legal_policy
|
||||
case legal_policy.downcase
|
||||
when "standard"
|
||||
return "http://www.jamkazam.com/session-legal-policies/standard"
|
||||
return "session-legal-policies/standard"
|
||||
when "creative"
|
||||
return "http://www.jamkazam.com/session-legal-policies/creativecommons"
|
||||
return "session-legal-policies/creativecommons"
|
||||
when "offline"
|
||||
return "http://www.jamkazam.com/session-legal-policies/offline"
|
||||
return "session-legal-policies/offline"
|
||||
when "jamtracks"
|
||||
return "http://www.jamkazam.com/session-legal-policies/jamtracks"
|
||||
return "session-legal-policies/jamtracks"
|
||||
else
|
||||
return ""
|
||||
end
|
||||
|
|
|
|||
|
|
@ -300,24 +300,24 @@
|
|||
This is a good option to choose when following normal legal conventions works - i.e. session participants agree
|
||||
that whoever holds the copyright on the music being performed maintains all ownership rights and interests in
|
||||
the music. Use the following link for full legal details of this choice:
|
||||
<a href="http://www.jamkazam.com/session-legal-policies/standard" target="_blank">www.jamkazam.com/session-legal-policies/standard</a>.
|
||||
<a href="<%= root_url %>session-legal-policies/standard" target="_blank"><%= root_url %>session-legal-policies/standard</a>.
|
||||
</div>
|
||||
<div class="info-box hidden" policy-type="Creative Commons">
|
||||
This is a good option to choose when the session participants are creating new music that is not
|
||||
already copyrighted, and when the musicians can agree that everyone will share ownership of any
|
||||
music created in the session. Use the following link for full legal details of this choice:
|
||||
<a href="http://www.jamkazam.com/session-legal-policies/creativecommons" target="_blank">www.jamkazam.com/session-legal-policies/creativecommons</a>
|
||||
<a href="<%= root_url %>session-legal-policies/creativecommons" target="_blank"><%= root_url %>session-legal-policies/creativecommons</a>
|
||||
</div>
|
||||
<div class="info-box hidden" policy-type="Offline">
|
||||
This is a good option to choose when the session participants are already made an offline agreement
|
||||
in the real world about who owns what, and when agreeing to the standard legal provisions doest not
|
||||
adequately or accurately cover your legal bases. Use the following link for full legal details of this choice:
|
||||
<a href="http://www.jamkazam.com/session-legal-policies/offline" target="_blank">www.jamkazam.com/session-legal-policies/offline</a>
|
||||
<a href="<%= root_url %>session-legal-policies/offline" target="_blank"><%= root_url %>session-legal-policies/offline</a>
|
||||
</div>
|
||||
<div class="info-box hidden" policy-type="Jamtracks">
|
||||
This option must be selected when the musicians in a session will be playing one or more JamTracks.
|
||||
Use the following link for full legal details of this choice:
|
||||
<a href="http://www.jamkazam.com/session-legal-policies/jamtracks" target="_blank">www.jamkazam.com/session-legal-policies/jamtracks</a>
|
||||
<a href="<%= root_url %>session-legal-policies/jamtracks" target="_blank"><%= root_url %>session-legal-policies/jamtracks</a>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@
|
|||
.right.w75.ib.mb10.legal_policy
|
||||
= @music_session.legal_policy.capitalize
|
||||
agreement (
|
||||
%a.gold{:href => "#{@music_session.legal_policy_url}", :target => "_blank"} View full legal details
|
||||
%a.gold{:href => "#{root_url}#{@music_session.legal_policy_url}", :target => "_blank"} View full legal details
|
||||
)
|
||||
.clearall.left.w20.ib.mb10
|
||||
%strong Fan Page:
|
||||
|
|
|
|||
Loading…
Reference in New Issue