Added a hotkey tag to easily add them.
Added a new Shift+m hotkey to access the list of submitted issues.
This commit is contained in:
parent
cc5ec30e6a
commit
d19dbb441c
36
src/IDF/Template/HotKey.php
Normal file
36
src/IDF/Template/HotKey.php
Normal file
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||||
/*
|
||||
# ***** BEGIN LICENSE BLOCK *****
|
||||
# This file is part of InDefero, an open source project management application.
|
||||
# Copyright (C) 2008 Céondo Ltd and contributors.
|
||||
#
|
||||
# InDefero is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# InDefero is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
# ***** END LICENSE BLOCK ***** */
|
||||
|
||||
Pluf::loadFunction('Pluf_HTTP_URL_urlForView');
|
||||
|
||||
/**
|
||||
* Hotkey tag.
|
||||
*/
|
||||
class IDF_Template_HotKey extends Pluf_Template_Tag
|
||||
{
|
||||
function start($key, $view, $params=array(), $get_params=array())
|
||||
{
|
||||
$url = addslashes(Pluf_HTTP_URL_urlForView($view, $params, $get_params));
|
||||
echo "jQuery.hotkeys.add('$key',function (){window.location.href='$url';});";
|
||||
}
|
||||
}
|
@ -2,12 +2,11 @@
|
||||
{if $project}
|
||||
<script type="text/javascript" charset="utf-8">
|
||||
// <!--
|
||||
var hk_submit_issue = '{url 'IDF_Views_Issue::create', array($project.shortname)}';
|
||||
var hk_recent_issues = '{url 'IDF_Views_Issue::index', array($project.shortname)}';
|
||||
{literal}
|
||||
jQuery.hotkeys.add('Shift+a',function (){window.location.href=hk_submit_issue;});
|
||||
jQuery.hotkeys.add('Shift+r',function (){window.location.href=hk_recent_issues;});
|
||||
{/literal} //-->
|
||||
{hotkey 'Shift+a', 'IDF_Views_Issue::create', array($project.shortname)}
|
||||
{hotkey 'Shift+r', 'IDF_Views_Issue::index', array($project.shortname)}
|
||||
{if !$user.isAnonymous()}
|
||||
{hotkey 'Shift+m', 'IDF_Views_Issue::myIssues', array($project.shortname, 'submit')}
|
||||
{/if} //-->
|
||||
</script>
|
||||
|
||||
{/if}
|
||||
|
Loading…
Reference in New Issue
Block a user