Annotation of loncom/interface/mydesk.tab, revision 1.126.2.5

1.114     droeschl    1: # primary menu links
                      2: # Apache::lonmenu::primary_menu() generates a menu from these elements
                      3: # prim: item belongs to primary menu
                      4: # link: references the url
                      5: # icon: icon to show in case of a graphical item
                      6: # alt:  alt-text only if icon is not empty
                      7: # text: link text
                      8: # condition: when to show link, primary_menu will act upon this
                      9: #   possible conditions:
                     10: #   - empty: link is displayed if user is authenticated
                     11: #   - public: display link if user is public or authenticated 
                     12: #   - onlypublic: only show this link to public users
                     13: #   - newmsg: only display if there are new messages 
                     14: #   - nonewmsg: only display if there aren't any new messages
                     15: #   - roles: show Roles instead of Courses
                     16: #   - courses: show Courses instead of Roles
                     17: # prim:link:icon:alt:text:condition
1.126.2.4  raeburn    18: prim:/adm/about.html:/adm/lonIcons/minilogo.gif:LON-CAPA Logo:About:public
                     19: prim:/adm/communicate:::Messages:nonewmsg
                     20: prim:/adm/communicate:::New Messages:newmsg
                     21: prim:/adm/roles:::Roles:roles
                     22: prim:/adm/roles:::Courses:courses
                     23: prim:/adm/helpdesk:::Help:onlypublic
                     24: prim:/adm/roles:::Log In:onlypublic
1.114     droeschl   25: prim::::Help:
1.126.2.4  raeburn    26: prim:/adm/logout:::Logout:
1.114     droeschl   27: 
                     28: # secondary menu links
                     29: # Apache::lonmenu::secondary_menu() generates a menu from these elements
                     30: # scnd: item belongs to secondary menu
                     31: # link: references the url
                     32: # icon: icon to show in case of a graphical item
                     33: # alt:  alt-text only if icon is not empty
                     34: # text: link text
                     35: # condition: when to show link, secondary_menu will act upon this
                     36: #   possible conditions:
                     37: #   - empty: 
                     38: #   - showreturn: link is displayed if return link is wanted
1.117     raeburn    39: #   - mdcCommunity: user can modify course contents and course is of type Community
                     40: #   - mdcCourse: user can modify course contents and course is a regular course
1.114     droeschl   41: #   - showgroups: user is member of a group
                     42: #   - always: show this link even if user hasn't selected a role
                     43: #   - remotenav: remote navmap is activated
                     44: #   - noremotenav: remote navmap is _not_ activated
1.117     raeburn    45: #   - remotenavCommunity: remote navmap is activated 
                     46: #                         and course is of type Community
                     47: #   - noremotenavCommunity: remote navmap is _not_ activated 
                     48: #                          and course is of type Community
1.114     droeschl   49: # prim:link:icon:alt:text:condition
1.115     raeburn    50: scnd:/adm/menu:::Main Menu:always
                     51: scnd:/adm/flip?postdata=return%3a:::Return to Last Location:showreturn
                     52: scnd:/adm/navmaps?postdata=[url]&postsymb=[symb]:::Course Contents:noremotenav
                     53: scnd:/adm/navmaps?postdata=[url]&postsymb=[symb]:::Course Contents:remotenav
1.117     raeburn    54: scnd:/adm/navmaps?postdata=[url]&postsymb=[symb]:::Community Contents:noremotenavCommunity
                     55: scnd:/adm/navmaps?postdata=[url]&postsymb=[symb]:::Community Contents:remotenavCommunity
1.116     raeburn    56: scnd:/adm/coursedocs:::Course Editor:mdcCourse
                     57: scnd:/adm/coursedocs:::Community Editor:mdcCommunity
1.115     raeburn    58: scnd:/adm/coursegroups:::Groups:showgroups
                     59: scnd:/adm/roles:::Roles:
1.126.2.2  raeburn    60: scnd:/priv/[uname]/:::Construction Space:author
                     61: scnd:/res/[udom]/[uname]/?launch=1:::Browse:author
1.114     droeschl   62: 
1.80      www        63: # Categories
1.81      www        64: # cat:column,row:title
1.109     www        65: cat:0,0:none:No category, inline menu
1.80      www        66: cat:1,2:com:Communication
1.81      www        67: cat:1,3:set:My Space
1.80      www        68: cat:2,1:umn:User Management
                     69: cat:2,2:cmn:Course Management
1.117     raeburn    70: cat:2,2:cmm:Community Management
                     71: cat:2,2:ccm:Course/Community Management
1.82      www        72: cat:2,3:dom:Domain Management
                     73: cat:2,4:grd:Grading and Statistics
                     74: cat:2,5:crc:Course Content
1.117     raeburn    75: cat:2,5:cmc:Community Content
1.80      www        76: cat:1,1:rol:My Roles
1.117     raeburn    77: cat:1,1:rcr:My Courses/Communities
1.81      www        78: cat:1,4:cnt:Content Library
                     79: cat:2,6:oth:Other
1.80      www        80: 
1.18      matthew    81: # 
1.80      www        82: # row:col:pro:prt:img:top:bot:act:txt:cat
1.74      albertel   83: # row-> row of remote to appear on
                     84: # col-> col of remote to appear on
                     85: # pro-> when to show the button
                     86: # prt-> parameter to pro
                     87: # img-> img for the button
                     88: # top-> txt for the top row of the remote
                     89: # bot-> txt for the bottom row of the remote
                     90: # act-> javascrtip to excute when clicked
                     91: # txt-> text to display in the extended remote or inline remote
1.109     www        92: # cat-> category that this belongs into (or "none" if in top menus)
1.18      matthew    93: #
1.117     raeburn    94: # pro = clear		clear the button
                     95: # pro = any      	any permission level is allowed this button
                     96: # pro = smp      	allowed if $ENV{'user.adv'} is undefined
                     97: # pro = adv      	allowed if $ENV{'user.adv'} is defined
                     98: # pro = shc      	allowed if should use 'course' rather than 'role'
                     99: # pro = nsc      	allowed if should not use 'course' rather than 'role'
                    100: # pro = author   	prt = rca and user is a co-author
                    101: # pro = author   	prt = any 
                    102: # pro = p???     	allowed if the user has the permissions given in ???
                    103: # course         	allowed if in course
                    104: # community	 	allowed if in community
                    105: # course_p???    	allowed if in course and have permissions
                    106: # community_p??	 	allowed if in community and have permissions	
                    107: # courseenv_??   	allowed if in course and course environment key exists
                    108: # communityenv_??   	allowed if in community and course environment key exists
                    109: # author         	allowed if an author
                    110: # tools          	allowed if user has access to particular user tool (= prt)
                    111: # editpriv       	allowed if user has edit privileges for current resource 
                    112: # retlink        	there is a valid location to return to
1.109     www       113: 
                    114: # 0 is very top menu line
                    115: 
                    116: 0:1:any:any::::go('/adm/communicate');:Messages:none
                    117: 0:2:shc:any::::go('/adm/roles');:Courses:none
                    118: 0:2:shc:rst::::go('/adm/roles');:Courses:none
                    119: 0:2:nsc:any::::go('/adm/roles');:Roles:none
                    120: 0:2:nsc:rcm::::go('/adm/roles');:Roles:none
                    121: 0:3:any:any::::helpMenu('display');:Help:none
                    122: 0:4:any:any::::go('/adm/logout');:Logout:none
                    123: 
                    124: # 15 is primary inline menu
                    125: 
                    126: 15:1:any:any::::go('/adm/menu');:Main Menu:none
                    127: 
                    128: # 16 is secondary inline menu
                    129: 
                    130: 
                    131: # 0<n<15 is remote and main menu
                    132: 
1.86      albertel  133: 1:1:shc:any:courses.gif:choose[_1]:course[_1]:go('/adm/roles');:Choose the course to work on:rcr
                    134: 1:1:shc:rst:courses.gif:switch[_1]:course[_2]:go('/adm/roles');:Switch to another course:rcr
                    135: 1:1:nsc:any:roles.gif:switch[_2]:role[_1]:go('/adm/roles');:Switch to another user role:rol
                    136: 1:1:nsc:rcm:roles.gif:choose[_2]:role[_2]:go('/adm/roles');:Choose the user role:rol
1.30      www       137: 1:2:clear
1.112     raeburn   138: 1:2:course:any:docs.gif:supplem-[_1]:entaldoc[_1]:go('/adm/coursedocs');:View supplemental course documents:crc
1.117     raeburn   139: 1:2:community:any:docs.gif:supplem-[_1]:entaldoc[_1]:go('/adm/coursedocs');:View supplemental community documents:cmc
1.120     raeburn   140: 1:2:pmdc:$crs:docs.gif:course[_7]:editor[_1]:go('/adm/coursedocs');:Edit course contents:crc
1.117     raeburn   141: 1:2:pmdc:$cmty:docs.gif:communi-[_1]:ty edit[_1]:go('/adm/coursedocs');:Edit community contents:cmc
1.4       www       142: 2:1:clear
                    143: 2:2:clear
1.126.2.1  raeburn   144: 2:2:course:any:nav.gif:course[_3]:contents[_1]:gopost('/adm/navmaps','');:Table of course contents:crc
                    145: 2:2:community:any:nav.gif:commun[_1]:contents[_2]:gopost('/adm/navmaps','');:Table of community contents:cmc
1.4       www       146: 2:3:clear
                    147: 3:1:clear
                    148: 4:1:clear
1.80      www       149: 4:1:course:any:grds.gif:my[_1]:grades[_1]:go('/adm/quickgrades');:View current problem status and grading information:grd
1.117     raeburn   150: 4:1:community:any:grds.gif:my[_1]:grades[_1]:go('/adm/quickgrades');:View current problem status and grading information:grd
1.80      www       151: 4:1:pvgr:$crs:sprs.gif:course[_4]:grades[_2]:go('/adm/classcalc');:View calculated grades (Spreadsheet):grd
1.117     raeburn   152: 4:1:pvgr:$cmty:sprs.gif:communi-[_2]:ty grade[_1]:go('/adm/classcalc');:View calculated grades (Spreadsheet):grd
1.4       www       153: 4:2:clear
1.80      www       154: 4:2:pvgr:$crs:chrt.gif:course[_5]:chart[_1]:gopost('/adm/statistics?reportSelected=student_assessment','Student Assessment');:View the course assessment progress chart:grd
1.117     raeburn   155: 4:2:pvgr:$cmty:chrt.gif:communi-[_3]:ty chart[_1]:gopost('/adm/statistics?reportSelected=student_assessment','Student Assessment');:View the community assessment progress chart:grd
1.4       www       156: 4:3:clear
1.80      www       157: 4:3:pvgr:$crs:stat.gif:course[_6]:stats[_1]:gopost('/adm/statistics','Problem Statistics');:View course assessment statistics:grd
1.117     raeburn   158: 4:3:pvgr:$cmty:stat.gif:communi-[_4]:ty stats[_1]:gopost('/adm/statistics','Problem Statistics');:View community assessment statistics:grd
1.4       www       159: 5:1:clear
1.115     raeburn   160: 5:1:any:any:ccat.gif:course[_13]:catalog[_1]:go('/adm/coursecatalog');:Display catalog of courses and communities:oth
1.87      raeburn   161: 5:2:courseenv_student_classlist_view:any:clst.gif:course[_12]:roster[_1]:go('/adm/viewclasslist');:View course roster:umn
1.117     raeburn   162: 5:2:communityenv_student_classlist_view:any:clst.gif:communi-[_5]:ty list[_1]:go('/adm/viewclasslist');:View community membership:umn
1.87      raeburn   163: 5:2:pvcl:$crs:clst.gif:course[_12]:roster[_1]:go('/adm/createuser?action=listusers');:View class lists:umn
1.117     raeburn   164: 5:2:pvcl:$cmty:clst.gif:course[_12]:roster[_1]:go('/adm/createuser?action=listusers');:View membership lists:umn
1.108     bisitz    165: 5:2:pcst:$crs:cprv.gif:user[_1]:privs[_1]:go('/adm/createuser');:Manage course users:umn
1.117     raeburn   166: 5:2:pcst:$cmty:cprv.gif:user[_1]:privs[_1]:go('/adm/createuser');:Manage community users:umn
1.108     bisitz    167: 5:2:pcca:$requested_domain:cprv.gif:user[_1]:privs[_1]:go('/adm/createuser');:Manage co-authors:umn
                    168: 5:2:pcdc:/:cprv.gif:user[_1]:privs[_1]:go('/adm/createuser');:Create users or modify the roles and privileges of users:umn
                    169: 5:2:pmau:$requested_domain:cprv.gif:user[_1]:privs[_1]:go('/adm/createuser');:Create users or modify the roles and privileges of users:umn
1.4       www       170: 5:3:clear
1.119     raeburn   171: 5:3:pccc:$requested_domain:ccrs.gif:course[_8]:creation[_1]:go('/adm/createcourse');:Course and community creation:ccm
1.80      www       172: 5:3:popa:$crs:parm.gif:course[_9]:parms[_1]:go('/adm/parmset');:Modify parameter settings (due dates, etc) for resources and the course:cmn
1.117     raeburn   173: 5:3:popa:$cmty:parm.gif:communi-[_6]:ty parms[_1]:go('/adm/parmset');:Modify parameter settings (due dates, etc) for resources and the community:cmm
1.73      www       174: 6:1:clear
1.92      bisitz    175: 6:1:author:rau:cstr.gif:con-[_1]:struct[_1]:go('/priv/$uname/');:Enter my construction space:set
1.83      www       176: 6:1:author:rca:cstr.gif:co con-[_1]:struct[_2]:go('/priv/$caname/');:Enter construction space as a co-author:set
1.91      raeburn   177: 6:1:author:raa:cstr.gif:co con-[_1]:struct[_2]:go('/priv/$caname/');:Enter construction space as an assistant co-author:set
1.80      www       178: 6:1:pmau:$requested_domain:conf.gif:domain[_1]:config[_1]:go('/adm/domainprefs');:Set domain configuration:dom
1.5       www       179: 6:2:clear
1.122     raeburn   180: 6:2:pbro:/res/:res.gif:resource[_1]:space[_1]:go('/res/?launch=1');:Browse own authored or co-authored resources:cnt
1.81      www       181: 6:2:pbre:$requested_domain:res.gif:resource[_1]:space[_1]:go('/res/$udom/?launch=1');:Browse published resources:cnt
                    182: 6:2:author:rau:res.gif:resource[_1]:space[_1]:go('/res/$udom/$uname/?launch=1');:Browse published resources:cnt
                    183: 6:2:author:rca:res.gif:co res[_1]:space[_2]:go('/res/$udom/$uname/?launch=1');:Browse published resources:cnt
1.6       www       184: 6:3:clear
1.118     raeburn   185: 6:3:pccc:$requested_domain:mcrs.gif:modify[_1]:course[_15]:go('/adm/modifycourse');:View or modify a course or community:ccm
1.63      www       186: 7:1:clear
1.96      raeburn   187: 7:1:pmau:$requested_domain:srvr.gif:server[_1]:status[_1]:go('/adm/domainstatus');:Status of domain servers:dom
1.98      hauer     188: 7:1:pwhn:$crs:new.gif:what is[_1]:new[_1]:go('/adm/whatsnew');:What's New?:cmn
1.117     raeburn   189: 7:1:pwhn:$cmty:new.gif:what is[_1]:new[_1]:go('/adm/whatsnew');:What's New?:cmm
1.13      www       190: 7:2:clear
1.93      bisitz    191: 7:2:adv:rcm:egrd.gif:enter[_1]:grades[_3]:go('/adm/grades');:Enter grades from check-out assessment resources:oth
1.106     www       192: 7:2:pusc:$requested_domain:sctr.gif:send bub[_1]:blesheet[_1]:gocmd('/adm/grades','scantronupload');:Send bubblesheet data to a course:oth
1.89      raeburn   193: 7:3:clear
1.94      raeburn   194: 7:3:pmky:$requested_domain:keys.gif:manage[_1]:acc keys[_1]:go('/adm/managekeys');:Manage Access Keys:dom
1.111     raeburn   195: 8:1:clear
1.117     raeburn   196: 8:1:tools:reqcrsshc:rcrs.gif:request[_1]:course[_16]:go('/adm/requestcourse');:Course/Community requests:rcr
                    197: 8:1:tools:reqcrsnsc:rcrs.gif:request[_1]:course[_16]:go('/adm/requestcourse');:Course/Community requests:rol
1.80      www       198: 9:2:any:any:vbkm.gif:view[_1]:bookmark[_1]:edit_bookmarks():Use or edit my bookmark collection:set
1.20      www       199: 10:1:clear
1.117     raeburn   200: 10:1:any:any:anno.gif:calendar[_1]:announce[_1]:go('/adm/announcements');:Announcements and my calendar:com
                    201: 10:1:course:any:anno.gif:calendar[_1]:announce[_1]:go('/adm/announcements');:Course anouncements and my calendar:com
                    202: 10:1:community:any:anno.gif:calendar[_1]:announce[_1]:go('/adm/announcements');:Community announcements and my calendar:com
1.123     raeburn   203: 10:2:any:any:com.gif:commu-[_1]:nication[_1]:go('/adm/communicate');:Send and display messages:com
1.20      www       204: 10:3:clear
1.80      www       205: 10:3:ppsa:$requested_domain:mail.gif:bulk[_1]:e-mail[_1]:go('/adm/notify');:Send and display broadcast e-mail:com
1.100     hauer     206: 10:3:course_plc:any:bchat.gif:course[_10]:chatroom[_1]:chat_win();:Enter the chat room for the course:com
1.117     raeburn   207: 10:3:community_plc:any:bchat.gif:communi-[_7]:ty chat[_1]:chat_win();:Enter the chat room for the community:com
1.36      matthew   208: 11:1:clear
1.93      bisitz    209: 11:1:course:any:grps.gif:course[_14]:groups[_1]:go('/adm/coursegroups');:Enter my groups in the course:set
1.117     raeburn   210: 11:1:community:any:grps.gif:communi-[_8]:ty group[_1]:go('/adm/coursegroups');:Enter my groups in the community:set
1.93      bisitz    211: 11:1:course_vcg:any:grps.gif:course[_14]:groups[_1]:go('/adm/coursegroups');:Enter any group in the course:cmn
                    212: 11:1:course_mdg:any:grps.gif:course[_14]:groups[_1]:go('/adm/coursegroups');:Edit any group in the course:cmn
1.117     raeburn   213: 11:1:community_vcg:any:grps.gif:communi-[_8]:ty group[_1]:go('/adm/coursegroups');:Enter any group in the community:cmm
                    214: 11:1:community_mdg:any:grps.gif:communi-[_8]:ty group[_1]:go('/adm/coursegroups');:Edit any group in the community:cmm
1.95      raeburn   215: 11:2:tools:portfolio:port.gif:port-[_1]:folio[_1]:go('/adm/portfolio');:Enter my portfolio space:set
                    216: 11:3:tools:blog:blog.gif:edit[_1]:blogs[_1]:go('/adm/$udom/$uname/_rss.html');:Edit blogs, RSS feeds, and podcasts:set
1.73      www       217: 12:1:clear
1.81      www       218: 12:1:any:any:src.gif:search[_3]:prtfolio[_1]:go('/adm/searchcat');:Search the database of accessible portfolio files:cnt
                    219: 12:1:course:any:src.gif:search[_1]:course[_11]:go('/adm/searchcat');:Search the contents of this course or accessible portfolio files:cnt
1.117     raeburn   220: 12:1:community:any:src.gif:search[_2]:commun[_1]:go('/adm/searchcat');:Search the contents of this community or accessible portfolio files:cnt
1.81      www       221: 12:1:pbre:$requested_domain:src.gif:search[_2]:library[_1]:go('/adm/searchcat');:Search the database of published resources and accessible portfolio files:cnt
1.80      www       222: 12:2:any:any:pref.gif:prefer-[_1]:ences[_1]:go('/adm/preferences');:Set my user preferences:set
1.102     raeburn   223: 12:3:clear
1.104     raeburn   224: 12:3:course:any:rsrv.gif:reserv-[_1]:ations[_1]:gocmd('/adm/slotrequest','manageresv');:Manage reservations:cmn
1.117     raeburn   225: 12:3:community:any:rsrv.gif:reserv-[_1]:ations[_1]:gocmd('/adm/slotrequest','manageresv');:Manage reservations:cmm
1.103     raeburn   226: 12:3:pmgr:$crs:rsrv.gif:reserv-[_1]:ations[_1]:gocmd('/adm/slotrequest','showslots');:Manage slots:cmn
1.117     raeburn   227: 12:3:pmgr:$cmty:rsrv.gif:reserv-[_1]:ations[_1]:gocmd('/adm/slotrequest','showslots');:Manage slots:cmm
1.126     raeburn   228: 13:1:clear
1.126.2.2  raeburn   229: 13:1:popa:$crs:crsconf.gif:course[_17]:config[_2]:go('/adm/courseprefs');:Modify course configuration:cmn
                    230: 13:1:popa:$cmty:crsconf.gif:communi-[_9]:ty config[_1]:go('/adm/courseprefs');:Modify community configuration:cmm
1.105     hauer     231: 13:2:any:any:logout.gif:logout[_1]: [_1]:go('/adm/logout');:Logout:oth

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>