diff options
author | mkaay <mkaay@mkaay.de> | 2009-12-17 21:33:13 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2009-12-17 21:33:13 +0100 |
commit | d08271cbb66f3ccbd8f3c5cf707008388ff4297e (patch) | |
tree | edd2c3ebad7c066ab96a6a13ddaacb5c96292b4b /module/config | |
parent | better Megaupload captcha detection, fixed #38 (diff) | |
download | pyload-d08271cbb66f3ccbd8f3c5cf707008388ff4297e.tar.xz |
new xml config for core
Diffstat (limited to 'module/config')
-rw-r--r-- | module/config/core.xml | 58 | ||||
-rw-r--r-- | module/config/gui_default.xml | 7 |
2 files changed, 65 insertions, 0 deletions
diff --git a/module/config/core.xml b/module/config/core.xml new file mode 100644 index 000000000..891856c00 --- /dev/null +++ b/module/config/core.xml @@ -0,0 +1,58 @@ +<config> + <remote> + <port>7227</port> + <listenaddr>0.0.0.0</listenaddr> + <username>admin</username> + <password>pwhere</password> + </remote> + <ssl> + <activated>False</activated> + <cert>ssl.srt</cert> + <key>ssl.key</key> + </ssl> + <webinterface> + <activated>True</activated> + <host>127.0.0.1</host> + <port>8000</port> + <template>default</template> + <local>True</local> + <ssl>None</ssl> + <username>None</username> + <adress>None</adress> + <extport>None</extport> + <pw>None</pw> + </webinterface> + <log> + <file_log>True</file_log> + <log_folder>Logs</log_folder> + <log_count>5</log_count> + </log> + <general> + <language>de</language> + <download_folder>Downloads</download_folder> + <max_downloads>3</max_downloads> + <use_reconnect>False</use_reconnect> + <link_file>links.txt</link_file> + <failed_file>failed_links.txt</failed_file> + <reconnect_method>reconnect_method</reconnect_method> + <debug_mode>False</debug_mode> + <max_download_time>5</max_download_time> + </general> + <updates> + <search_updates>True</search_updates> + <install_updates>False</install_updates> + </updates> + <reconnectTime> + <start>0:00</start> + <end>0:00</end> + </reconnectTime> + <downloadTime> + <start>0:00</start> + <end>0:00</end> + </downloadTime> + <proxy> + <activated>False</activated> + <adress>http://localhost:8080</adress> + <protocol>http</protocol> + </proxy> +</config> diff --git a/module/config/gui_default.xml b/module/config/gui_default.xml new file mode 100644 index 000000000..af38eda4c --- /dev/null +++ b/module/config/gui_default.xml @@ -0,0 +1,7 @@ +<root> + <connections> + <connection default="True" type="local" id="33965310e19b4a869112c43b39a16440"> + <name>Local</name> + </connection> + </connections> +</root> |