Lines Matching full:plug

4 This module provides functions which are useful for running plug-ins.
16 "This is a colon-separated list of plug-in directory paths. If one"
18 + " path info), it will be taken to be a native plug-in. In that case,"
19 + ' %(prog)s will search for the native plug-in in the "plug-ins"'
21 + " is found. Also, integrated plug-ins will automatically be appended"
22 + " to your plug_in_dir_paths list. An integrated plug-in is any plug-in"
36 Get plug-in base paths and return them as a list.
60 …Find and return the normalized directory path of the specified plug in. This is done by searching…
64 plug_in_name The unqualified name of the plug-in package.
80 Validate the plug in package and return the normalized plug-in directory path.
83 plug_in_dir_path The "relative" or absolute path to a plug in package directory.
97 'Plug-in directory path "'
108 'Plug-in directory path "'
115 # Make sure that this plug-in supports us...
123 + " the given plug-in supports the class of"
135 …Return a list of integrated plug-ins. Integrated plug-ins are plug-ins which are selected without…
137 …The programmer designates a plug-in as integrated by putting a file named "integrated" into the pl…
155 # Get a list of all plug-in paths that support our mch_class.
169 # If this plug-in has not already been added to the list...
177 Return a list of plug-in packages given the plug_in_dir_paths string. This function calls
178 validate_plug_in_package so it will fail if plug_in_dir_paths contains any invalid plug-ins.
181 plug_in_dir_path The "relative" or absolute path to a plug in package directory.
191 # Get a list of integrated plug-ins (w/o full path names).
194 …# duplicates if the caller specifies the full path name of a native plug-in but that should be rare