HOWTO create php function list

I have tried to use php reflections with no success to examine php class.
After that i found phpdoc which creates full list of methods etc just in a second.
It was really easy against expectation. And now I can see php function list nice formated

$ phpdoc -o HTML:frames:earthli -d -myclasses -t docs

and result looks like



Enjoy!

HOWTO list all my java class methods

Similar to C# function list, you can list java class or jar file details.
I have written small utility to find all methods using java reflection.

Please note it uses platform depended SWT library.
Windows: javaFunctions_x86_win32.jar
Linux: javaFunctions_linux.jar

Result can be

Enjoy!

C# real function list

An assembly (DLL, EXE etc) can contain different classes. And class can contain a lot of methods.
You know already about reflection, but you need quickly look up the function list.

I have written yet another c sharp assembly explorer, please take here.




Enjoy!

OTRS Only tickets are shown in queues where agents have "rw" permission

OTRS - Hat ein Benutzer nur Leserechte (ro) auf eine Queue werden keine Tickets angezeigt
user with readonly (RO) permissions can find tickets, but can't see tickets by default in AgentQueueView because tickets are not listed.
To resolve the issue search in SysConfig for ViewAllPossibleTickets and set 

Ticket::Frontend::AgentTicketQueue###ViewAllPossibleTickets to Yes.

$Self->{'Ticket::Frontend::AgentTicketQueue'}->{'ViewAllPossibleTickets'} =  '1';


Enjoy!

notepad++ auto update deaktivieren

you have several options to disable auto-update in notepad++.
Note: you are disabling updates on your own! Be safe!

First option to reinstall notepad++ and un-check "Auto-Updater"


Second option to uncheck "Notify of plugin updates at startup" in Plugin Manager.


Enjoy!

OTRS - move ticket in another queue and reopen it


I wrote already how to disable to move closed tickets. Oppositely sometimes you need to move ticket in another department (queue) and change state to open (reopen), but by default OTRS keeps current state.

Simplest way to search in SysConfig for AgentTicketMove and edit Frontend::Agent::Ticket::ViewMove

Ticket::Frontend::MoveType => NewWindow

Ticket::Frontend::AgentTicketMove###State => Yes



Then combo box will be replaced with menu item "Change Queue" and will appears popup window.


Enjoy!

Wordpad++ download

Q: Где скачать бесплатно wordpad++
A: Загрузить

PS: wordpad++ это не notepad++ !!!

Notepad++: a free source code editor which supports several programming languages running under the MS Windows environment. Download

Asterisk AST_SORCERY function

 AST_SORCERY gets a field from a sorcery object. Sorcery is always created for PJSIP aors, endpoints and identifies in asterisk. It allows y...