Changeset 6991
- Timestamp:
- Nov 2, 2015, 11:18:48 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 6 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/clients/web/net/sf/basedb/clients/web/resources/common.properties
r6798 r6991 108 108 item.tag Tag 109 109 item.tag+ Tags 110 item.kit Kit 111 item.kit+ Kits 110 112 item.bioplate Bioplate 111 113 item.bioplate+ Bioplates -
trunk/src/clients/web/net/sf/basedb/clients/web/resources/menu.properties
r6756 r6991 114 114 extracts.tooltip.1 Manage extracts 115 115 extracts.tooltip.0 You do not have permission to manage extracts 116 # --------------- 116 117 tags.tooltip.1 Manage tags 117 118 tags.tooltip.0 You do not have permission to manage tags 119 kits.tooltip.1 Manage kits 120 kits.tooltip.0 You do not have permission to manage kits 118 121 # -------------- 119 122 bioplates.tooltip.1 Manage bio plates -
trunk/www/include/menu.jsp
r6759 r6991 688 688 final boolean hasBioPlateTypes = !sc.hasPermission(Permission.DENIED, Item.BIOPLATETYPE); 689 689 final boolean hasBioPlateEventTypes = !sc.hasPermission(Permission.DENIED, Item.BIOPLATEEVENTTYPE); 690 691 final boolean hasKits = !sc.hasPermission(Permission.DENIED, Item.KIT); 692 690 693 final boolean hasBioLims = hasTags || hasBioSources || hasSamples || hasExtracts || 691 hasBioPlates || hasBioPlateTypes || hasBioPlateEventTypes; 694 hasBioPlates || hasBioPlateTypes || hasBioPlateEventTypes || 695 hasKits; 692 696 693 697 if (hasBioLims) … … 716 720 enabled="<%=hasExtracts%>" 717 721 /> 722 <m:menuseparator /> 718 723 <m:menuitem 719 724 title="<%=common.getString("item.tag+")%>" … … 721 726 tooltip="<%=menu.getString("tags.tooltip", hasTags)%>" 722 727 enabled="<%=hasTags%>" 728 /> 729 <m:menuitem 730 title="<%=common.getString("item.kit+")%>" 731 url="<%=root+"biomaterials/kits/index.jsp?ID="+ID%>" 732 tooltip="<%=menu.getString("kits.tooltip", hasKits)%>" 733 enabled="<%=hasKits%>" 723 734 /> 724 735 <m:menuseparator /> -
trunk/www/include/scripts/main-2.js
r6916 r6991 1996 1996 controllers['JOB'] = { url:'views/jobs/index.jsp', width:750, height:500, popup:true, edit:false }; 1997 1997 controllers['JOBAGENT'] = { url:'admin/jobagents/index.jsp', width:750, height:500 }; 1998 controllers['KIT'] = { url:'biomaterials/kits/index.jsp', width:750, height:500 }; 1998 1999 controllers['MESSAGE'] = { url:'my_base/messages/index.jsp', width:600, height:400, popup:true, edit:false }; 1999 2000 controllers['MIMETYPE'] = { url:'admin/mimetypes/index.jsp', width:600, height:400 };
Note: See TracChangeset
for help on using the changeset viewer.