Skip to content

Commit 6cadbe6

Browse files
authored
Merge pull request #7405 from ovh/YC-DataPlatform-formats-test
Data Platform integration - Testing formats
2 parents e02f074 + 16b0321 commit 6cadbe6

File tree

1 file changed

+107
-2
lines changed

1 file changed

+107
-2
lines changed

pages/web_cloud/phone_and_fax/fax/test-article-snow/guide.fr-fr.md

+107-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Test article for ServiceNow images loading issue
33
flag: hidden
4-
updated: 2025-01-07
4+
updated: 2025-01-14
55
---
66

77
This article's purpose is to show the main images loading issue currently experienced on the OVHcloud Help Centre.
@@ -36,4 +36,109 @@ This article's purpose is to show the main images loading issue currently experi
3636

3737
## Image 9
3838

39-
![2FA](images/2024-004-u2f-choice.png){.thumbnail}
39+
![2FA](images/2024-004-u2f-choice.png){.thumbnail}
40+
41+
## Data Platform tests
42+
43+
### Numbered list
44+
45+
1. Do this
46+
1. Do that
47+
1. Do also this
48+
49+
1. Design a storyboard
50+
* check data is available
51+
* identify `dynamic parameters`
52+
* identify needed *charts* and *custom components*
53+
2. Analytics Manager: prepare and check needed queries
54+
3. Implement a first version in the UI
55+
* set up `dynamic parameters`
56+
* set up `dashboards` and `menus`
57+
* set up available `charts` as needed
58+
* set up `dictionaries`, `formatters` and `translations`
59+
4. Improve that version
60+
* Adapt CSS as needed
61+
* Leverage [Style templates](/en/technical/sdk/app/charts/template)
62+
* Implement your own [custom chart](/en/technical/sdk/app/custom-chart) or [custom component](/en/technical/sdk/app/custom-component) as needed
63+
* Add [Web Analytics](/en/getting-further/app-dev/monitor) as needed
64+
5. Test and iterate again
65+
6. Give access to more users
66+
67+
#### Hover text on image
68+
69+
![account creation](images/account-creation.png "account creation hover text")
70+
71+
![account creation](images/account-creation.png "account creation hover text"){.thumbnail}
72+
73+
#### Tables
74+
75+
| Original table | Attributes to drag-and-drop |
76+
| :------------------------------: | -------------------------- |
77+
| **stations_rides** | *lat* / *lng* / *rides* / *station_name* |
78+
| **chicago_calendar_full** | *month* / *temperature* / *week_day* / *week_day_label* / *weekend* / |
79+
80+
| Action Types | Source Types |
81+
| --- | --- |
82+
| <ul><li>Load</li><li>Custom</li></ul> | <ul>**File Formats**: CSV</ul><ul>**Databases**: MySQL, PostgreSQL, SQLServer, Impala, Hive, BiqQuery, ElasticSearch, Cassandra, Redshift, Oracle, SQLServer</ul> |
83+
84+
85+
### Icons
86+
87+
⛳️ 👉 🎊 🎉 💡 📨 📥 ⭐
88+
89+
<p><span style="color:red; font-size:20px;"><b> Congrats! 🎉🎊</b></span></p>
90+
91+
### Snippets
92+
93+
```bash
94+
├── config
95+
├── node_modules
96+
├── forepaas
97+
├── public
98+
├── scripts
99+
└── src
100+
```
101+
102+
---
103+
104+
```jsx
105+
<div>
106+
<div className="dyn-title checkbox-header">
107+
{props.title}
108+
<i
109+
onClick={() => setExpanded(!expanded)}
110+
className={`fa fa-chevron-${expanded ? "down" : "right"} expand-icon`}
111+
/>
112+
</div>
113+
{expanded && (
114+
<CheckboxGroup name="options">
115+
{Checkbox => (
116+
<React.Fragment>
117+
{props.items.map(option => (
118+
<div key={option.value}>
119+
<label className="dyn-checkbox-container" htmlFor={option.value}>
120+
<Checkbox
121+
className="dyn-checkbox"
122+
id={option.value}
123+
value={option.value}
124+
/>
125+
<span className="dyn-checkbox-label">{option.label}</span>
126+
</label>
127+
</div>
128+
))}
129+
</React.Fragment>
130+
)}
131+
</CheckboxGroup>
132+
)}
133+
</div>
134+
```
135+
136+
```cel
137+
Resource != "bucket"
138+
||
139+
(
140+
Resource == "bucket"
141+
&&
142+
Name == "my_bucket"
143+
)
144+
```

0 commit comments

Comments
 (0)