aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2022-08-07 12:21:26 -0700
committerGerald Combs <gerald@wireshark.org>2022-08-08 16:34:45 +0000
commit95069d8f789e3819064ffa03b6bff697c37f547f (patch)
treeea30dfb56bc6998f9b66ee5f481d2f3b36987ae0 /doc
parent4e85e0bfbe1a267650c37bce25e8260a895ca425 (diff)
Docs: Clean up some Python references.
Make sure we captitalize Python and use its HTTPS URL.
Diffstat (limited to 'doc')
-rw-r--r--doc/README.idl2wrs2
-rw-r--r--doc/extcap.adoc7
-rwxr-xr-xdoc/extcap_example.py4
3 files changed, 5 insertions, 8 deletions
diff --git a/doc/README.idl2wrs b/doc/README.idl2wrs
index 6337cfa8bf..77596cb339 100644
--- a/doc/README.idl2wrs
+++ b/doc/README.idl2wrs
@@ -46,7 +46,7 @@ need the following.
1. Python must be installed
- http://python.org/
+ https://python.org/
2. omniidl from the omniORB package must be available.
http://omniorb.sourceforge.net/
diff --git a/doc/extcap.adoc b/doc/extcap.adoc
index 1f79568c99..d64a9edab4 100644
--- a/doc/extcap.adoc
+++ b/doc/extcap.adoc
@@ -36,11 +36,8 @@ WINDOWS USERS: Because of restrictions directly calling the script may not alway
In such a case, a batch file may be provided, which then in turn executes the script. Please
refer to doc/extcap_example.py for more information.
-When Wireshark launches an extcap, it automatically adds its installation path
-(c:\Program Files\Wireshark\) to the DLL search path so that the extcap library dependencies
-can be found (it is not designed to be launched by hand). This is done on purpose. There should
-only be extcap programs (executable, python scripts, ...) in the extcap folder to reduce the startup
-time and not have Wireshark trying to execute other file types.
+When Wireshark launches an extcap, it automatically adds its installation path (normally _C:\Program Files\Wireshark\_) to the DLL search path so that the extcap library dependencies can be found (it is not designed to be launched by hand).
+This is done on purpose. There should only be extcap programs (executables, Python scripts, ...) in the extcap folder to reduce the startup time and not have Wireshark trying to execute other file types.
== GRAMMAR ELEMENTS
diff --git a/doc/extcap_example.py b/doc/extcap_example.py
index 14e792b25c..26e39e3509 100755
--- a/doc/extcap_example.py
+++ b/doc/extcap_example.py
@@ -20,7 +20,7 @@ the extcap folder, with the following content:
-------
@echo off
-<Path to python interpreter> <Path to script file> %*
+C:\Windows\py.exe C:\Path\to\extcap_example.py %*
-------
Windows is not able to execute Python scripts directly, which also goes for all
@@ -445,7 +445,7 @@ if __name__ == '__main__':
parser = ArgumentParser(
prog="Extcap Example",
- description="Extcap example program for python"
+ description="Extcap example program for Python"
)
# Extcap Arguments