Skip to content
Snippets Groups Projects
Commit 86d27961 authored by Mike McKay's avatar Mike McKay
Browse files

Fixed project page for project members by making it behave like it did in XNAT...

Fixed project page for project members by making it behave like it did in XNAT 1.6. For users who are members but not owners of a project, the Access, Manage, and Pipelines tabs do not show up, and they cannot edit anything on the Details tab. We can revisit this later if needed, but existing behavior should be sufficient for the beta.
parent b7d7120b
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@
#if($other == 0)
<DIV class="containerItem" style="color:grey">$other Other Experiments</DIV>
#end
#if($data.getSession().getAttribute("userHelper").canCreate($project))
#if($data.getSession().getAttribute("userHelper").isOwner($project.getId()))
<BR><A ID="button5" href="$link.setAction("XDATActionRouter").addPathInfo("xdataction","protocols").addPathInfo(
"search_element","xnat:projectData").addPathInfo("search_field","xnat:projectData.ID").addPathInfo(
"search_value","$!{project.getId()}").addPathInfo("popup","$!popup")">Manage Custom Variables</A>
......
......@@ -48,7 +48,7 @@
</tr>
#end
</table>
#if($data.getSession().getAttribute("userHelper").canCreate($project))
#if($data.getSession().getAttribute("userHelper").isOwner($project.getId()))
<BR><A ID="button1" href="$link.setAction("XDATActionRouter").addPathInfo("xdataction","edit").addPathInfo(
"search_element","xnat:projectData").addPathInfo("search_field","xnat:projectData.ID").addPathInfo(
"search_value","$!{project.getId()}").addPathInfo("popup","$!popup")">Edit Details</A>
......
......@@ -101,6 +101,7 @@
</script>
</td>
</tr>
</table>
<script language="javascript">
function summaryUserTabChange(obj){
......
......@@ -7,7 +7,7 @@
"userHelper").getBrowseableElementDisplay($key).getSchemaElement().getPluralDescription()</DIV>
#end
#if($data.getSession().getAttribute("userHelper").canCreate($project))
#if($data.getSession().getAttribute("userHelper").isOwner($project.getId()))
<BR><A ID="button5" href="$link.setAction("XDATActionRouter").addPathInfo("xdataction","protocols").addPathInfo(
"search_element","xnat:projectData").addPathInfo("search_field","xnat:projectData.ID").addPathInfo(
"search_value","$!{project.getId()}").addPathInfo("popup","$!popup")">Manage Custom Variables</A>
......
......@@ -5,12 +5,10 @@
<li class="selected"><a href="#tab1"><em>Details</em></a></li>
#set($canReadSubjects=$data.getSession().getAttribute("userHelper").canRead(
"xnat:subjectData/project","$project.getId()"))
#if($canReadSubjects)
#if($data.getSession().getAttribute("userHelper").canDelete($project))
#if($data.getSession().getAttribute("userHelper").isOwner($project.getId()))
<li><a href="#tab3"><em>Access</em></a></li>
<li><a href="#othermgmt"><em>Manage</em></a></li>
<li><a href="#tab4"><em>Pipelines</em></a></li>
#end
#end
#foreach($tab in $tabs)
<li><a href="#$tab.getProperty("divName")"><em>$tab.getProperty("title")
......@@ -23,8 +21,7 @@
<p>#parse($turbineUtils.getTemplateName("_summary_details","xnat:projectData",$project.getId()))</p>
</div>
#if($canReadSubjects)
#if($data.getSession().getAttribute("userHelper").canCreate($project))
#if($data.getSession().getAttribute("userHelper").isOwner($project.getId()))
<div id="tab3">
<p>#parse($turbineUtils.getTemplateName(
"_summary_management","xnat:projectData",$project.getId()))</p>
......@@ -37,7 +34,6 @@
<p>#parse($turbineUtils.getTemplateName(
"_summary_pipeline","xnat:projectData",$project.getId()))</p>
</div>
#end
#end
#foreach($tab in $tabs)
<div id="$tab.getProperty("divName")">
......@@ -60,14 +56,10 @@
window.summaryTabView = new YAHOO.widget.TabView('projectSummary');
var oButton1 = new YAHOO.widget.Button("button1");
var oButton2 = new YAHOO.widget.Button("button2");
#if($canReadSubjects)
#if($data.getSession().getAttribute("userHelper").canDelete($project))
var oButton3 = new YAHOO.widget.Button("button3");
#end
#if($data.getSession().getAttribute("userHelper").canCreate($project))
var oButton4 = new YAHOO.widget.Button("button4");
var oButton5 = new YAHOO.widget.Button("button5");
#end
#if($data.getSession().getAttribute("userHelper").isOwner($project.getId()))
var oButton3 = new YAHOO.widget.Button("button3");
var oButton4 = new YAHOO.widget.Button("button4");
var oButton5 = new YAHOO.widget.Button("button5");
#end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment