 |
vtiger The Honest Open Source CRM
|
| Previous topic :: Next topic |
| Author |
Message |
prasad.a
Joined: 01 Aug 2007
Posts: 976
|
| Posted: Sat Dec 01, 2007 8:59 am Post subject: vlaunchy plugin for vtiger - ver0.2 |
|
|
Dear community,
vlaunchy plugin version 0.2 has been released!
New Features:
1. Keyboard shortcuts has been added:
Quote:
ALT+y - Open
ESC - Close
ENTER - Submit
2. Documentation improvement with vlaunchy internals and customization.
I hope you enjoy using this plugin. Give it a try now.
[English] http://forge.vtiger.com/frs/download.php/416/vlaunchy-0.2.zip
[Manual] http://forge.vtiger.com/frs/download.php/414/vlaunchy-plugin-0.2.pdf
[German] http://forge.vtiger.com/frs/download.php/415/vlaunchy-0.2-german.zip
[ProjectHome] http://forge.vtiger.com/projects/vlaunchy/
Let me know your feedback.
Regards,
Prasad
vtiger Team |
|
| Back to top |
|
Asha
Joined: 31 Jul 2007
Posts: 300
|
| Posted: Sat Dec 01, 2007 9:49 am Post subject: Re: vlaunchy plugin for vtiger - ver0.2 |
|
|
Hi,
I tried out vlaunchy and found it very interesting. I wanted to search things out of vtiger from vtiger itself.
I tried doing it and achieved it. I have made changes to search for trac tickets/changeset and forum posts.
Following are the steps that I followed:
1. In this.moduleAndDefParentTab , added the following entries:
Code: // Shortcut for Trac and Forum
'Trac' : Array('Trac', 'ticket'),
'Forum' : Array('Forum', '')
2. In this.parentTab , added the following entry:
Code: 'changeset'
3. In this.navigate , made the following change:
Code: if(parenttab != null) {
navurl += '&parenttab=' + encodeURIComponent(parenttab);
}
After this line, I added the following:
Code:
/* Assigning the url to navurl will open in the same page. To open in a new window,
I am using window.open() here and setting navurl to null */
switch(module) {
case 'Trac' : window.open("http://trac.vtiger.com/cgi-bin/trac.cgi/" + parenttab + "/" + recordid); navurl = null; break;
case 'Forum' : window.open("http://forums.vtiger.com/viewtopic.php?t=" + recordid); navurl = null; break;
}
Usage:
Trac ticket -> trac 4508
Trac changeset -> trac changeset 11209
Forum topic -> forum 17512
Check out the attachment for the changed plugin.
Hey, Thanks Prasad. This plugin is cool... 8) |
|
| Back to top |
|
prasad.a
Joined: 01 Aug 2007
Posts: 976
|
| Posted: Sat Dec 01, 2007 10:03 am Post subject: Re: vlaunchy plugin for vtiger - ver0.2 |
|
|
Hi Asha,
Glad to know you like it and got even a extension to it.
This extension should be easy for us to hook up with forum post and trac ticket while working with vtiger.
Regards,
Prasad
vtiger Team |
|
| Back to top |
|
| |
|