2008-07-25 08:26:05 +00:00
|
|
|
<script type="text/javascript" src="{media '/idf/js/jquery.hotkeys.js'}"></script>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
// <!--
|
2008-11-27 08:18:33 +00:00
|
|
|
{hotkey 'Shift+h', 'IDF_Views::faq'}
|
|
|
|
{if $project}
|
2010-10-09 11:53:01 +00:00
|
|
|
{hotkey 'Shift+u', 'IDF_Views_Project::timeline', array($project.shortname, 'all')}
|
2008-08-07 13:35:03 +00:00
|
|
|
{if $hasIssuesAccess}{hotkey 'Shift+a', 'IDF_Views_Issue::create', array($project.shortname)}
|
|
|
|
{hotkey 'Shift+i', 'IDF_Views_Issue::index', array($project.shortname)}{/if}
|
|
|
|
{if $hasDownloadsAccess}{hotkey 'Shift+d', 'IDF_Views_Download::index', array($project.shortname)}{/if}
|
2011-11-13 00:09:11 +00:00
|
|
|
{if $hasWikiAccess}{hotkey 'Shift+o', 'IDF_Views_Wiki::listPages', array($project.shortname)}{/if}
|
2008-09-12 10:38:13 +00:00
|
|
|
{if $hasSourceAccess}{hotkey 'Shift+s', 'IDF_Views_Source::treeBase', array($project.shortname, $project.getScmRoot())}{/if}
|
2008-08-07 13:35:03 +00:00
|
|
|
{if $hasIssuesAccess and !$user.isAnonymous()}
|
2011-10-04 08:05:42 +00:00
|
|
|
{hotkey 'Shift+m', 'IDF_Views_Issue::userIssues', array($project.shortname, $user.login, 'submit')}
|
|
|
|
{hotkey 'Shift+w', 'IDF_Views_Issue::userIssues', array($project.shortname, $user.login, 'owner')}
|
2008-11-27 08:18:33 +00:00
|
|
|
{/if}{/if} //-->
|
2008-07-25 08:26:05 +00:00
|
|
|
</script>
|
2008-11-27 08:18:33 +00:00
|
|
|
|