It also handles URLs formatted in ways that the browser can typically not handle, and can pass them off to a command to handle them for you. An example of this is the aim: handler, which mozilla-based browsers have never handled properly on my browser. (This may be a problem unique to me because I use atypical AIM clients.) My former roomate pointed me to MozEx and mentioned that perhaps the aim client he and I both use could add functionality using the program.
Pork is a command line client based on an interface similar to EpicII IRC clients. It supports Perl scripting internally.
However, unlike other similar scripting, such as that used by irssi, the scripting can not be included as a seperate perl module. Rather, the calls are loaded when the program is loaded, so they are internal to pork. Sadly, this makes it much more difficult to execute commands in pork using a perl script.
To the best of my estimation, this means that in order to create new windows in pork, I need to have an external script (which can be called by MozEx) which then refers the command to the pork-internal script, acting as a server, which actually performs the actions.
The problem with this is simply that I have absolutely no clue how to write even a simple server to recieve this kind of information. Based on what I've seen of other simple scripts (from
Does anyone have any suggestions or examples of simple Perl client/server combinations designed to pass limited information (in this case, just the argument to the first program)? Once I have the string inside pork, I've already figured out how I can do what I want to do, it's just getting there that's the problem.
If anyone has suggestions, I'm willing to listen. If you want to tell me that I'm on the right track, and just to keep looking, that would be cool too.