�ɲɾ�����ӯ�����һ��ˣ��������С���˴��ͣ�������P���ҹ��ñ˽��ά�Բ��������˸߸ԣ�������ơ��ҹ��ñ�����ά�Բ���ˡ���˳^�ӣ������ӡ� ���ͯj�ӣ��ƺ���ӣ� ? PNG ?%k25u25%fgd5n!? PNG ?%k25u25%fgd5n!? PNG ?%k25u25%fgd5n!? PNG ?%k25u25%fgd5n!var/softaculous/drupal8/README.txt000064400000000426152525344560012775 0ustar00This directory contains configuration to be imported into your Drupal site. To make this configuration active, visit admin/config/development/configuration. For information about deploying configuration between servers, see https://www.drupal.org/documentation/administer/configvar/softaculous/drupal9/README.txt000064400000000433152525345100012763 0ustar00This directory contains configuration to be imported into your Drupal site. To make this configuration active, visit admin/config/development/configuration/sync. For information about deploying configuration between servers, see https://www.drupal.org/documentation/administer/configusr/lib64/python3.12/site-packages/README.txt000064400000000167152530107450014346 0ustar00This directory exists so that 3rd party packages can be installed here. Read the source for site.py for more details. usr/share/vim/vim80/tutor/README.txt000064400000001536152534037130013100 0ustar00Tutor is a "hands on" tutorial for new users of the Vim editor. Most new users can get through it in less than one hour. The result is that you can do a simple editing task using the Vim editor. Tutor is a file that contains the tutorial lessons. You can simply execute "vim tutor" and then follow the instructions in the lessons. The lessons tell you to modify the file, so DON'T DO THIS ON YOUR ORIGINAL COPY. On Unix you can also use the "vimtutor" program. It will make a scratch copy of the tutor first. I have considered adding more advanced lessons but have not found the time. Please let me know how you like it and send any improvements you make. Bob Ware, Colorado School of Mines, Golden, Co 80401, USA (303) 273-3987 bware@mines.colorado.edu bware@slate.mines.colorado.edu bware@mines.bitnet [This file was modified for Vim by Bram Moolenaar] usr/share/vim/vim80/plugin/README.txt000064400000001650152534153520013220 0ustar00The plugin directory is for standard Vim plugin scripts. All files here ending in .vim will be sourced by Vim when it starts up. Look in the file for hints on how it can be disabled without deleting it. getscriptPlugin.vim get latest version of Vim scripts gzip.vim edit compressed files logiPat.vim logical operators on patterns matchparen.vim highlight paren matching the one under the cursor netrwPlugin.vim edit files over a network and browse (remote) directories rrhelper.vim used for --remote-wait editing spellfile.vim download a spellfile when it's missing tarPlugin.vim edit (compressed) tar files tohtml.vim convert a file with syntax highlighting to HTML vimballPlugin.vim create and unpack .vba files zipPlugin.vim edit zip archives Note: the explorer.vim plugin is no longer here, the netrw.vim plugin has taken over browsing directories (also for remote directories). usr/share/vim/vim80/keymap/README.txt000064400000001673152534336540013222 0ustar00keymap files for Vim One of these files is loaded when the 'keymap' option is set. The name of the file consists of these parts: {language}[-{layout}][_{encoding}].vim {language} Name of the language (e.g., "hebrew", "greek") {layout} Optional: name of the keyboard layout (e.g., "spanish", "russian3"). When omitted the layout of the standard US-english keyboard is assumed. {encoding} Optional: character encoding for which this keymap works. When omitted the "normal" encoding for the language is assumed. Use the value the 'encoding' option: lower case only, use '-' instead of '_'. Each file starts with a header, naming the maintainer and the date when it was last changed. If you find a problem in a keymap file, check if you have the most recent version. If necessary, report a problem to the maintainer. The format of the keymap lines below "loadkeymap" is explained in the Vim help files, see ":help keymap-file-format". usr/share/vim/vim80/lang/README.txt000064400000003640152534336570012654 0ustar00Language files for Vim Translated menus ---------------- The contents of each menu file is a sequence of lines with "menutrans" commands. Read one of the existing files to get an idea of how this works. More information in the on-line help: :help multilang-menus :help :menutrans :help 'langmenu' :help :language The "$VIMRUNTIME/menu.vim" file will search for a menu translation file. This depends on the value of the "v:lang" variable. "menu_" . v:lang . ".vim" When the 'menutrans' option is set, its value will be used instead of v:lang. The file name is always lower case. It is the full name as the ":language" command shows (the LC_MESSAGES value). For example, to use the Big5 (Taiwan) menus on MS-Windows the $LANG will be Chinese(Taiwan)_Taiwan.950 and use the menu translation file: $VIMRUNTIME/lang/menu_chinese(taiwan)_taiwan.950.vim On Unix you should set $LANG, depending on your shell: csh/tcsh: setenv LANG "zh_TW.Big5" sh/bash/ksh: export LANG="zh_TW.Big5" and the menu translation file is: $VIMRUNTIME/lang/menu_zh_tw.big5.vim The menu translation file should set the "did_menu_trans" variable so that Vim will not load another file. AUTOMATIC CONVERSION When Vim was compiled with multi-byte support, conversion between latin1 and UTF-8 will always be possible. Other conversions depend on the iconv library, which is not always available. For UTF-8 menu files which only use latin1 characters, you can rely on Vim doing the conversion. Let the UTF-8 menu file source the latin1 menu file, and put "scriptencoding latin1" in that one. Other conversions may not always be available (e.g., between iso-8859-# and MS-Windows codepages), thus the converted menu file must be available. Translated messages ------------------- This requires doing "make install" in the "src" directory. It will compile the portable files "src/po/*.po" into binary ".mo" files and place them in the right directory. usr/share/vim/vim80/syntax/README.txt000064400000002573152534476260013266 0ustar00This directory contains Vim scripts for syntax highlighting. These scripts are not for a language, but are used by Vim itself: syntax.vim Used for the ":syntax on" command. Uses synload.vim. manual.vim Used for the ":syntax manual" command. Uses synload.vim. synload.vim Contains autocommands to load a language file when a certain file name (extension) is used. And sets up the Syntax menu for the GUI. nosyntax.vim Used for the ":syntax off" command. Undo the loading of synload.vim. A few special files: 2html.vim Converts any highlighted file to HTML (GUI only). colortest.vim Check for color names and actual color on screen. hitest.vim View the current highlight settings. whitespace.vim View Tabs and Spaces. If you want to write a syntax file, read the docs at ":help usr_44.txt". If you make a new syntax file which would be useful for others, please send it to Bram@vim.org. Include instructions for detecting the file type for this language, by file name extension or by checking a few lines in the file. And please write the file in a portable way, see ":help 44.12". If you have remarks about an existing file, send them to the maintainer of that file. Only when you get no response send a message to Bram@vim.org. If you are the maintainer of a syntax file and make improvements, send the new version to Bram@vim.org. For further info see ":help syntax" in Vim. var/softaculous/drupal89/README.txt000064400000000433152534514000013050 0ustar00This directory contains configuration to be imported into your Drupal site. To make this configuration active, visit admin/config/development/configuration/sync. For information about deploying configuration between servers, see https://www.drupal.org/documentation/administer/configusr/share/vim/vim80/autoload/README.txt000064400000001440152534547520013536 0ustar00The autoload directory is for standard Vim autoload scripts. These are functions used by plugins and for general use. They will be loaded automatically when the function is invoked. See ":help autoload". gzip.vim for editing compressed files netrw*.vim browsing (remote) directories and editing remote files tar.vim browsing tar files zip.vim browsing zip files paste.vim common code for mswin.vim, menu.vim and macmap.vim spellfile.vim downloading of a missing spell file Omni completion files: ccomplete.vim C csscomplete.vim HTML / CSS htmlcomplete.vim HTML javascriptcomplete.vim Javascript phpcomplete.vim PHP pythoncomplete.vim Python python3complete.vim Python rubycomplete.vim Ruby syntaxcomplete.vim from syntax highlighting xmlcomplete.vim XML (uses files in the xml directory) var/softaculous/drupalcms/README.txt000064400000000426152534650460013407 0ustar00This directory contains configuration to be imported into your Drupal site. To make this configuration active, visit admin/config/development/configuration. For information about deploying configuration between servers, see https://www.drupal.org/documentation/administer/configusr/lib64/python2.7/idlelib/README.txt000064400000017322152536362260013166 0ustar00README.txt: an index to idlelib files and the IDLE menu. IDLE is Python's Integrated Development and Learning Environment. The user documentation is part of the Library Reference and is available in IDLE by selecting Help => IDLE Help. This README documents idlelib for IDLE developers and curious users. IDLELIB FILES lists files alphabetically by category, with a short description of each. IDLE MENU show the menu tree, annotated with the module or module object that implements the corresponding function. This file is descriptive, not prescriptive, and may have errors and omissions and lag behind changes in idlelib. IDLELIB FILES Implemetation files not in IDLE MENU are marked (nim). Deprecated files and objects are listed separately as the end. Startup ------- __init__.py # import, does nothing __main__.py # -m, starts IDLE idle.bat idle.py idle.pyw Implementation -------------- AutoComplete.py # Complete attribute names or filenames. AutoCompleteWindow.py # Display completions. AutoExpand.py # Expand word with previous word in file. Bindings.py # Define most of IDLE menu. CallTipWindow.py # Display calltip. CallTips.py # Create calltip text. ClassBrowser.py # Create module browser window. CodeContext.py # Show compound statement headers otherwise not visible. ColorDelegator.py # Colorize text (nim). Debugger.py # Debug code run from editor; show window. Delegator.py # Define base class for delegators (nim). EditorWindow.py # Define most of editor and utility functions. FileList.py # Open files and manage list of open windows (nim). FormatParagraph.py# Re-wrap multiline strings and comments. GrepDialog.py # Find all occurrences of pattern in multiple files. HyperParser.py # Parse code around a given index. IOBinding.py # Open, read, and write files IdleHistory.py # Get previous or next user input in shell (nim) MultiCall.py # Wrap tk widget to allow multiple calls per event (nim). MultiStatusBar.py # Define status bar for windows (nim). ObjectBrowser.py # Define class used in StackViewer (nim). OutputWindow.py # Create window for grep output. ParenMatch.py # Match fenceposts: (), [], and {}. PathBrowser.py # Create path browser window. Percolator.py # Manage delegator stack (nim). PyParse.py # Give information on code indentation PyShell.py # Start IDLE, manage shell, complete editor window RemoteDebugger.py # Debug code run in remote process. RemoteObjectBrowser.py # Communicate objects between processes with rpc (nim). ReplaceDialog.py # Search and replace pattern in text. RstripExtension.py# Strip trailing whitespace ScriptBinding.py # Check and run user code. ScrolledList.py # Define ScrolledList widget for IDLE (nim). SearchDialog.py # Search for pattern in text. SearchDialogBase.py # Define base for search, replace, and grep dialogs. SearchEngine.py # Define engine for all 3 search dialogs. StackViewer.py # View stack after exception. TreeWidget.py # Define tree widger, used in browsers (nim). UndoDelegator.py # Manage undo stack. WidgetRedirector.py # Intercept widget subcommands (for percolator) (nim). WindowList.py # Manage window list and define listed top level. ZoomHeight.py # Zoom window to full height of screen. aboutDialog.py # Display About IDLE dialog. configDialog.py # Display user configuration dialogs. configHandler.py # Load, fetch, and save configuration (nim). configHelpSourceEdit.py # Specify help source. configSectionNameDialog.py # Spefify user config section name dynOptionMenuWidget.py # define mutable OptionMenu widget (nim). help.py # Display IDLE's html doc. keybindingDialog.py # Change keybindings. macosxSupport.py # Help IDLE run on Macs (nim). rpc.py # Commuicate between idle and user processes (nim). run.py # Manage user code execution subprocess. tabbedpages.py # Define tabbed pages widget (nim). textView.py # Define read-only text widget (nim). Configuration ------------- config-extensions.def # Defaults for extensions config-highlight.def # Defaults for colorizing config-keys.def # Defaults for key bindings config-main.def # Defai;ts fpr font and geneal Text ---- CREDITS.txt # not maintained, displayed by About IDLE HISTORY.txt # NEWS up to July 2001 NEWS.txt # commits, displayed by About IDLE README.txt # this file, displeyed by About IDLE TODO.txt # needs review extend.txt # about writing extensions help.html # copy of idle.html in docs, displayed by IDLE Help Subdirectories -------------- Icons # small image files idle_test # files for human test and automated unit tests Unused and Deprecated files and objects (nim) --------------------------------------------- EditorWindow.py: Helpdialog and helpDialog ToolTip.py: unused. help.txt idlever.py IDLE MENUS Top level items and most submenu items are defined in Bindings. Extenstions add submenu items when active. The names given are found, quoted, in one of these modules, paired with a '<>'. Each pseudoevent is bound to an event handler. Some event handlers call another function that does the actual work. The annotations below are intended to at least give the module where the actual work is done. File # IOBindig except as noted New File Open... # IOBinding.open Open Module Recent Files Class Browser # Class Browser Path Browser # Path Browser --- Save # IDBinding.save Save As... # IOBinding.save_as Save Copy As... # IOBindling.save_a_copy --- Print Window # IOBinding.print_window --- Close Exit Edit Undo # undoDelegator Redo # undoDelegator --- Cut Copy Paste Select All --- # Next 5 items use SearchEngine; dialogs use SearchDialogBase Find # Search Dialog Find Again Find Selection Find in Files... # GrepDialog Replace... # ReplaceDialog Go to Line Show Completions # AutoComplete extension and AutoCompleteWidow (&HP) Expand Word # AutoExpand extension Show call tip # Calltips extension and CalltipWindow (& Hyperparser) Show surrounding parens # ParenMatch (& Hyperparser) Shell # PyShell View Last Restart # PyShell.PyShell.view_restart_mark Restart Shell # PyShell.PyShell.restart_shell Interrupt Execution # pyshell.PyShell.cancel_callback Debug (Shell only) Go to File/Line Debugger # Debugger, RemoteDebugger, PyShell.toggle_debuger Stack Viewer # StackViewer, PyShell.open_stack_viewer Auto-open Stack Viewer # StackViewer Format (Editor only) Indent Region Dedent Region Comment Out Region Uncomment Region Tabify Region Untabify Region Toggle Tabs New Indent Width Format Paragraph # FormatParagraph extension --- Strip tailing whitespace # RstripExtension extension Run (Editor only) Python Shell # PyShell --- Check Module # ScriptBinding Run Module # ScriptBinding Options Configure IDLE # configDialog (tabs in the dialog) Font tab # onfig-main.def Highlight tab # configSectionNameDialog, config-highlight.def Keys tab # keybindingDialog, configSectionNameDialog, onfig-keus.def General tab # configHelpSourceEdit, config-main.def Configure Extensions # configDialog Xyz tab # xyz.py, config-extensions.def --- Code Context (editor only) # CodeContext extension Window Zoomheight # ZoomHeight extension --- # WindowList Help About IDLE # aboutDialog --- IDLE Help # help Python Doc Turtle Demo --- (right click) Defined in EditorWindow, PyShell, Output Cut Copy Paste --- Go to file/line (shell and output only) Set Breakpoint (editor only) Clear Breakpoint (editor only) Defined in Debugger Go to source line Show stack frame usr/share/doc/tix/README.txt000064400000001733152536640010011534 0ustar00 Tix 8.4.3 for Tcl 8.4+ Tix Documentation Master Index This file is the master index of all the documentation included in this package. For additional information about Tix, please visit the Tix Home Page at http://tix.sourceforge.net/ or join the mailing lists there. * ABOUT.html A brief description of Tix. * docs/Release.html Release notes on this version of Tix. * unix/README.txt Compiling and installing Tix under Unix. * win/README.txt Compiling and installing Tix under Windows. * docs/html/TixUser/TixUser.html Tix Users's Guide. * Programming with Tix: + Tix Programmer's Guide. + Using Tix Stand Alone Modules (SAM). * docs/FAQ.html The Tix Frequent Asked Questions. * ChangeLog.txt Changes made to Tix since the previous release. * man/index.html Programmer's Reference Manual. Versions of Tcl/Tk prior to 8.4 are no longer supported. usr/lib64/tcl8.6/Tix8.4.3/README.txt000064400000001733152537026220012160 0ustar00 Tix 8.4.3 for Tcl 8.4+ Tix Documentation Master Index This file is the master index of all the documentation included in this package. For additional information about Tix, please visit the Tix Home Page at http://tix.sourceforge.net/ or join the mailing lists there. * ABOUT.html A brief description of Tix. * docs/Release.html Release notes on this version of Tix. * unix/README.txt Compiling and installing Tix under Unix. * win/README.txt Compiling and installing Tix under Windows. * docs/html/TixUser/TixUser.html Tix Users's Guide. * Programming with Tix: + Tix Programmer's Guide. + Using Tix Stand Alone Modules (SAM). * docs/FAQ.html The Tix Frequent Asked Questions. * ChangeLog.txt Changes made to Tix since the previous release. * man/index.html Programmer's Reference Manual. Versions of Tcl/Tk prior to 8.4 are no longer supported.