devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=06d80f603a42ca27870362f307899e450df77eb7
commit 06d80f603a42ca27870362f307899e450df77eb7 Author: Christopher Michael <devilho...@comcast.net> Date: Mon Mar 1 11:24:13 2021 -0500 enlightenment: Remove teamwork protocol The teamwork module has been removed for some time now, so let's also remove the custom protocol file --- src/protocol/teamwork.xml | 39 --------------------------------------- 1 file changed, 39 deletions(-) diff --git a/src/protocol/teamwork.xml b/src/protocol/teamwork.xml deleted file mode 100644 index 99e2f33df..000000000 --- a/src/protocol/teamwork.xml +++ /dev/null @@ -1,39 +0,0 @@ -<protocol name="teamwork"> - - <interface name="zwp_teamwork" version="2"> - <request name="preload_uri"> - <arg name="surface" type="object" interface="wl_surface"/> - <arg name="uri" type="string"/> - </request> - <request name="activate_uri"> - <arg name="surface" type="object" interface="wl_surface"/> - <arg name="uri" type="string"/> - <arg name="x" type="fixed" summary="surface local coords"/> - <arg name="y" type="fixed" summary="surface local coords"/> - </request> - <request name="deactivate_uri"> - <arg name="surface" type="object" interface="wl_surface"/> - <arg name="uri" type="string"/> - </request> - <request name="open_uri"> - <arg name="surface" type="object" interface="wl_surface"/> - <arg name="uri" type="string"/> - </request> - - <event name="fetching_uri"> - <arg name="surface" type="object" interface="wl_surface"/> - <arg name="uri" type="string"/> - </event> - <event name="completed_uri"> - <arg name="surface" type="object" interface="wl_surface"/> - <arg name="uri" type="string"/> - <arg name="valid" type="int" summary="1 if uri can be displayed, else 0"/> - </event> - <event name="fetch_info"> - <arg name="surface" type="object" interface="wl_surface"/> - <arg name="uri" type="string"/> - <arg name="progress" type="uint" summary="percentage of download"/> - </event> - </interface> - -</protocol> --