Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5_fork
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eteri
erp5_fork
Commits
fe9ea50c
Commit
fe9ea50c
authored
Sep 15, 2022
by
Xiaowu Zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_officejs_eci_directory: get data from lab.nexedi.com
parent
499bb8d4
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
11 deletions
+14
-11
bt5/erp5_officejs_eci_directory/PathTemplateItem/web_page_module/gadget_erp5_eci_panel_html.html
...plateItem/web_page_module/gadget_erp5_eci_panel_html.html
+1
-1
bt5/erp5_officejs_eci_directory/PathTemplateItem/web_page_module/gadget_erp5_eci_panel_html.xml
...mplateItem/web_page_module/gadget_erp5_eci_panel_html.xml
+2
-2
bt5/erp5_officejs_eci_directory/PathTemplateItem/web_page_module/gadget_erp5_eci_publisher_storage_js.js
...m/web_page_module/gadget_erp5_eci_publisher_storage_js.js
+4
-3
bt5/erp5_officejs_eci_directory/PathTemplateItem/web_page_module/gadget_erp5_eci_publisher_storage_js.xml
.../web_page_module/gadget_erp5_eci_publisher_storage_js.xml
+2
-2
bt5/erp5_officejs_eci_directory/PathTemplateItem/web_page_module/gadget_erp5_page_eci_directory_html.html
.../web_page_module/gadget_erp5_page_eci_directory_html.html
+3
-1
bt5/erp5_officejs_eci_directory/PathTemplateItem/web_page_module/gadget_erp5_page_eci_directory_html.xml
...m/web_page_module/gadget_erp5_page_eci_directory_html.xml
+2
-2
No files found.
bt5/erp5_officejs_eci_directory/PathTemplateItem/web_page_module/gadget_erp5_eci_panel_html.html
View file @
fe9ea50c
...
...
@@ -66,7 +66,7 @@
<!--
li
class
=
"
ui-last-child
"
><
a
href
=
"
{{logout_href}}
"
class
=
"
ui-btn ui-btn-icon-left ui-icon-power-off
"
data
-
i18n
=
"
Logout
"
accesskey
=
"
o
"
>
Logout
<
/a></
li
-->
<
/ul
>
<
br
/>
<
p
class
=
"
ui-custom-content
"
>
Contribute
on
:
<
br
/><
a
href
=
"
https://
github.com/Fonds-de-Dotation-du-Libre/european-cloud-industry
"
>
European
Cloud
Industry
(
on
Github
)
<
/a></
p
>
<
p
class
=
"
ui-custom-content
"
>
Contribute
on
:
<
br
/><
a
href
=
"
https://
lab.nexedi.com/Fonds-de-Dotation-du-Libre/european-cloud-industry
"
>
European
Cloud
Industry
(
on
lab
.
nexedi
.
com
)
<
/a></
p
>
<
p
class
=
"
ui-custom-content
"
>
Made
possible
by
:
<
/p
>
<
footer
class
=
"
top
"
>
<
img
src
=
"
image_module/eci_fdl_logo_png
"
/>
...
...
bt5/erp5_officejs_eci_directory/PathTemplateItem/web_page_module/gadget_erp5_eci_panel_html.xml
View file @
fe9ea50c
...
...
@@ -238,7 +238,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
1002.
3467.37510.45909
</string>
</value>
<value>
<string>
1002.
64046.736.19814
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -256,7 +256,7 @@
</tuple>
<state>
<tuple>
<float>
16
59701478.13
</float>
<float>
16
63252733.58
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
bt5/erp5_officejs_eci_directory/PathTemplateItem/web_page_module/gadget_erp5_eci_publisher_storage_js.js
View file @
fe9ea50c
...
...
@@ -7,18 +7,19 @@
function
populatePublisherStorage
()
{
var
resource_url
=
"
https://lab.nexedi.com/Fonds-de-Dotation-du-Libre/european-cloud-industry/
"
;
return
new
RSVP
.
Queue
()
.
push
(
function
()
{
return
jIO
.
util
.
ajax
({
"
type
"
:
"
GET
"
,
"
url
"
:
"
https://api.github.com/repos/Fonds-de-Dotation-du-Libre/european-cloud-industry/contents/?ref=master
"
});
return
jIO
.
util
.
ajax
({
"
type
"
:
"
GET
"
,
"
url
"
:
resource_url
+
"
files/master?format=json
"
});
})
.
push
(
function
(
data
)
{
var
data_list
=
JSON
.
parse
(
data
.
target
.
response
||
data
.
target
.
responseText
);
var
result_list
=
data_list
.
map
(
function
(
entry
)
{
if
(
entry
.
path
.
endsWith
(
"
.json
"
))
{
if
(
entry
.
split
(
'
/
'
)[
0
]
.
endsWith
(
"
.json
"
))
{
return
{
id
:
entry
.
download_url
id
:
resource_url
+
"
raw/master/
"
+
entry
};
}
}).
filter
(
Boolean
);
...
...
bt5/erp5_officejs_eci_directory/PathTemplateItem/web_page_module/gadget_erp5_eci_publisher_storage_js.xml
View file @
fe9ea50c
...
...
@@ -234,7 +234,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
100
0.39241.7774.50346
</string>
</value>
<value>
<string>
100
2.63971.53385.5990
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -252,7 +252,7 @@
</tuple>
<state>
<tuple>
<float>
16
53987272.65
</float>
<float>
16
63248807.91
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
bt5/erp5_officejs_eci_directory/PathTemplateItem/web_page_module/gadget_erp5_page_eci_directory_html.html
View file @
fe9ea50c
...
...
@@ -15,7 +15,9 @@
</head>
<body>
<h2>
The comprehensive index of cloud and telecommunication technologies made in Europe
</h2>
<div
class=
"map_container"
style=
"height:50vh;"
></div>
<div
class=
"map_container"
style=
"height:50vh;"
>
<div
class=
"ui-icon-spinner ui-btn-icon-notext first-loader"
></div>
</div>
<section
class=
"ui-responsive ui-masonry-container"
>
<ul
class=
"grid-items"
>
<li
class=
"solution-container"
></li>
...
...
bt5/erp5_officejs_eci_directory/PathTemplateItem/web_page_module/gadget_erp5_page_eci_directory_html.xml
View file @
fe9ea50c
...
...
@@ -238,7 +238,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
1002.
4726.26181.16366
</string>
</value>
<value>
<string>
1002.
64042.4327.44544
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -256,7 +256,7 @@
</tuple>
<state>
<tuple>
<float>
1663
056654.78
</float>
<float>
1663
252474.79
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment