AMLINT(1) BSD General Commands Manual AMLINT(1)NAME
amlint -- check Automator actions for problems
SYNOPSIS
amlint [-HhSs] [-d definition-bundle] [-x exception-file] action ...
DESCRIPTION
amlint checks the given Automator actions for various problems and interface inconsistencies. action is the path of a built action bundle.
The options are as follows:
-H Print the filename for each error or warning.
-h Suppress the prefixing of filenames when multiple actions are checked.
-S For each action, write a summary line indicating how many errors and warnings there were.
-s As -S, but skips the summary line for actions with no errors or warnings.
-d definition-bundle
Specify a definition bundle, which specifies custom action input and output types. This option may be repeated if you need to specify
more than one bundle.
-x exception-file
Specify a list of errors and warnings to ignore. The file should be plain text, with one line per error: the action filename, a colon,
space, and the text of the error. For example:
My Action.action: error: NSButton "OK" should not use the metal style.
You can simply copy an output line from amlint -H.
RETURN VALUES
amlint exits with one of the following values:
0 no serious errors were found.
1 an error was found in one of the checked actions.
>1 an internal error occurred.
BUGS
Because of a bug in nibtool(1), amlint will fail to work on some nibs. You will see errors about the ``old-style plist parser'' if this hap-
pens.
Mac OS X December 9, 2005 Mac OS X
Check Out this Related Man Page
DtActionIcon(library call) DtActionIcon(library call)
NAME
DtActionIcon -- get the icon information for an action
SYNOPSIS
#include <Dt/Action.h>
char *DtActionIcon(
char *actionName);
DESCRIPTION
The DtActionIcon function gets the icon information for an action. The actionName argument is the name of the action. DtActionIcon
returns the name of the icon associated with an actionName action. If the action definition does not explicitly identify an icon name,
this function returns the default action icon name, as described in dtactionfile(4) (``Action Selection''). The default action icon name
can be customized using the actionIcon X resource.
If there are multiple actionName actions, the string returned is the icon associated with the most general action. The most general action
is the one with the lowest precedence, as described in dtactionfile(4) (``Action Selection'').
RETURN VALUE
Upon successful completion, the DtActionIcon function returns a newly allocated copy of the icon name string ( ICON field) associated with
the action; otherwise, it returns NULL.
APPLICATION USAGE
The DtActionIcon function is useful for applications that provide a graphical interface to actions.
The application should use XtFree(3) to free the icon name string returned by the DtActionIcon function.
SEE ALSO
Dt/Action.h - DtAction(5), XtFree(3)dtactionfile(4), dtdtfile(4).
DtActionIcon(library call)
Hi all
I hope to find what i'm looking for in this forum
as said in the topic i want to track user's actions on the system. i mean also the action of moving or removing files. I have an HP 9000 with HP UX 11i. the users log on the HP from a terminal window under WIndows XP
Thx (3 Replies)
I just started using Terminal on my Mac this summer, and right now I am having problems making a shell script. This shell should run the "Microsoft Setup Assistant" once I run the Automator Script. Alas, I still have problems.
Here is the offending scriptlet:
Sudo Tcsh
root# cd... (2 Replies)
My file creates an output log after which includes a few sql queries.
I segregate them into warnings and errors and then get a total count.
The errors' and warnings' lines always start with SQL{4} followed by the details of the error.
This is what im doing as o now...
errors=`grep -A 1 -E... (11 Replies)
I am scanning a file (line by line) for format errors. A line could have multiple errors. Each field in the line is evaluated for errors and sent, along w/ any error messages, to a temporary file. Finally, if any errors were detected, this temporary file is then appended to the errorFile. The... (4 Replies)
Hi.
I forgot a bundle (X11.dt) in the lpp_source (base OS AIX 7.1). The bundle is now in the CD drive, I need to add it permanently in the lpp_source. What do I have to do ?
- copy (where ?) bundle on my NIM server (how to determine what files to copy to have all elements of the bundle ?) ?... (1 Reply)
Hello, I am trying to install BBFTP software on my Mac (OS X), and am running into some compilation errors. Here is the code, the specific errors are listed after:
#include <dirent.h>
#include <errno.h>
#include <fnmatch.h>
#include <netinet/in.h>
#include <syslog.h>
#include <sys/stat.h>... (1 Reply)