mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-10 19:15:54 +02:00
* Mldonkey 2.7.7 * Ocaml - letzte Version. * Net-Config ins Webinterface. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@226 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
95 lines
2.4 KiB
INI
95 lines
2.4 KiB
INI
|
|
(* Maximal number of saved searches *)
|
|
max_saved_searches = 10
|
|
customized_queries = [
|
|
("Complex Search", [
|
|
AND;
|
|
(KEYWORDS, keywords, "");
|
|
(MODULE, "Simple Options", [
|
|
AND;
|
|
(MINSIZE, "Min Size", "");
|
|
(MAXSIZE, "Max Size", "");
|
|
(MEDIA, Media, "");
|
|
(FORMAT, Format, "")]);
|
|
(MODULE, "Mp3 Options", [
|
|
AND;
|
|
(MP3_ARTIST, Artist, "");
|
|
(MP3_ALBUM, Album, "");
|
|
(MP3_TITLE, Title, "");
|
|
(MP3_BITRATE, "Min Bitrate", "")])]);
|
|
("MP3 Search", [
|
|
AND;
|
|
(KEYWORDS, keywords, "");
|
|
(MP3_ARTIST, Artist, "");
|
|
(MP3_ALBUM, Album, "");
|
|
(MP3_TITLE, Title, "");
|
|
(MP3_BITRATE, "Min Bitrate", "");
|
|
[
|
|
HIDDEN;
|
|
(MEDIA, Media, Audio);
|
|
(FORMAT, Format, mp3)]]);
|
|
("Movie Search", [
|
|
AND;
|
|
(KEYWORDS, keywords, "");
|
|
[
|
|
HIDDEN;
|
|
(MINSIZE, "Min Size", 500000000);
|
|
(MEDIA, Media, Video);
|
|
(FORMAT, Format, avi)]]);
|
|
("Album Search", [
|
|
AND;
|
|
(KEYWORDS, Keywords, album);
|
|
[
|
|
HIDDEN;
|
|
(ANDNOT, (MINSIZE, "Min Size", 30000000), (FORMAT, Format, mp3))]]);]
|
|
|
|
(* Shortcuts for special specialized searches *)
|
|
special_queries = [
|
|
("-1cd", "-maxsize 735000000");
|
|
("-movies", "avi -minsize 650000000 -1cd");
|
|
("-mp3s", "mp3 -minsize 3000000 -maxsize 10000000");
|
|
("-albums", "album -minsize 30000000 -maxsize 150000000");
|
|
("-nosex", "-without xxx");]
|
|
customized_sharing = [
|
|
(mp3s, { recursive = true
|
|
extensions = [
|
|
".mp3";]
|
|
minsize = 0
|
|
maxsize = 10485760
|
|
});
|
|
(avis, { recursive = true
|
|
extensions = [
|
|
".avi";]
|
|
minsize = 524288000
|
|
maxsize = 9223372036854775807
|
|
});
|
|
(all_files, { recursive = true
|
|
extensions = []
|
|
minsize = 1
|
|
maxsize = 9223372036854775807
|
|
});
|
|
(incoming_files, { incoming = true
|
|
extensions = []
|
|
minsize = 1
|
|
maxsize = 9223372036854775807
|
|
});
|
|
(incoming_directories, { incoming = true
|
|
directories = true
|
|
extensions = []
|
|
minsize = 1
|
|
maxsize = 9223372036854775807
|
|
});
|
|
(only_directory, { extensions = []
|
|
minsize = 1
|
|
maxsize = 9223372036854775807
|
|
});
|
|
(directories, { directories = true
|
|
extensions = []
|
|
minsize = 1
|
|
maxsize = 9223372036854775807
|
|
});]
|
|
|
|
(*
|
|
The following options are not used (errors, obsolete, ...)
|
|
*)
|