pike.git
/
lib
/
modules
/
Search.pmod
/
Filter.pmod
/
Base.pike
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/lib/modules/Search.pmod/Filter.pmod/Base.pike:1:
#pike __REAL_VERSION__
-
//! The MIME content types this
class
can filter.
+
//!
@decl constant array(string) contenttypes
+
//!
The MIME content types this
object
can filter.
constant contenttypes = ({ });
-
+
//! @decl optional constant array(string) fields
+
//! The different fields this object can extract from the media. The
+
//! list can contain any of the following values.
+
//! @string
+
//! @value "body"
+
//! @value "title"
+
//! @value "keywords"
+
//! @value "description"
+
//! @value "robots"
+
//! @value "headline"
+
//! @value "modified"
+
//! @value "author"
+
//! @value "summary"
+
//! @endstring
+
optional constant fields = ({});
+
//! .Output filter(Standards.URI uri, string|Stdio.File data, string content_type, mixed ... more); string my_popen(array(string) args, string|void cwd, int|void wait_for_exit, array(string)|void watchdog_args) // A smarter version of Process.popen: No need to quote arguments. { Stdio.File pipe0 = Stdio.File();