Skip to content
Snippets Groups Projects
Select Git revision
  • efeceaa96a78689bab6fae02f78b07e5da871478
  • master default
  • host01
  • ns4
  • kodi
5 results

Dockerfile

Blame
    • nimrod's avatar
      efeceaa9
      Cleanup. · efeceaa9
      nimrod authored
      - No more proxying in www.shore.co.il. I think about redoing it all with
        a subdomain per service. Also no more secrets, intead authenticate
        against the LDAP server or something.
      - CI templates.
      - Simpler self-signed SSL certificate generation.
      - Set the hostname in CI.
      - Use the www-redirect snippet in shore.co.il.
      efeceaa9
      History
      Cleanup.
      nimrod authored
      - No more proxying in www.shore.co.il. I think about redoing it all with
        a subdomain per service. Also no more secrets, intead authenticate
        against the LDAP server or something.
      - CI templates.
      - Simpler self-signed SSL certificate generation.
      - Set the hostname in CI.
      - Use the www-redirect snippet in shore.co.il.
    Ping.vala 1.29 KiB
    /**
     * This program is free software; you can redistribute it and/or modify
     * it under the terms of the GNU General Public License version 2 as
     * published by the Free Software Foundation.
     *
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU General Public License for more details.
     *
     * You should have received a copy of the GNU General Public License along
     * with this program; if not, write to the Free Software Foundation, Inc.,
     * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
     *
     * AUTHORS
     * gyan000 <gyan000 (at] ijaz.fr>
     */
    using EOSConnect.Widgets;
    using EOSConnect.Plugin;
    using MConnect;
    
    namespace EOSConnect.Plugin {
    
        public class Ping : PluginInterface {
    
            construct {
                name  = _("Ping");
                icon_name = "network-transmit-receive";
                capability_name = PingHandler.PING;
                description = _("Send or receive a ping.");
                settings_key_is_active = "kdeconnect-ping-active";
            }
    
            public override PluginListBoxRow get_plugin_list_box_row (PluginInterface plugin, Device device) {
                return new Widgets.PingPluginListBoxRow (plugin, device);
            }
        }
    }