Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/Formatting "deprecated since" note #312

Merged
merged 1 commit into from
Jan 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 16 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,8 @@ Defines the hard (physical) and soft (touchscreen) buttons available from the mo


### DisplayType
deprecated since 5.0.0
###### Deprecated since: 5.0.0

See DAES for further infos regarding the displays

##### Elements
Expand Down Expand Up @@ -1592,7 +1593,8 @@ List possible cushions of a multi-contour massage seat.


### SupportedSeat
deprecated since 6.0.0
###### Deprecated since: 6.0.0

List possible seats that is a remote controllable seat.

##### Elements
Expand Down Expand Up @@ -2215,7 +2217,8 @@ Individual requested DID result and data


### DisplayCapabilities
deprecated since 6.0.0
###### Deprecated since: 6.0.0

Contains information about the display capabilities. This struct is deprecated; please see the new SystemCapability DISPLAYS and corresponding struct DisplayCapability

##### Parameters
Expand Down Expand Up @@ -4561,7 +4564,8 @@ Response is sent, when the file data was copied (success case). Or when an error
### SetDisplayLayout
Message Type: **request**

deprecated since 6.0.0
###### Deprecated since: 6.0.0

This RPC is deprecated. Use Show RPC to change layout.

##### Parameters
Expand All @@ -4576,7 +4580,8 @@ This RPC is deprecated. Use Show RPC to change layout.
### SetDisplayLayout
Message Type: **response**

deprecated since 6.0.0
###### Deprecated since: 6.0.0

This RPC is deprecated. Use Show RPC to change layout.

##### Parameters
Expand Down Expand Up @@ -5423,7 +5428,8 @@ This notification tells an app to update the AddSubMenu or its 'sub' AddCommand
### EncodedSyncPData
Message Type: **request**

deprecated since 7.1.0
###### Deprecated since: 7.1.0

Allows encoded data in the form of SyncP packets to be sent to the SYNC module. Legacy / v1 Protocol implementation; use SyncPData instead. *** DEPRECATED ***

##### Parameters
Expand All @@ -5436,7 +5442,8 @@ Allows encoded data in the form of SyncP packets to be sent to the SYNC module.
### EncodedSyncPData
Message Type: **response**

deprecated since 7.1.0
###### Deprecated since: 7.1.0

##### Parameters

| Value | Type | Mandatory | Description |
Expand All @@ -5449,7 +5456,8 @@ deprecated since 7.1.0
### OnEncodedSyncPData
Message Type: **notification**

deprecated since 7.1.0
###### Deprecated since: 7.1.0

Callback including encoded data of any SyncP packets that SYNC needs to send back to the mobile device. Legacy / v1 Protocol implementation; responds to EncodedSyncPData. *** DEPRECATED ***

##### Parameters
Expand Down
2 changes: 1 addition & 1 deletion RpcParser/markdown_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def process(self, readme_file, interface):
if isinstance(item, Function):
mark_down.write('\nMessage Type: **{}**\n'.format(item.message_type.name))
if item.deprecated and item.since:
mark_down.write('\ndeprecated since ' + item.since)
mark_down.write('\n###### Deprecated since: {}\n'.format(item.since))
if item.description:
mark_down.write('\n{}\n'.format(re.sub(r'\s{2,}', ' ', ' '.join(item.description)).strip()))

Expand Down