-
Notifications
You must be signed in to change notification settings - Fork 401
Expand file tree
/
Copy pathcompany_share.xml.erb
More file actions
33 lines (33 loc) · 1 KB
/
company_share.xml.erb
File metadata and controls
33 lines (33 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<share>
<visibility>
<code><%=h visibility.code%></code>
</visibility>
<% if comment %>
<comment><%= h comment %></comment>
<% end %>
<% if content %>
<content>
<% if content["title"] %><title><%= h content["title"] %></title><% end %>
<submitted-url><%= h content["submitted-url"] %></submitted-url>
<% if content["description"] %><description><%= h content["description"] %></description><% end %>
<% if content["submitted-image-url"] %><submitted-image-url><%= h content["submitted-image-url"] %></submitted-image-url><% end %>
</content>
<% end %>
<% if targets %>
<share-target-reach>
<share-targets>
<% targets.each do |key, values| %>
<share-target>
<code><%= h key %></code>
<tvalues>
<% values.each do |value| %>
<tvalue><%= h value %></tvalue>
<% end %>
</tvalues>
</share-target>
<% end %>
</share-targets>
</share-target-reach>
<% end %>
</share>