syncevolution 0.1.9 → 0.1.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/se-config +2 -1
- data/lib/syncevolution/version.rb +1 -1
- data/syncevolution.gv +33 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7db4af2c5cf4bf378560c752ffb6738f852b2b66
|
4
|
+
data.tar.gz: ae6077dc3044c7f0706446baf900273af0c2fd39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc8194501cbaddba99bfe8d99cc1657552ba7123a5ff07ab201d15e5cbbf06cb7d3c21eb821fd5d3f02baee44e1135868435d82b2773ebcd92ce4f21778ee6c4
|
7
|
+
data.tar.gz: c81a4b3b53d3c24ac805cde53e0ec2319017e8be53e95e961573329e620afb364129d9a5fde908e9d7da0b50e2c746b78529b71ec29e9520b98bce67426f08c0
|
data/bin/se-config
CHANGED
@@ -57,13 +57,14 @@ module SyncEvolution
|
|
57
57
|
|
58
58
|
targetsync = @doc.at("//context[@name=#{_inspect(targetcontext)}]/sync[@name='target-config']")
|
59
59
|
targetstore = @doc.at("//context[@name=#{_inspect(targetcontext)}]/store[@name=#{_inspect(store['uri'])}]")
|
60
|
+
sourcestore = @doc.at("//context[@name=#{_inspect(store.parent.parent['name'])}]/store[@name=#{_inspect(store['name'])}]")
|
60
61
|
|
61
62
|
dir = case store['sync']
|
62
63
|
when 'two-way' then 'both'
|
63
64
|
else throw store['sync'].inspect
|
64
65
|
end
|
65
66
|
|
66
|
-
gv << " #{gv_id.call(
|
67
|
+
gv << " #{gv_id.call(sourcestore)} -> #{gv_id.call(store.parent)} [label=\"#{syncs}\", dir=#{dir}, style=dashed];\n"
|
67
68
|
gv << " #{gv_id.call(store.parent)} -> #{gv_id.call(targetsync)} [label=\"#{syncs}\", dir=#{dir}, style=dashed];\n"
|
68
69
|
gv << " #{gv_id.call(targetsync)} -> #{gv_id.call(targetstore)} [label=\"#{syncs}\", dir=#{dir}, style=dashed];\n"
|
69
70
|
}
|
data/syncevolution.gv
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
digraph syncevolution {
|
2
|
+
subgraph cluster_local {
|
3
|
+
label = "local";
|
4
|
+
local_contacts [ shape = folder, label = "contacts"];
|
5
|
+
local_calendar [ shape = folder, label = "calendar"];
|
6
|
+
local_google [ shape = component, label = "google"];
|
7
|
+
local_exchange [ shape = component, label = "exchange"];
|
8
|
+
}
|
9
|
+
subgraph cluster_google {
|
10
|
+
label = "google";
|
11
|
+
google_contacts [ shape = folder, label = "contacts"];
|
12
|
+
google_calendar [ shape = folder, label = "calendar"];
|
13
|
+
google_targetconfig [ shape = component, label = "target-config"];
|
14
|
+
}
|
15
|
+
subgraph cluster_exchange {
|
16
|
+
label = "exchange";
|
17
|
+
exchange_contacts [ shape = folder, label = "contacts"];
|
18
|
+
exchange_calendar [ shape = folder, label = "calendar"];
|
19
|
+
exchange_targetconfig [ shape = component, label = "target-config"];
|
20
|
+
}
|
21
|
+
local_contacts -> local_google [label="1", dir=both, style=dashed];
|
22
|
+
local_google -> google_targetconfig [label="1", dir=both, style=dashed];
|
23
|
+
google_targetconfig -> google_contacts [label="1", dir=both, style=dashed];
|
24
|
+
local_calendar -> local_google [label="2", dir=both, style=dashed];
|
25
|
+
local_google -> google_targetconfig [label="2", dir=both, style=dashed];
|
26
|
+
google_targetconfig -> google_calendar [label="2", dir=both, style=dashed];
|
27
|
+
local_contacts -> local_exchange [label="3", dir=both, style=dashed];
|
28
|
+
local_exchange -> exchange_targetconfig [label="3", dir=both, style=dashed];
|
29
|
+
exchange_targetconfig -> exchange_contacts [label="3", dir=both, style=dashed];
|
30
|
+
local_calendar -> local_exchange [label="4", dir=both, style=dashed];
|
31
|
+
local_exchange -> exchange_targetconfig [label="4", dir=both, style=dashed];
|
32
|
+
exchange_targetconfig -> exchange_calendar [label="4", dir=both, style=dashed];
|
33
|
+
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: syncevolution
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Emiliano Heyns
|
@@ -97,6 +97,7 @@ files:
|
|
97
97
|
- lib/syncevolution/version.rb
|
98
98
|
- publish.sh
|
99
99
|
- syncevolution.gemspec
|
100
|
+
- syncevolution.gv
|
100
101
|
- test/syncevolution.rb
|
101
102
|
- tt
|
102
103
|
homepage: ''
|