mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
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)
11 lines
602 B
Text
11 lines
602 B
Text
This module provides a simple functional "named parameters" style interface
|
|
for creating URIs. Underneath the hood it uses URI.pm, though because of
|
|
the simplified interface it may not support all possible options for all
|
|
types of URIs.
|
|
|
|
It was created for the common case where you simply want to have a simple
|
|
interface for creating syntactically correct URIs from known components
|
|
(like a path and query string). Doing this using the native URI.pm
|
|
interface is rather tedious, requiring a number of method calls, which is
|
|
particularly ugly when done inside a templating system such as Mason or
|
|
TT2.
|