<feed xmlns='http://www.w3.org/2005/Atom'>
<title>BMC/OpenBmc/webui-vue.git/src/main.js, branch processor-chart</title>
<subtitle>Web-based user interface built on Vue.js for managing OpenBMC systems (mirror)</subtitle>
<id>https://git.radix-linux.su/BMC/OpenBmc/webui-vue.git/atom?h=processor-chart</id>
<link rel='self' href='https://git.radix-linux.su/BMC/OpenBmc/webui-vue.git/atom?h=processor-chart'/>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/OpenBmc/webui-vue.git/'/>
<updated>2022-07-21T13:08:13+00:00</updated>
<entry>
<title>create accessoryTable(no styles for XS size, start to create collapse component)</title>
<updated>2022-07-21T13:08:13+00:00</updated>
<author>
<name>Maksim Zakharov</name>
<email>m.zakharov@IBS.RU</email>
</author>
<published>2022-07-21T13:08:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/OpenBmc/webui-vue.git/commit/?id=84ee6ea0c4ff5ff69e6aaeac2f587e491d9b3eb7'/>
<id>urn:sha1:84ee6ea0c4ff5ff69e6aaeac2f587e491d9b3eb7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add template</title>
<updated>2022-07-20T14:20:35+00:00</updated>
<author>
<name>Vitalii Lysak</name>
<email>v.lysak@dunice.net</email>
</author>
<published>2022-07-20T14:20:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/OpenBmc/webui-vue.git/commit/?id=2581c2ae3ea819fa54841560f976362877a8c213'/>
<id>urn:sha1:2581c2ae3ea819fa54841560f976362877a8c213</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix display date for event logs and fix ldap</title>
<updated>2022-07-15T13:16:42+00:00</updated>
<author>
<name>Anna Tsyganova</name>
<email>ATSyganova@IBS.RU</email>
</author>
<published>2022-07-15T13:16:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/OpenBmc/webui-vue.git/commit/?id=f5122b4d85ccb6db03fd23d79d63c0bfbe09d8bf'/>
<id>urn:sha1:f5122b4d85ccb6db03fd23d79d63c0bfbe09d8bf</id>
<content type='text'>
Issue: SILABMC-191
</content>
</entry>
<entry>
<title>Network settings redesign - interface settings</title>
<updated>2021-12-03T20:45:37+00:00</updated>
<author>
<name>Dixsie Wolmers</name>
<email>dixsie@ibm.com</email>
</author>
<published>2021-10-07T21:15:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/OpenBmc/webui-vue.git/commit/?id=c4b8757ed88ecea369e6044548d2fbe072d5bd4a'/>
<id>urn:sha1:c4b8757ed88ecea369e6044548d2fbe072d5bd4a</id>
<content type='text'>
First commit of the network settings redesign:

- Adds the global network settings section for DHCP settings
- Adds read only hostname, FQDN and MAC address,
modal to edit each will be done seperately
- Removes interface specific sections to refactor in next commit
- Adds tab component to display ethernet data by interface
- Ability  to edit, delete and add ipv4 addresses and DNS will
be done in separate commit

Signed-off-by: Dixsie Wolmers &lt;dixsie@ibm.com&gt;
Change-Id: Ibb1db6894ee697fec9e6ea1b8312d041c61faaad
</content>
</entry>
<entry>
<title>Fix cross-browser time formatting bug</title>
<updated>2021-07-14T22:15:55+00:00</updated>
<author>
<name>Derick Montague</name>
<email>derick.montague@ibm.com</email>
</author>
<published>2021-07-10T01:00:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/OpenBmc/webui-vue.git/commit/?id=07b85ef34340906a551aa68c0729ab16f10e391c'/>
<id>urn:sha1:07b85ef34340906a551aa68c0729ab16f10e391c</id>
<content type='text'>
To format the BMC time as 24 hour time, we used the `hour12` property.
In Chrome, the time between 12:00 AM and 1:00 AM is displaye as 24:xx,
instead of 00:xx. The cross-browser solution is to replace the `hour12`
property with the `hourCycle` property so that all the time is formatted
as 00:xx.

Reference for Intl.DateTimeFormat constructor
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat

Signed-off-by: Derick Montague &lt;derick.montague@ibm.com&gt;
Change-Id: I68539d9602499dcb1bde9a4b01dd7a66fbc69d1a
</content>
</entry>
<entry>
<title>Update linting packages to use latest</title>
<updated>2020-11-03T16:47:51+00:00</updated>
<author>
<name>Derick Montague</name>
<email>derick.montague@ibm.com</email>
</author>
<published>2020-10-21T21:20:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/OpenBmc/webui-vue.git/commit/?id=602e98aa32f82fd3b0c3d250c7cc1f8da971db24'/>
<id>urn:sha1:602e98aa32f82fd3b0c3d250c7cc1f8da971db24</id>
<content type='text'>
- 99% of changes were small syntax changes that were changed by the
lint command. There were a couple of small manual changes to meet the
property order patterns established as part of the vue:recommended
guidelines.

There are rules that were set from errors to warnings and new stories
are being opened to address those issues.

Testing:
- Successfully ran npm run serve
- Successfully ran npm run lint
- Verified functionality works as expected, e.g. success and failure use cases
- Resolved any JavaScript errors thrown to the console

Signed-off-by: Derick Montague &lt;derick.montague@ibm.com&gt;
Change-Id: Ie082f31c73ccbe8a60afa8f88a9ef6dbf33d9fd2
</content>
</entry>
<entry>
<title>Add comments for imports that support dotenv</title>
<updated>2020-10-19T15:39:09+00:00</updated>
<author>
<name>Yoshie Muranaka</name>
<email>yoshiemuranaka@gmail.com</email>
</author>
<published>2020-10-16T14:58:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/OpenBmc/webui-vue.git/commit/?id=8263d85c4f97cbf22639054412ea0323251de0f7'/>
<id>urn:sha1:8263d85c4f97cbf22639054412ea0323251de0f7</id>
<content type='text'>
We have set up exact match resolve aliases to support different
dotenv build customizations. Added comments to the imports
that should not be changed.

Signed-off-by: Yoshie Muranaka &lt;yoshiemuranaka@gmail.com&gt;
Change-Id: Ie371b42ec35f876ccb89ef976f7126d5234a1b47
</content>
</entry>
<entry>
<title>Add Firmware page</title>
<updated>2020-08-13T16:32:03+00:00</updated>
<author>
<name>Yoshie Muranaka</name>
<email>yoshiemuranaka@gmail.com</email>
</author>
<published>2020-07-15T17:30:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/OpenBmc/webui-vue.git/commit/?id=92a0a4ac1f25271c1861d7c97a0d8344dd578905'/>
<id>urn:sha1:92a0a4ac1f25271c1861d7c97a0d8344dd578905</id>
<content type='text'>
Adds ability to upload a fimware image by local workstation
or TFTP. Also adds ability to reboot BMC from the backup image.

- Add route definition, component view, and store for
  Firmware page
- Get ActiveSoftwareImage location at /redfish/v1/Managers/bmc
- Get backup by checking for an image id that is not the same as
  the active image /redfish/v1/UpdateService/FirmwareInventory
- Switch running firmware image by making PATCH request to
  /redfish/v1/Managers/bmc

Signed-off-by: Yoshie Muranaka &lt;yoshiemuranaka@gmail.com&gt;
Change-Id: I04450e5a170d374122908c4c0349ba3b6e93ed2c
</content>
</entry>
<entry>
<title>Add timezone to profile settings page</title>
<updated>2020-07-27T21:35:55+00:00</updated>
<author>
<name>Sukanya Pandey</name>
<email>sukapan1@in.ibm.com</email>
</author>
<published>2020-06-23T17:24:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/OpenBmc/webui-vue.git/commit/?id=fc16f3c268a9d35f889f5770331d11e87ab16af3'/>
<id>urn:sha1:fc16f3c268a9d35f889f5770331d11e87ab16af3</id>
<content type='text'>
 - Users will have two options to select a timezone.
 - UTC and browser offset timezone are the two options for the application.
 - date-fns and date-fns-tz is used for date and time manipulations because:-
   - The package size of library is smaller.
   - It allows for importing functions to work with the native date object
     rather than having to create a moment instance that carries a larger payload.

Signed-off-by: Sukanya Pandey &lt;sukapan1@in.ibm.com&gt;
Change-Id: I581803f230f501c0d34d0b53e7c2d89e8466ee60
</content>
</entry>
<entry>
<title>Add date filter on Event logs page</title>
<updated>2020-06-13T04:49:18+00:00</updated>
<author>
<name>Yoshie Muranaka</name>
<email>yoshiemuranaka@gmail.com</email>
</author>
<published>2020-05-18T16:49:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/OpenBmc/webui-vue.git/commit/?id=68bbba296c6f99b81d2882e1fef6f37cf4a6bb51'/>
<id>urn:sha1:68bbba296c6f99b81d2882e1fef6f37cf4a6bb51</id>
<content type='text'>
Created global TableDateFilter component that uses the BootstrapVue
Datepicker with a native text input. This will allow users to manually
enter a date in ISO format or use the Bootstrap calendar dropdown.

Storing language preference from Login to use locale prop on
BootstrapVue Datepicker component.

Signed-off-by: Yoshie Muranaka &lt;yoshiemuranaka@gmail.com&gt;
Change-Id: I66de9fb04451572c9a90f90d8522934b6204aed2
</content>
</entry>
</feed>
