Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
8 lines
396 B
Text
8 lines
396 B
Text
This module collects IP validation routines to make input validation, and
|
|
untainting easier and more readable.
|
|
|
|
All functions return an untainted value if the test passes, and undef if it
|
|
fails. This means that you should always check for a defined status
|
|
explicitly. Don't assume the return will be true. (e.g. is_username('0'))
|
|
|
|
The value to test is always the first (and often only) argument.
|