14
votes
17answers
995 views
Share common / useful SVN pre-commit hooks
What are some common and/or useful pre-commit hooks for SVN?
11
votes
4answers
820 views
How can I hook into Perl’s print?
Here's a scenario. You have a large amount of legacy scripts, all using a common library. Said scripts use the 'print' statement for diagnostic output. No changes are allowed to the scripts - they …
8
votes
8answers
704 views
What is meant by the term “hook” in programming?
I recently heard the term "hook" while talking to some people about a program I was writing. I'm unsure exactly what this term implies although I inferred from the conversation that a hook is a type …
7
votes
6answers
892 views
Best strategy to write hooks for subversion in Windows
What is the best approach to write hooks for Subversion in Windows? As far as I know, only executable files can be used. So what is the best choice?
Plain batch files (very limited but perhaps OK …
5
votes
2answers
133 views
“Are you sure you want to print X pages?” dialog before actually printing… (for any app)
In Internet Cafes where people are allowed to print, sometimes they print more pages than they intended to.
I'm looking for a way to display an "Are you sure you want to print X pages?" dialog after …
5
votes
3answers
305 views
Javascript function hooks
EDIT: OK, I believe the following solutions are valid:
Use the jQuery AOP plugin. It basically wraps the old function together with the hook into a function sandwich and reassigns it to the old …
4
votes
2answers
233 views
Finding a 3rd party QWidget with injected code & QWidget::find(hwnd)
Hey,
I have a Qt Dll wich I inject into a third-party Application using windows detours library:
if(!DetourCreateProcessWithDll( Path, NULL, NULL, NULL, TRUE,
…
4
votes
2answers
683 views
Firefox/Gecko control interfering with Windows Forms key presses
Edit: In addition to the bounty, we're willing to pay $250 to have this bug fixed in the Firefox/Gecko codebase. Here is a simple test project (Visual Studio 2008 C#) that reproduces the problem.
…
4
votes
8answers
1k views
What do I have to do to make my WH_SHELL or WH_CBT hook procedure receive events from other processes?
I'm trying to use SetWindowsHookEx to set up a WH_SHELL hook to get notified of system-wide HSHELL_WINDOWCREATED and HSHELL_WINDOWDESTROYED events. I pass 0 for the final dwThreadId argument which, …
4
votes
2answers
2k views
How to correctly use SetWindowsHookEx & CallNextHookEx
I can correctly setup up a windows hook, but I get confused by the line in MSDN that says "Calling the CallNextHookEx function to chain to the next hook procedure is optional, but it is highly …
3
votes
2answers
53 views
Is there a way to hook or intercept CoGetClassObject and/or CoCreateInstance calls?
I'd like to intercept the COM CoCreateInstanceEx and/or CoGetClassObject functions to replace a class with a testing shim in a unit test. This will only be for a single CLSID; all others can go …
3
votes
3answers
81 views
Hooking all function calls in JavaScript?
My intuitive response to this question would be ,"This is so stupid that I can't continue having this conversation." However:
Is there any way to hook all javascript function calls within my module? …
3
votes
0answers
106 views
drawing under icons on desktop
I wrote a program who paints widget on desktop wallpaper, under desktop icons, and all was good.
But I reveal a strange bug - my program was not works on some other computers - they displays
the same …
3
votes
1answer
194 views
delphi - watching for files changes in directories - implemented in JCL?
Hi,
I need to notify my application in some way whenever any file in the given directory has been changed (its content has been modified) ... is there any JCL/JVCL routine for that?
Thanks in advance …
3
votes
3answers
635 views
Disable antialiasing for a specific GDI device context
I'm using a third party library to render an image to a GDI DC and I need to ensure that any text is rendered without any smoothing/antialiasing so that I can convert the image to a predefined palette …
