<feed xmlns='http://www.w3.org/2005/Atom'>
<title>phosphor-webui/app/configuration, branch master</title>
<subtitle>OpenBMC Phosphor WebUI sources</subtitle>
<id>https://git.raptorcs.com/git/phosphor-webui/atom?h=master</id>
<link rel='self' href='https://git.raptorcs.com/git/phosphor-webui/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/phosphor-webui/'/>
<updated>2019-11-26T16:35:41+00:00</updated>
<entry>
<title>Fix truncated button icons on Safari</title>
<updated>2019-11-26T16:35:41+00:00</updated>
<author>
<name>Yoshie Muranaka</name>
<email>yoshiemuranaka@gmail.com</email>
</author>
<published>2019-11-15T19:24:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/phosphor-webui/commit/?id=27915d2f48df3cd885f4606e90012bea8496be0c'/>
<id>urn:sha1:27915d2f48df3cd885f4606e90012bea8496be0c</id>
<content type='text'>
Removing margin offset to fix issue with button icons being
visually truncated on Safari. Removing additional redundant
code around same icon/buttons.

Signed-off-by: Yoshie Muranaka &lt;yoshiemuranaka@gmail.com&gt;
Change-Id: Ie1ef89023a043a70a0126a21be57febb9afae19a
</content>
</entry>
<entry>
<title>Create firmware-card component</title>
<updated>2019-11-14T15:04:27+00:00</updated>
<author>
<name>Yoshie Muranaka</name>
<email>yoshiemuranaka@gmail.com</email>
</author>
<published>2019-10-24T14:02:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/phosphor-webui/commit/?id=1ab0f7c1d59e3ccae14d92ba865ec52c53772ca2'/>
<id>urn:sha1:1ab0f7c1d59e3ccae14d92ba865ec52c53772ca2</id>
<content type='text'>
Create reusable firmware card component that will be
used in the updated firmware page:
https://ibm.invisionapp.com/share/4XNZ0JAMJ7B#/screens/319212821_4-8-D-1_Home

Signed-off-by: Yoshie Muranaka &lt;yoshiemuranaka@gmail.com&gt;
Change-Id: I86e526c59ac5c2e2c011aed0ce4bc3d82db63b5e
</content>
</entry>
<entry>
<title>Remove firmware reboot timeout</title>
<updated>2019-11-14T01:48:02+00:00</updated>
<author>
<name>Yoshie Muranaka</name>
<email>yoshiemuranaka@gmail.com</email>
</author>
<published>2019-11-11T15:44:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/phosphor-webui/commit/?id=c10fce5b9497eea5ff36160adf0497c62b53a549'/>
<id>urn:sha1:c10fce5b9497eea5ff36160adf0497c62b53a549</id>
<content type='text'>
A 10 second timeout was used as a tempoary work-around
before rebooting the BMC on the firmware page–removing
the timeout since it is no longer needed.

Signed-off-by: Yoshie Muranaka &lt;yoshiemuranaka@gmail.com&gt;
Change-Id: I6a95d5f5bb377d3fd3cc0802f7fb3d6d0f177870
</content>
</entry>
<entry>
<title>NTP: Remove workaround for empty list array</title>
<updated>2019-10-17T15:53:44+00:00</updated>
<author>
<name>Gunnar Mills</name>
<email>gmills@us.ibm.com</email>
</author>
<published>2019-10-14T18:04:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/phosphor-webui/commit/?id=254b16ee2e354b1fe7a27c0efe38f568bd159c29'/>
<id>urn:sha1:254b16ee2e354b1fe7a27c0efe38f568bd159c29</id>
<content type='text'>
This workaround is no longer needed with bmcweb.

curl  -k -H "Content-Type: application/json" -X PUT \
-d '{"data": [] }' \
https://${bmc}/xyz/openbmc_project/network/eth0/attr/NTPServers

See https://github.com/openbmc/openbmc/issues/3240

Tested: Built and loaded on a Witherspoon. Added, removed, and
        edited NTP servers.
Change-Id: Ia106067a479c63a5761b1f62c624d3ccc6df55c7
Signed-off-by: Gunnar Mills &lt;gmills@us.ibm.com&gt;
</content>
</entry>
<entry>
<title>DNS: Remove workaround for empty list array</title>
<updated>2019-10-17T15:53:44+00:00</updated>
<author>
<name>Gunnar Mills</name>
<email>gmills@us.ibm.com</email>
</author>
<published>2019-10-14T16:34:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/phosphor-webui/commit/?id=9aee5e672b5429169a299494f368f9c4498432bf'/>
<id>urn:sha1:9aee5e672b5429169a299494f368f9c4498432bf</id>
<content type='text'>
This workaround is no longer needed with bmcweb.

curl  -k -H "Content-Type: application/json" -X PUT \
-d '{"data": [] }' \
https://${bmc}/xyz/openbmc_project/network/eth0/attr/Nameservers
{
  "data": null,
  "message": "200 OK",
  "status": "ok"

and actually casues an error now do to
https://github.com/openbmc/phosphor-networkd/commit/5fb6c33a49ee2b9718cc9ce0f921d3b6cf38a463

curl  -k -H "Content-Type: application/json" -X PUT \
-d '{"data": [""] }' \
https://${bmc}/xyz/openbmc_project/network/eth0/attr/Nameservers
  "data": {
    "description": "xyz.openbmc_project.Common.Error.InvalidArgument"
  },
  "message": "Invalid argument was given.",

See https://github.com/openbmc/openbmc/issues/3240

Tested: Built and loaded on a Witherspoon. Added, removed,
        and edited DNS servers.
Signed-off-by: Gunnar Mills &lt;gmills@us.ibm.com&gt;
Change-Id: I278489a8c4682641b61a0e5ab08fd714603b0234
</content>
</entry>
<entry>
<title>Fix SNMP multiple calls bug</title>
<updated>2019-10-16T18:33:55+00:00</updated>
<author>
<name>Derick Montague</name>
<email>derick.montague@ibm.com</email>
</author>
<published>2019-10-10T16:47:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/phosphor-webui/commit/?id=3cd2c65b57002ac2324c361a0c53f6b1865b70c6'/>
<id>urn:sha1:3cd2c65b57002ac2324c361a0c53f6b1865b70c6</id>
<content type='text'>
- Added a call to reload the route in the promise success callback. This
   assures that a newly added manager has a path.
- Update the use of var in for blocks to scope the variable to the
   block rather than overwriting the i variable that is hoisted and
   scoped to the setSNMP function.
- Change i variable name to managerLength to improve readability

Signed-off-by: Derick Montague &lt;derick.montague@ibm.com&gt;
Change-Id: I18fe9ecc3ca7cca29781a5c24caca73bda71ee43
</content>
</entry>
<entry>
<title>Add error message when image fails to activate</title>
<updated>2019-10-11T20:02:24+00:00</updated>
<author>
<name>Dixsie Wolmers</name>
<email>dixsiew@gmail.com</email>
</author>
<published>2019-10-04T17:49:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/phosphor-webui/commit/?id=ff7f10685d0ce060bf2d1a90872c0c6016711b41'/>
<id>urn:sha1:ff7f10685d0ce060bf2d1a90872c0c6016711b41</id>
<content type='text'>
If an image fails to activate a toast message is displayed.

Tested on Witherspoon with master build image and
field mode turned on. When image fails to activate,
the failed activation status response returns a 200
ok and an error toast is displayed. Tested with field
mode turned off to verify image activates and BMC reboots.
Tested on all browsers.

Signed-off-by: Dixsie Wolmers &lt;dixsiew@gmail.com&gt;
Change-Id: I517f184549673e7b807cc0a553a728d05d6dbba1
</content>
</entry>
<entry>
<title>Fix invalid gateway toast message</title>
<updated>2019-10-10T19:57:03+00:00</updated>
<author>
<name>Derick Montague</name>
<email>derick.montague@ibm.com</email>
</author>
<published>2019-10-08T22:16:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/phosphor-webui/commit/?id=de2da859cb4d8e8bbdb4470794ffbf7198de4812'/>
<id>urn:sha1:de2da859cb4d8e8bbdb4470794ffbf7198de4812</id>
<content type='text'>
Add check for gateway value before testing if the string is valid.
The backend seems to handle an empty gateway the same as sending
0.0.0.0. When the GET call is made after sending 0.0.0.0 as the
gateway value, the response returns an empty string. This field
seems to be an override for the default gateway input for the
interface.

Signed-off-by: Derick Montague &lt;derick.montague@ibm.com&gt;
Change-Id: Id6a5575e73a7c8adfff052c89bb4e8ca986d45f9
</content>
</entry>
<entry>
<title>Fix icon-warning syntax error</title>
<updated>2019-10-09T14:54:41+00:00</updated>
<author>
<name>Derick Montague</name>
<email>derick.montague@ibm.com</email>
</author>
<published>2019-10-08T21:00:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/phosphor-webui/commit/?id=86c0b94b6d4e3876b9a43b01faa8ee78269415eb'/>
<id>urn:sha1:86c0b94b6d4e3876b9a43b01faa8ee78269415eb</id>
<content type='text'>
There were a few instances of the icon-warning icon that didn't
include the file extenstion needed to when adding the file attribute
property in the icon directive.

Signed-off-by: Derick Montague &lt;derick.montague@ibm.com&gt;
Change-Id: Ib25c28c72285fa214f75258b0b09790d52bb6cc1
</content>
</entry>
<entry>
<title>Fix date and time settings bug</title>
<updated>2019-10-07T20:32:46+00:00</updated>
<author>
<name>Dixsie Wolmers</name>
<email>dixsiew@gmail.com</email>
</author>
<published>2019-09-26T19:00:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/phosphor-webui/commit/?id=fdcb35ee7d351cac68820247d7538cc3e1ebe3bb'/>
<id>urn:sha1:fdcb35ee7d351cac68820247d7538cc3e1ebe3bb</id>
<content type='text'>
When time mode is initially set to Manual from NTP,
NTP service is disabled and the NTP service is stopping
but not stopped, setting time will return an error.
There are no response messages to notify when
NTP is completely stopped.

To work around, a timeout is set to allow NTP to fully stop
before saving date/time changes.

https://github.com/openbmc/phosphor-time-manager/blob/master/README.md

Signed-off-by: Dixsie Wolmers &lt;dixsiew@gmail.com&gt;
Change-Id: Icb86dfe339a10567aecf9aedd9b0dd696937a398
</content>
</entry>
</feed>
