hook

pre-commit hook in svn: could not be translated from the native locale to UTF-8

Hi everybody, I have a problem with my pre-commit hook. This hook test if a file is locked when the user commits. When a bad condition happens, it should output that the another user is locking this file or if nobody is locking, it should show "you are not locking this file message (file´s name)". The error happens when the file´s na...

Using Perl to build a SVN post-commit hook: IRC Bot to print commit Message

Hello I'm trying to build an IRC Bot which tells me in a private channel every commit-message which I want to know about. But I have trouble to get per #!/bin/bash REPOS="$1" REV="$2" # call bot with arguments reposname, revison and commit message in one string /usr/bin/perl /home/user/repo/svn_irc_bot.pl "$REPOS" "$REV" # all che...

Communicating applications without Event hooks.

I want to have my applications communicate to each other. I think something like a server-client model would suit me well, but I was also wondering if there was a different way. I want this way to not involve those windows event hooks. ...

System-wide ShellExecute hooks?

Hello, is there any way I can install a system-wide ShellExecute hook using C++ without having to inject a hooking module into every active process. I am using Windows 7. My purpose for this is because, I want to be able to select which browser a link is opened in when a link is opened with the default browser using ShellExecute, like th...

Hook paste event to hidden textarea

I want to hook paste event for <input type="text"> and force this text to be pasted into hidden textarea (then I want to parse textarea's text and perform 'paste data from excel to gridview' action). Something like: $('#input1').bind('paste', function(e) { // code do paste text to textarea instead of originally targeted input }); ...

Winsock2 recv() hook into a remote process.

Hello! I was trying to hook a custom recv() winsock2.0 method to a remote process, so that my function executes instead of the one in the process, i have been googling this and i found some really good example, but they lack description typedef (WINAPI * WSAREC)( SOCKET s, char *buf, int len, int flags ) = recv; Now my question is, wh...

Wordpress Hook Pre Post Update

Hi, I am writing a wordpress plugin. I would like to to set the post status to publish if post status is future. I know one hook that is to be used that is pre_post_update. However where is the array of post related details stored so that I can change the post_status? Thanks for the help ...

Hook into Drupal registration and validate user info against business logic

Hi, I want to hook into the registration module. I already have a database of 50000 users who use my old website. Now I am migrating to Drupal. I still haven't migrated the entries to drupal database. I will be checking against my old database. When a user tries to register in Drupal, I need to check whether the username he gave is al...

Stopping an application based on its executable

I'd like to rig a service to run that detects when an application is trying to start, and based on its executable (I'll probably just hash the file and keep a list of blocked app hashes to keep it simple), stop it from executing all together. Ideally I'd like to accomplish this using C#, but I'd be open to using other platforms if it mak...

.Net events - blocking subscribers from subscribing on an event.

Let's say I have a "Processor" interface exposing an event - OnProcess. Usually the implementors do processing thus I can safely subscribe on this event and be sure it will be fired. But one processor doesn't do processing - thus I want to prevent subscribers to subscibe on it. Can I do that? In other words in the code below I want the l...

Hide a string in a file before git commit

Hello, I would like a specific string in a specific file to be hidden every time I commit changes to that file. Actually, I have a URL in a file that shouldn't be public in a remote repository. Is there anyway to hide it using pre-commit and post-commit hooks or something similar? Currently I am working with a git repository but it w...

Git commit hooks - global settings

I've written a Git post-commit hook and it works correctly. However, I want to add this hook to apply to all current (and future) git repositories I am working on. I tried adding the hook to my ~/.git/hooks/ instead of in the hooks directory in the project directory, however, this did not seem to work. Is there any way to create globa...

How can I write branch-specific hooks in BZR?

In subversion, hooks are written on a per-repository basis. Each hook is written in a descriptive filename (e.g. pre-commit) in a folder named "hooks" at the root of the repository. According to the BZR docs, hooks are typically installed globally (e.g. in the ~/.bazaar/plugins/ directory). Is it possible to create, say, a pre-commit ho...

Drupal - displaying image in theme template from iids value only

Hiya, I'm trying to theme one of my content types, which has images uploaded to each instance using the image attach module. Using the developer module, I've found the iids value of the uploaded image (eg 305), but i'm having trouble finding out how I can actually display the image in my code. This line outputs the node id of the imag...

Writing a git hook to automatically modify code during local commits

I'd like to write a git hook that automatically does some code cleaning, such as removing trailing whitespace. It's easy to write a script to reject certain commits, but I'd rather just fix the problems transparently when possible. While I realize git has some built-in support for stuff like this (automatically converting newlines, etc.)...

Can TortoiseSVN commit window receive parameters?

Hi, I wrote a start-commit hook that will return (when exited), a number. Is it possible that the return value will be automatically inserted to the commit BugId value? or the message body itself? Thanks. ...

Which is the event listener after doSave() in Symfony?

Hi, I've been looking at this event-listeners page http://www.doctrine-project.org/documentation/manual/1_1/pl/event-listeners and I'm not sure which is the listener I have to use to make a change after the doSave() method in the BaseModelForm.class.php. // PlaceForm.class.php protected function doSave ( $con = null ) { ... parent:...

How to place Reporter name in Trac Notification email

I have trac notifications working. But I would like to be able to see who made the updates from the email address or subject line without having to open the email. Currently when a ticket is updated/created the email received looks loke this From Subject [email protected] Re: [PROJECT] #101: Testing trac notifica...

How To Intercept All WordPress Queries and Restrict to Category?

In WordPress plugin coding, if I have two categories (cars and gardening) and I want to always exclude gardening from all queries, what is the intercept (hook or other trick) I need to do to do this? I need to always exclude gardening whether it be via search, tag cloud widget, comment widget, calendar widget, and any other portion of th...

c++ d3d hooking - COM vtable

Trying to make a Fraps type program. See comment for where it fails. #include "precompiled.h" typedef IDirect3D9* (STDMETHODCALLTYPE* Direct3DCreate9_t)(UINT SDKVersion); Direct3DCreate9_t RealDirect3DCreate9 = NULL; typedef HRESULT (STDMETHODCALLTYPE* CreateDevice_t)(UINT Adapter, D3DDEVTYPE DeviceType, HWND hFocusWindow, DWORD B...