summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-11-27 10:25:32 -0500
committerMatthew Barnes <mbarnes@redhat.com>2012-06-03 19:51:07 -0400
commit4afd54afbdefc514eef091d2372d0ecc7f9b2658 (patch)
treec0105b539b2eb883723463cb17ad426be9080d2b /data
parent138c1b04bb9fdb1ee2c76256d5ed6c403d4492c9 (diff)
downloadevolution-data-server-4afd54afbdefc514eef091d2372d0ecc7f9b2658.tar.gz
Add built-in ESource key files.
Diffstat (limited to 'data')
-rw-r--r--data/Makefile.am2
-rw-r--r--data/sources/Makefile.am37
-rw-r--r--data/sources/birthdays.source.in11
-rw-r--r--data/sources/caldav-stub.source.in5
-rw-r--r--data/sources/contacts-stub.source.in5
-rw-r--r--data/sources/google-stub.source.in5
-rw-r--r--data/sources/ldap-stub.source.in5
-rw-r--r--data/sources/local-stub.source.in7
-rw-r--r--data/sources/local.source.in9
-rw-r--r--data/sources/sendmail.source.in8
-rw-r--r--data/sources/system-address-book.source.in9
-rw-r--r--data/sources/system-calendar.source.in11
-rw-r--r--data/sources/system-memo-list.source.in11
-rw-r--r--data/sources/system-task-list.source.in11
-rw-r--r--data/sources/vfolder.source.in9
-rw-r--r--data/sources/weather-stub.source.in5
-rw-r--r--data/sources/webcal-stub.source.in5
-rw-r--r--data/sources/webdav-stub.source.in5
18 files changed, 160 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am
index 566afe9ac..a31232a3e 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -1,3 +1,5 @@
+SUBDIRS = sources
+
gsettings_SCHEMAS = \
org.gnome.Evolution.DefaultSources.gschema.xml
diff --git a/data/sources/Makefile.am b/data/sources/Makefile.am
new file mode 100644
index 000000000..39f91ddac
--- /dev/null
+++ b/data/sources/Makefile.am
@@ -0,0 +1,37 @@
+NULL =
+
+# These are non-removable and non-writable.
+ro_sources_in_files = \
+ caldav-stub.source.in \
+ contacts-stub.source.in \
+ google-stub.source.in \
+ ldap-stub.source.in \
+ local-stub.source.in \
+ weather-stub.source.in \
+ webcal-stub.source.in \
+ webdav-stub.source.in \
+ $(NULL)
+ro_sources_DATA = $(ro_sources_in_files:.in=)
+
+# These are non-removable, but can be changed
+# and written to the user's sources directory.
+rw_sources_in_files = \
+ birthdays.source.in \
+ local.source.in \
+ sendmail.source.in \
+ system-address-book.source.in \
+ system-calendar.source.in \
+ system-memo-list.source.in \
+ system-task-list.source.in \
+ vfolder.source.in \
+ $(NULL)
+rw_sources_DATA = $(rw_sources_in_files:.in=)
+
+%: %.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po)
+ LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@
+
+EXTRA_DIST = $(ro_sources_in_files) $(rw_sources_in_files)
+
+CLEANFILES = $(ro_sources_DATA) $(rw_sources_DATA)
+
+-include $(top_srcdir)/git.mk
diff --git a/data/sources/birthdays.source.in b/data/sources/birthdays.source.in
new file mode 100644
index 000000000..7f90f94f8
--- /dev/null
+++ b/data/sources/birthdays.source.in
@@ -0,0 +1,11 @@
+
+[Data Source]
+_DisplayName=Birthdays & Anniversaries
+Enabled=true
+Parent=contacts-stub
+
+[Calendar]
+BackendName=contacts
+Color=#fed4d3
+Enabled=true
+Writable=false
diff --git a/data/sources/caldav-stub.source.in b/data/sources/caldav-stub.source.in
new file mode 100644
index 000000000..90081a35a
--- /dev/null
+++ b/data/sources/caldav-stub.source.in
@@ -0,0 +1,5 @@
+
+[Data Source]
+_DisplayName=CalDAV
+Enabled=true
+Parent=
diff --git a/data/sources/contacts-stub.source.in b/data/sources/contacts-stub.source.in
new file mode 100644
index 000000000..f2bcb97f3
--- /dev/null
+++ b/data/sources/contacts-stub.source.in
@@ -0,0 +1,5 @@
+
+[Data Source]
+_DisplayName=Contacts
+Enabled=true
+Parent=
diff --git a/data/sources/google-stub.source.in b/data/sources/google-stub.source.in
new file mode 100644
index 000000000..93de6f1e0
--- /dev/null
+++ b/data/sources/google-stub.source.in
@@ -0,0 +1,5 @@
+
+[Data Source]
+_DisplayName=Google
+Enabled=true
+Parent=
diff --git a/data/sources/ldap-stub.source.in b/data/sources/ldap-stub.source.in
new file mode 100644
index 000000000..9c5e324d9
--- /dev/null
+++ b/data/sources/ldap-stub.source.in
@@ -0,0 +1,5 @@
+
+[Data Source]
+_DisplayName=On LDAP Servers
+Enabled=true
+Parent=
diff --git a/data/sources/local-stub.source.in b/data/sources/local-stub.source.in
new file mode 100644
index 000000000..bad02f028
--- /dev/null
+++ b/data/sources/local-stub.source.in
@@ -0,0 +1,7 @@
+# An unfortunate name collision with the "On This Computer"
+# mail store forced the introduction of this "stub" suffix.
+
+[Data Source]
+_DisplayName=On This Computer
+Enabled=true
+Parent=
diff --git a/data/sources/local.source.in b/data/sources/local.source.in
new file mode 100644
index 000000000..1c38384fa
--- /dev/null
+++ b/data/sources/local.source.in
@@ -0,0 +1,9 @@
+# Special built-in mail store.
+
+[Data Source]
+_DisplayName=On This Computer
+Enabled=true
+Parent=
+
+[Mail Account]
+BackendName=maildir
diff --git a/data/sources/sendmail.source.in b/data/sources/sendmail.source.in
new file mode 100644
index 000000000..ce825cb40
--- /dev/null
+++ b/data/sources/sendmail.source.in
@@ -0,0 +1,8 @@
+
+[Data Source]
+_DisplayName=Sendmail
+Enabled=true
+Parent=
+
+[Mail Transport]
+BackendName=sendmail
diff --git a/data/sources/system-address-book.source.in b/data/sources/system-address-book.source.in
new file mode 100644
index 000000000..f1cea75ef
--- /dev/null
+++ b/data/sources/system-address-book.source.in
@@ -0,0 +1,9 @@
+
+[Data Source]
+_DisplayName=Personal
+Enabled=true
+Parent=local-stub
+
+[Address Book]
+BackendName=local
+Color=#becedd
diff --git a/data/sources/system-calendar.source.in b/data/sources/system-calendar.source.in
new file mode 100644
index 000000000..ffbe161a8
--- /dev/null
+++ b/data/sources/system-calendar.source.in
@@ -0,0 +1,11 @@
+
+[Data Source]
+_DisplayName=Personal
+Enabled=true
+Parent=local-stub
+
+[Calendar]
+BackendName=local
+Color=#becedd
+Selected=true
+
diff --git a/data/sources/system-memo-list.source.in b/data/sources/system-memo-list.source.in
new file mode 100644
index 000000000..f53f0f030
--- /dev/null
+++ b/data/sources/system-memo-list.source.in
@@ -0,0 +1,11 @@
+
+[Data Source]
+_DisplayName=Personal
+Enabled=true
+Parent=local-stub
+
+[Memo List]
+BackendName=local
+Color=#becedd
+Selected=true
+
diff --git a/data/sources/system-task-list.source.in b/data/sources/system-task-list.source.in
new file mode 100644
index 000000000..22f40bc4b
--- /dev/null
+++ b/data/sources/system-task-list.source.in
@@ -0,0 +1,11 @@
+
+[Data Source]
+_DisplayName=Personal
+Enabled=true
+Parent=local-stub
+
+[Task List]
+BackendName=local
+Color=#becedd
+Selected=true
+
diff --git a/data/sources/vfolder.source.in b/data/sources/vfolder.source.in
new file mode 100644
index 000000000..98a9df4b1
--- /dev/null
+++ b/data/sources/vfolder.source.in
@@ -0,0 +1,9 @@
+# Special built-in mail store.
+
+[Data Source]
+_DisplayName=Search Folders
+Enabled=true
+Parent=
+
+[Mail Account]
+BackendName=vfolder
diff --git a/data/sources/weather-stub.source.in b/data/sources/weather-stub.source.in
new file mode 100644
index 000000000..e1a549d36
--- /dev/null
+++ b/data/sources/weather-stub.source.in
@@ -0,0 +1,5 @@
+
+[Data Source]
+_DisplayName=Weather
+Enabled=true
+Parent=
diff --git a/data/sources/webcal-stub.source.in b/data/sources/webcal-stub.source.in
new file mode 100644
index 000000000..178cec123
--- /dev/null
+++ b/data/sources/webcal-stub.source.in
@@ -0,0 +1,5 @@
+
+[Data Source]
+_DisplayName=On The Web
+Enabled=true
+Parent=
diff --git a/data/sources/webdav-stub.source.in b/data/sources/webdav-stub.source.in
new file mode 100644
index 000000000..78ec0c479
--- /dev/null
+++ b/data/sources/webdav-stub.source.in
@@ -0,0 +1,5 @@
+
+[Data Source]
+_DisplayName=WebDAV
+Enabled=true
+Parent=