diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | e2de64d6f1beb9e492daf5b886e19933c1fa41dd (patch) | |
tree | 9047cf9e6b5c43878d5bf82660adae77ceee097a /libkcddb/libkcddb.kcfg | |
download | tdemultimedia-e2de64d6f1beb9e492daf5b886e19933c1fa41dd.tar.gz tdemultimedia-e2de64d6f1beb9e492daf5b886e19933c1fa41dd.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcddb/libkcddb.kcfg')
-rw-r--r-- | libkcddb/libkcddb.kcfg | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/libkcddb/libkcddb.kcfg b/libkcddb/libkcddb.kcfg new file mode 100644 index 00000000..cbd123c7 --- /dev/null +++ b/libkcddb/libkcddb.kcfg @@ -0,0 +1,66 @@ +<?xml version="1.0" encoding="UTF-8"?> +<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 + http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" > + <include>qdir.h</include> + <kcfgfile name="kcmcddbrc"/> + <group name="Lookup"> + <entry name="hostname" type="String"> + <default>freedb.freedb.org</default> + </entry> + <entry name="port" type="Int"> + <default>80</default> + </entry> + <entry name="cachePolicy" type="Enum"> + <choices> + <choice name="OnlyCache"></choice> + <choice name="UseCache"></choice> + <choice name="IgnoreCache"></choice> + </choices> + <default>UseCache</default> + </entry> + <entry name="lookupTransport" type="Enum"> + <choices> + <choice name="CDDBP"></choice> + <choice name="HTTP"></choice> + </choices> + <default>HTTP</default> + </entry> + <entry name="cacheLocations" type="PathList"> + <default code="true">QDir::homeDirPath()+"/.cddb/"</default> + </entry> + </group> + <group name="Submit"> + <entry name="submitTransport" type="Enum"> + <choices> + <choice name="HTTP"></choice> + <choice name="SMTP"></choice> + </choices> + <default>HTTP</default> + </entry> + <entry name="emailAddress" type="String"> + </entry> + <entry name="httpSubmitServer" type="String"> + <default>freedb.freedb.org</default> + </entry> + <entry name="httpSubmitPort" type="Int"> + <default>80</default> + </entry> + <entry name="smtpPort" type="Int"> + <default>25</default> + </entry> + <entry name="smtpUsername" type="String"> + </entry> + <entry name="useGlobalEmail" type="Bool"> + <default>true</default> + </entry> + <entry name="replyTo" type="String"> + </entry> + <entry name="smtpHostname" type="String"> + </entry> + <entry name="submitAddress" type="String"> + <default>freedb-submit@freedb.org</default> + </entry> + </group> +</kcfg> |