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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2a644fc5aa9036edcd885cbc2d04bb94f36f4a95
4
- data.tar.gz: 0f32e59ac356e24f48e8175b262656a1a6992718
3
+ metadata.gz: 7db4af2c5cf4bf378560c752ffb6738f852b2b66
4
+ data.tar.gz: ae6077dc3044c7f0706446baf900273af0c2fd39
5
5
  SHA512:
6
- metadata.gz: acd86598cdb20a5087a62ec017978d192f71bb5b64097dd8b54487c5a84d74ff0088ffff677a3791bf1289d48f411925cd09ae3a521fb5628bc4ca3f71167a97
7
- data.tar.gz: 961e755678f7112d6bee2c98da05a60aa2b9ffb221c5e86d80ad77b20ed64697736ce902ea3ef7654d5a80f594042d9a52090b8cbc65b08ff73d50c3896b7df5
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(store)} -> #{gv_id.call(store.parent)} [label=\"#{syncs}\", dir=#{dir}, style=dashed];\n"
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
  }
@@ -1,3 +1,3 @@
1
1
  module SyncEvolution
2
- VERSION = "0.1.9"
2
+ VERSION = "0.1.10"
3
3
  end
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.9
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: ''