This is an automated email from the ASF dual-hosted git repository.
lkishalmi pushed a commit to branch delivery
in repository https://gitbox.apache.org/repos/asf/netbeans.git
The following commit(s) were added to refs/heads/delivery by this push:
new bf64eee [NETBEANS-4901] Remove the `--progressbar` option
bf64eee is described below
commit bf64eee6fc6d86102079c06c24eff52afb5d342e
Author: Junichi Yamamoto <[email protected]>
AuthorDate: Fri Oct 30 21:36:53 2020 +0900
[NETBEANS-4901] Remove the `--progressbar` option
- PHPDocumentor 3 doesn't have this option
```
Options:
-t, --target[=TARGET] Path where to store the
generated output
--cache-folder[=CACHE-FOLDER] Path where to store the
cache files
-f, --filename[=FILENAME] File to parse, glob
patterns are supported. Provide multiple options of this type to add
multiple files. (multiple
values allowed)
-d, --directory[=DIRECTORY] directory to parse, glob
patterns are supported. Provide multiple options of this type to add
multiple directories.
(multiple values allowed)
--encoding[=ENCODING] encoding to be used to
interpret source files with
--extensions[=EXTENSIONS] Provide multiple options
of this type to add multiple extensions. default is php (multiple values
allowed)
-i, --ignore[=IGNORE] File(s) and directories
(relative to the source-code directory) that will be ignored. Glob patterns are
supported. Add multiple options of this type of add more ignore patterns
(multiple values allowed)
--ignore-tags[=IGNORE-TAGS] Tag that will be ignored,
defaults to none. package, subpackage and ignore may not be ignored. Add
multiple options of this type to ignore multiple tags. (multiple values allowed)
--hidden Use this option to tell
phpDocumentor to parse files and directories that begin with a period (.), by
default these are ignored
--ignore-symlinks Ignore symlinks to other
files or directories, default is on
-m, --markers[=MARKERS] Comma-separated list of
markers/tags to filter (multiple values allowed)
--title[=TITLE] Sets the title for this
project; default is the phpDocumentor logo
--force Forces a full build of the
documentation, does not increment existing documentation
--validate Validates every processed
file using PHP Lint, costs a lot of performance
--visibility[=VISIBILITY] Specifies the parse
visibility that should be displayed in the documentation. Add multiple options
of
this type to specify
multiple levels.("public,protected") (multiple values allowed)
--defaultpackagename[=DEFAULTPACKAGENAME] Name to use for the
default package. [default: "Default"]
--sourcecode Whether to include syntax
highlighted source code
--template[=TEMPLATE] Name of the template to
use (optional) (multiple values allowed)
--examples-dir[=EXAMPLES-DIR] Directory to seacher for
example files referenced by @example tags
-s, --setting[=SETTING] Provide custom setting(s)
as "key=value", run again with --list-settings for a list (multiple values
allowed)
--list-settings Returns a list of
available settings
--parseprivate Whether to parse DocBlocks
marked with @internal tag
-h, --help Display this help message
-q, --quiet Do not output any message
-V, --version Display this application
version
--ansi Force ANSI output
--no-ansi Disable ANSI output
-n, --no-interaction Do not ask any interactive
question
-c, --config[=CONFIG] Location of a custom
configuration file
--log[=LOG] Log file to write to
-e, --env=ENV The Environment name.
[default: "prod"]
--no-debug Switches off debug mode.
-v|vv|vvv, --verbose Increase the verbosity of
messages: 1 for normal output, 2 for more verbose output and 3 for debug
```
---
php/php.phpdoc/src/org/netbeans/modules/php/phpdoc/PhpDocScript.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/php/php.phpdoc/src/org/netbeans/modules/php/phpdoc/PhpDocScript.java
b/php/php.phpdoc/src/org/netbeans/modules/php/phpdoc/PhpDocScript.java
index 7df6b12..bd363fd 100644
--- a/php/php.phpdoc/src/org/netbeans/modules/php/phpdoc/PhpDocScript.java
+++ b/php/php.phpdoc/src/org/netbeans/modules/php/phpdoc/PhpDocScript.java
@@ -151,7 +151,7 @@ public final class PhpDocScript {
"run", // NOI18N
// params
"--ansi", // NOI18N
- "--progressbar", // NOI18N
+ // "--progressbar" doesn't exist since PHPDocumentor 3
// from
"--directory", // NOI18N
sanitizePath(FileUtil.toFile(phpModule.getSourceDirectory()).getAbsolutePath()),
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists