Using Keyboard Shortcuts on JIRA

분류없음 | 2008/03/07 12:58 | 낭만곰팅

Keyboard shortcuts provide a quick and easy way of navigating though JIRA without having to take your fingers off the keyboard.

Activating Shortcuts

Shortcuts are activated by simultaneously pressing the modifier key and the specific access key. For example, pressing 'Alt + C' in Firefox (on Windows) will create a new issue.

The access key is an identifying key for a particular page element. The access key is commonly identified by the underlined character on the element label.

Access Keys

The shortcuts that are currently available, and their default access keys, are:

Operation Default Access Key Description
Home H Redirects you to your Dashboard.
Browse Projects B Redirects you to the Browse Projects page.
Find Issues F Redirects you to the Issue Navigator.
Create New Issue C Redirects you to the Create Issue page.
Administration A Redirects you to the Administration page (if you have appropriate permission).
Quick Search Q Directs your cursor to the Quick Search text box in the top right-hand corner.
Comment M On the View Issue screen, opens and focuses on the comment box.
Edit E On the View Issue screen, edits the issue (if you have appropriate permission).
Next N On the View Issue screen (if you got there via the Issue Navigator), navigates to the next issue.
Previous P On the View Issue screen (if you got there via the Issue Navigator), navigates to the next issue.
Submit S Submits any form.
Cancel `(backquote) Cancels any form.
Remember Me R Automatically checks the 'Remember me' checkbox on the Login page.

Modifier Keys

The modifier key will differ with each operating system and browser. For example, when running Firefox on Mac OSX you will need to type 'Ctrl' + 'S' to submit a form, while on Windows you will need to type 'Alt' + 'S'. The following table identifies the modifier keys for the various combinations:

Browser Mac OSX Windows UNIX/Linux
Internet Explorer Ctrl Alt Alt
Mozilla Firefox 2 Ctrl Alt + Shift Alt + Shift
Mozilla Firefox 1 Ctrl Alt Alt
Opera Shift + Esc Shift + Esc Shift + Esc
Safari Ctrl Ctrl Ctrl
Note
- In Internet Explorer, links will only be highlighted by shortcut keys; you will need to press Enter to proceed. Buttons, however, are activated through the shortcut.
- In Opera, buttons will only be highlighted by shortcut keys; you will need to press Enter to proceed.


2008/03/07 12:58 2008/03/07 12:58

Visual Studio(이하 VS) 2005의 기능 중 하나인 HTML Validation은 사용자가 선택한 Target(DTD)에 맞춰 HTML Markup, CSS, JScript의 유효성을 검사하고 그 결과를 error list에 보여준다.

특히 Markup의 경우 DTD가 지원하지 않는 tag나 attribute을 사용하는 경우에도 error list에 남게 되는데 Dojo toolkit의 Widget처럼 사용자 정의 attibute을 이 사용하는 경우 프로젝트를 한번 빌드하면 너무 많은 에러가 떨어져서 실제 C#/ASP.NET 코드의 에러와 섞여 아주 불편한 경우가 많다.

사용자 삽입 이미지
[ Visual Studio 2005의 Error List ]

하지만 Visual Studio Web Tools 팀의 Mikhail Arkhipov의 최근 블로그 포스트에 따르면 VS 2008 RTM 부터는 이부분이 개선 된다고 한다.
현재 VS 2008 Beta2에서는 아직 2005와 같지만 RTM 부터는 다음과 같이 두가지 옵션이 추가된다고 한다.

사용자 삽입 이미지
[ Visual Studio 2008의 Tools > Options화면 ]

위 화면에서 처럼 옵션이 체크가 되면 HTML Markup과 CSS Validation error는 warning이 되고 warning("deprecated attribute warning" 같은)은 message가 된다고 한다.
또한 Script error도 warning으로 보여준다고 한다.


원문은 Visual Studio 2008 다운로드는 아래를 참조하세요.

2007/09/20 23:41 2007/09/20 23:41