__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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:

[email protected]: ~ $
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="_CodingConventions" script:language="StarBasic" script:moduleType="normal">REM =======================================================================================================================
REM ===			The ScriptForge library and its associated libraries are part of the LibreOffice project.				===
REM ===					Full documentation is available on https://help.libreoffice.org/								===
REM =======================================================================================================================

&apos;&apos;&apos;
&apos;	Conventions used in the coding of the *ScriptForge* library
&apos;	-----------------------------------------------------------
&apos;&apos;&apos;
&apos;	Library and Modules
&apos;	===================
&apos;		*	Module names are all prefixed with &quot;SF_&quot;.
&apos;			*	The *Option Explicit* statement is mandatory in every module.
&apos;			*	The *Option Private Module* statement is recommended in internal modules.
&apos;		*	A standard header presenting the module/class is mandatory
&apos;		*	An end of file (eof) comment line is mandatory
&apos;		*	Every module lists the constants that are related to it and documented as return values, arguments, etc.
&apos;			They are defined as *Global Const*.
&apos;			The scope of global constants being limited to one single library, their invocation from user scripts shall be qualified.
&apos;		*	The Basic reserved words are *Proper-Cased*.
&apos;&apos;&apos;
&apos;	Functions and Subroutines
&apos;	=========================
&apos;		*	LibreOffice ignores the Private/Public attribute in Functions or Subs declarations.
&apos;			Nevertheless the attribute must be present.
&apos;			Rules to recognize their scope are:
&apos;			*	Public + name starts with a letter  
&apos;					The Sub/Function belongs to the official ScriptForge API.
&apos;					As such it may be called from any user script.
&apos;			*	Public + name starts with an underscore &quot;_&quot;
&apos;					The Sub/Function may be called only from within the ScriptForge library.
&apos;					As such it MUST NOT be called from another library or from a user script,
&apos;					as there is no guarantee about the arguments, the semantic or even the existence of that piece of code in a later release.
&apos;			*	Private - The Sub/Function name must start with an underscore &quot;_&quot;.  
&apos;					The Sub/Function may be called only from the module in which it is located.
&apos;		*	Functions and Subroutines belonging to the API (= &quot;standard&quot; functions/Subs) are defined in their module in alphabetical order.
&apos;			For class modules, all the properties precede the methods which precede the events.
&apos;		*	Functions and Subroutines not belonging to the API are defined in their module in alphabetical order below the standard ones.
&apos;		*	The return value of a function is always declared explicitly.
&apos;		*	The parameters are always declared explicitly even if they&apos;re variants.
&apos;		*	The Function and Sub declarations start at the 1st column of the line.
&apos;		*	The End Function/Sub statement is followed by a comment reminding the name of the containing library.module and of the function or sub.
&apos;			If the Function/Sub is declared for the first time or modified in a release &gt; initial public release, the actual release number is mentioned as well.
&apos;&apos;&apos;
&apos;	Variable declarations
&apos;	=====================
&apos;		*	Variable names use only alpha characters, the underscore and digits (no accented characters).
&apos;			Exceptionally, names of private variables may be embraced with `[` and `]` if `Option Compatible` is present.
&apos;		*	The Global, Dim and Const statements always start in the first column of the line.
&apos;		*	The type (*Dim ... As ...*, *Function ... As ...*) is always declared explicitly, even if the type is Variant.
&apos;		*	Variables are *Proper-Cased*. They are always preceded by a lower-case letter indicating their type.
&apos;			With next exception: variables i, j, k, l, m and n must be declared as integers or longs.
&apos;				&gt; b Boolean
&apos;				&gt; d Date
&apos;				&gt; v Variant
&apos;				&gt; o Object
&apos;				&gt; i Integer
&apos;				&gt; l Long
&apos;				&gt; s String
&apos;			Example:  
&apos;				Dim sValue As String
&apos;		*	Parameters are preceded by the letter *p* which itself precedes the single *typing letter*.
&apos;			In official methods, to match their published documentation, the *p* and the *typing letter* may be omitted. Like in:  
&apos;				Private Function MyFunction(psValue As String) As Variant
&apos;				Public Function MyOfficialFunction(Value As String) As Variant
&apos;		*	Global variables in the ScriptForge library are ALL preceded by an underscore &quot;_&quot; as NONE of them should be invoked from outside the library.
&apos;		*	Constant values with a local scope are *Proper-Cased* and preceded by the letters *cst*.
&apos;		*	Constants with a global scope are *UPPER-CASED*.  
&apos;			Example:
&apos;				Global Const ACONSTANT = &quot;This is a global constant&quot;  
&apos;				Function MyFunction(pocControl As Object, piValue) As Variant  
&apos;				Dim iValue As Integer  
&apos;				Const cstMyConstant = 3 
&apos;&apos;&apos;
&apos;	Indentation
&apos;	===========
&apos;		Code shall be indented with TAB characters.
&apos;&apos;&apos;
&apos;	Goto/Gosub
&apos;	==========
&apos;		The *GoSub* … *Return* statement is forbidden.  
&apos;		The *GoTo* statement is forbidden.  
&apos;		However *GoTo* is highly recommended for *error* and *exception* handling.
&apos;&apos;&apos;
&apos;	Comments (english only)
&apos;	========
&apos;		*	Every public routine should be documented with a python-like &quot;docstring&quot;:
&apos;			1.	Role of Sub/Function
&apos;			2.	List of arguments, mandatory/optional, role
&apos;			3.	Returned value(s) type and meaning
&apos;			4.	Examples when useful
&apos;			5.	Eventual specific exception codes
&apos;		*	The &quot;docstring&quot; comments shall be marked by a triple (single) quote character at the beginning of the line
&apos;		*	Meaningful variables shall be declared one per line. Comment on same line.
&apos;		*	Comments about a code block should be left indented.
&apos;			If it concerns only the next line, no indent required (may also be put at the end of the line).
&apos;&apos;&apos;
</script:module>

Filemanager

Name Type Size Permission Actions
po Folder 0755
SF_Array.xba File 122.33 KB 0644
SF_Dictionary.xba File 37 KB 0644
SF_Exception.xba File 69.74 KB 0644
SF_FileSystem.xba File 105.45 KB 0644
SF_L10N.xba File 36.03 KB 0644
SF_Platform.xba File 22.96 KB 0644
SF_PythonHelper.xba File 45.19 KB 0644
SF_Region.xba File 41.7 KB 0644
SF_Root.xba File 58.62 KB 0644
SF_Services.xba File 28.62 KB 0644
SF_Session.xba File 46.98 KB 0644
SF_String.xba File 118.21 KB 0644
SF_TextStream.xba File 29.52 KB 0644
SF_Timer.xba File 17.05 KB 0644
SF_UI.xba File 67.61 KB 0644
SF_Utils.xba File 49.67 KB 0644
_CodingConventions.xba File 6.43 KB 0644
_ModuleModel.xba File 9.02 KB 0644
__License.xba File 1.69 KB 0644
dialog.xlb File 401 B 0644
dlgConsole.xdl File 1.4 KB 0644
dlgProgress.xdl File 1.07 KB 0644
script.xlb File 1.16 KB 0644
Filemanager