All public logs

Jump to navigation Jump to search

Combined display of all available logs of Multi Theft Auto: Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 02:53, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/translator/copy (Created page with "__NOTOC__ This function copies a file from a source location to a file at the destination. The contents of the source file are copied, so that source and destination have the same content. Since the transactions happen through kernel-calls, this function is faster than performing the copying yourself through Lua strings. ==Syntax== <syntaxhighlight lang="lua"> bool translator:copy ( string srcPath, string dstPath ) </syntaxhighlight> ==Arguments== *'''srcPath:''' a pat...")
  • 02:52, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/translator/delete (Created page with "__NOTOC__ This function deletes an entry on the translator filesystem. If the path points at a directory, the whole content of it is recursively deleted. A typical reason when deletion may fail is when the file is opened in another OS handle. Proper clean-up of file classes can prevent this issue. ==Syntax== <syntaxhighlight lang="lua"> bool translator:delete ( string path ) </syntaxhighlight> ==Arguments== *'''path:''' a path to a filesystem object that should be wipe...")
  • 02:51, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/translator/chdir (Created page with "__NOTOC__ This function changes the current directory pointer of the translator. All operations on the FileSystem translator are executed relative to the current directory. The translator, if possible, is asked to prevent deletion of the current directory. ==Syntax== <syntaxhighlight lang="lua"> bool translator:chdir ( string dirPath ) </syntaxhighlight> ==Arguments== *'''dirPath:''' a path to a directory that should be made current directory ==Returns== This functio...")
  • 02:50, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/translator/createDir (Created page with "__NOTOC__ This function creates a directory inside of a translator directory hierarchy. ==Syntax== <syntaxhighlight lang="lua"> bool translator:createDir ( string dirPath ) </syntaxhighlight> ==Arguments== *'''dirPath:''' a path to a directory that should be created ==Returns== This function returns '''true''' if the given path is a valid directory path relative to the translator, '''false''' otherwise. ==Example== <section name="Client" class="client" show="true"> T...")
  • 02:49, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/translator/exists (Created page with "__NOTOC__ This function checks whether a specified file exists on a MTA:Eir FileSystem translator. ==Syntax== <syntaxhighlight lang="lua"> bool translator:exists ( string filePath ) </syntaxhighlight> ==Arguments== *'''filePath:''' the path to the file that should exist ==Returns== This function returns '''true''' if the given path points to a valid file instance on a FileSystem, '''false''' otherwise. ==Example== <section name="Client" class="client" show="true"> T...")
  • 02:47, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/translator/open (Created page with "__NOTOC__ This function opens a link to a file instance on a given MTA:Eir FileSystem translator. Using a file link, you can write and/or receive data from filesystems. ==Syntax== <syntaxhighlight lang="lua"> file, string translator:open ( string filePath, string fileMode ) </syntaxhighlight> ==Arguments== *'''filePath:''' the path to the file that should be opened *'''fileMode:''' an ANSI file mode descriptor (can be 'w', 'r' or 'a', with 'b' and/or '+' appended) ==R...")
  • 02:42, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/createFilesystemInterface (Created page with "__NOTOC__ This function creates a FileSystem access point. An access point is your personal instance of the Eir FileSystem. The table returned by this function is the module namespace. There are no limits as to how many access points can be live at a time. '''When using the fileSystem module, it is highly suggested to restrict access to this function to priviledged resources!''' ==Syntax== <syntaxhighlight lang="lua"> table createFilesystemInterface () </syntaxhighligh...")
  • 00:03, 19 January 2022 Danilo talk contribs created page Modules/FileSystem/namespace/functions (Created page with " ==FileSystem Namespace Functions== *createTranslator *createRAMDisk *createMemoryFile *createFileIterative *copyFile *copyStream *copyStreamCount *Modules/FileSystem/pathToFilename|pat...")
  • 23:59, 18 January 2022 Danilo talk contribs created page Modules/FileSystem/getDoBufferAllRaw (Created page with "__NOTOC__ This function returns the value of the buffering-policy for newly created raw-file handles. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.getDoBufferAllRaw() </syntaxhighlight> ==Returns== This function returns true if the buffering-policy is enabled, false otherwise. ==Example== <syntaxhighlight lang="lua"> -- TODO </syntaxhighlight> {{:Modules/FileSystem/namespace/functions}}")
  • 23:58, 18 January 2022 Danilo talk contribs created page Modules/FileSystem/setDoBufferAllRaw (Created page with "__NOTOC__ This function changes the raw-file buffering policy of newly created file streams. If the buffering-policy is enabled then each newly created file stream is wrapped inside of a custom FileSystem buffering handle. File stream modifications that are close to each other are batched together for optimizational purposes. ==Syntax== <syntaxhighlight lang="lua"> void fsnamespace.setDoBufferAllRaw( bool enabled ) </syntaxhighlight> ==Arguments== *'''enabled''': new v...")
  • 23:57, 18 January 2022 Danilo talk contribs created page Modules/FileSystem/type (Created page with "__NOTOC__ This function returns the type of the given Eir FileSystem object. ==Syntax== <syntaxhighlight lang="lua"> string fsnamespace.type( userdata obj ) </syntaxhighlight> ==Arguments== *'''obj''': the Eir FileSystem object to retrieve the type from ==Returns== This function returns the type string of the queried object, false if not successful. For destroyed objects the return value is always false. ===Possible Return Values=== *file *file-translator ==Example=...")
  • 23:54, 18 January 2022 Danilo talk contribs created page Modules/FileSystem/topointer (Created page with "__NOTOC__ This function returns the light-userdata representation of the object. This is the direct pointer into the Eir FileSystem module handle. ==Syntax== <syntaxhighlight lang="lua"> light-userdata fsnamespace.topointer( userdata obj ) </syntaxhighlight> ==Arguments== *'''obj''': the userdata of the Eir FileSystem Lua environment ==Returns== This function returns the light-userdata value of the internal object, false if not successful. ==Example== <syntaxhighligh...")
  • 23:53, 18 January 2022 Danilo talk contribs created page Modules/FileSystem/streamCompare (Created page with "__NOTOC__ This function compares the bytes of two streams for equality. The comparison starts from the current file seek and finishes at the end of the respective file stream. If the read count of either stream does not match the other, then this function fails. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.streamCompare( file left, file right ) </syntaxhighlight> ==Arguments== *'''left''': first file for equality comparison *'''right''': second file for equ...")
  • 23:51, 18 January 2022 Danilo talk contribs created page Modules/FileSystem/pathToFilename (Created page with "__NOTOC__ This function returns the filename and the direction portions of a filepath, seperated into two strings. ==Syntax== <syntaxhighlight lang="lua"> string, string fsnamespace.pathToFilename( string path, bool includeExtention ) </syntaxhighlight> ==Arguments== *'''path''': the file path to extract from *'''includeExtention''': if true then the filename extention is included in the result ==Returns== This function returns the filename and directory of the provid...")
  • 23:50, 18 January 2022 Danilo talk contribs created page Modules/FileSystem/copyStreamCount (Created page with "__NOTOC__ This function copies data starting from a source file stream into a specified destination stream. The copy of data is performed starting from the source file seek. The copy is only performed up to a specified count of bytes. Read operations on the file streams advance the seek pointers. Thus the seek pointers stay changed after the function has completed. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.copyStreamCount( file src, file dst, int count )...")
  • 23:49, 18 January 2022 Danilo talk contribs created page Modules/FileSystem/copyStream (Created page with "__NOTOC__ This function copies data starting from a source file stream into a specified destination stream. The copy of data is performed starting from the source file seek. Read operations on the file streams advance the seek pointers. Thus the seek pointers stay changed after the function has completed. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.copyStream( file src, file dst ) </syntaxhighlight> ==Arguments== *'''src''': source of the copy operation,...")
  • 23:48, 18 January 2022 Danilo talk contribs created page Modules/FileSystem/copyFile (Created page with "__NOTOC__ This function copies files between two translators. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.copyFile( translator srcTrans, string srcPath, translator dstTrans, string dstPath ) </syntaxhighlight> ==Arguments== *'''srcTrans:''' source translator for the file of origin *'''srcPath:''' path into the source translator *'''dstTrans:''' target translator *'''dstPath:''' path into the target translator ==Returns== This function returns true if the...")
  • 23:46, 18 January 2022 Danilo talk contribs created page Modules/FileSystem/createFileIterative (Created page with "__NOTOC__ This function attempts to create a file with numeric iteration for filename collision avoidance. If a specific filename is taken then an the algorithm will try to create the next file with increased numeric insert. ==Syntax== <syntaxhighlight lang="lua"> file fsnamespace.createFileIterative( translator target, string prefix, string suffix, int maxIterations ) </syntaxhighlight> ==Arguments== *'''target''': the file translator based on which to create the file...")
  • 23:44, 18 January 2022 Danilo talk contribs created page Modules/FileSystem/createMemoryFile (Created page with "__NOTOC__ This function creates a single file that is resident entirely in system memory. ==Syntax== <syntaxhighlight lang="lua"> file fsnamespace.createMemoryFile( ) </syntaxhighlight> ==Returns== This function returns a new file object if successful, false otherwise. ==Example== <syntaxhighlight lang="lua"> -- TODO </syntaxhighlight> {{:Modules/FileSystem/namespace/functions}} {{:Modules/FileSystem/file/functions}}")
  • 23:40, 18 January 2022 Danilo talk contribs created page Modules/FileSystem/createTranslator (Created page with "__NOTOC__ This function creates a FileSystem translator. A FileSystem translator represents a directory on a real or virtual filesystem. Through translators you get access to the files that reside in their directory trees. The translator returned by this function usually represents an OS filesystem directory. ==Syntax== <syntaxhighlight lang="lua"> translator fsnamespace.createTranslator( string rootPath ) </syntaxhighlight> ==Arguments== *'''rootPath:''' the absolute...")
  • 23:32, 18 January 2022 Danilo talk contribs created page Modules/FileSystem/createRAMDisk (Created page with "__NOTOC__ This function creates a FileSystem translator which is located entirely inside of MTA application memory, also known as RAM. ==Syntax== <syntaxhighlight lang="lua"> translator fsnamespace.createRAMDisk( bool caseSensitive ) </syntaxhighlight> ==Arguments== *'''caseSensitive:''' if true then all namespaces are compared case sensitively in path operations, otherwise strict character equality comparison is performed ==Returns== This function returns a new '''Fi...")
  • 17:50, 18 January 2022 Kezoto talk contribs created page InsertValueBetweenIndexesInTable (Created page with "{{Useful Function}} __NOTOC__ This function places the index among other indexes in the table. <br> '''Important : ONLY WORKS FOR TABLES WITH NUMERIC INDEXES!''' <br> ==Syntax== <syntaxhighlight lang="lua">table insertValueBetweenIndexesInTable( table theTable, int index, value )</syntaxhighlight> ===Required Arguments=== * '''theTable''': The table you want the index to be placed on. * '''index''': The index where you want to put the value. * '''value''': The value yo...")
  • 23:17, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/translator/getPathProcessingMode (Created page with "__NOTOC__ This function gets the path-processing-mode for the given file translator. ==Syntax== <syntaxhighlight lang="lua"> string translator.getPathProcessingMode () </syntaxhighlight> ==Returns== This function returns a string describing the current path-processing-mode of the translator. ===Possible Return Values=== *distinguished *ambivalent_file ==Example== <syntaxhighlight lang="lua"> -- TODO </syntaxhighlight> {{:MTA:Eir/FileSystem/translator/functions}}")
  • 23:16, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/translator/setPathProcessingMode (Created page with "__NOTOC__ This function sets the path-processing-mode for the file translator. The path-processing-mode describes how paths are handled in detail during file-path consuming function calls. ==Syntax== <syntaxhighlight lang="lua"> void translator.setPathProcessingMode( string mode ) </syntaxhighlight> ==Arguments== *'''mode:''' value for the translator path-processing-mode (either '''distinguished''' or '''ambivalent_file''') ==Returns== This function returns nil. ==Ex...")
  • 23:14, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/translator/getOutbreakEnabled (Created page with "__NOTOC__ This function gets the outbreak-policy of a file translator. If outbreak is enabled then file path requests outside of the translator root are allowed. Otherwise the user can only access files that are accessible from inside the translator root directory. ==Syntax== <syntaxhighlight lang="lua"> bool translator.setOutbreakEnabled () </syntaxhighlight> ==Arguments== *'''enabled:''' value for the translator outbreak-policy ==Returns== This function returns true...")
  • 23:14, 16 January 2022 Myonlake talk contribs created page MediaWiki:Gadget-HotCat.js/local defaults (Created page with " if (typeof (window.HotCat) != 'undefined') { window.HotCat.disable = (function (default_disable) { return function () { return mw.config.get( 'wgArticleId' ) == 0 || default_disable(); }; })(window.HotCat.disable); }")
  • 23:14, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/translator/setOutbreakEnabled (Created page with "__NOTOC__ This function sets the outbreak-policy of a file translator. If outbreak is enabled then file path requests outside of the translator root are allowed. Otherwise the user can only access files that are accessible from inside the translator root directory. ==Syntax== <syntaxhighlight lang="lua"> void translator.setOutbreakEnabled ( bool enabled ) </syntaxhighlight> ==Arguments== *'''enabled:''' value for the translator outbreak-policy ==Returns== This functio...")
  • 23:11, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/getDoBufferAllRaw (Created page with "__NOTOC__ This function returns the value of the buffering-policy for newly created raw-file handles. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.getDoBufferAllRaw() </syntaxhighlight> ==Returns== This function returns true if the buffering-policy is enabled, false otherwise. ==Example== <syntaxhighlight lang="lua"> -- TODO </syntaxhighlight> {{:MTA:Eir/FileSystem/namespace/functions}}")
  • 23:10, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/setDoBufferAllRaw (Created page with "__NOTOC__ This function changes the raw-file buffering policy of newly created file streams. If the buffering-policy is enabled then each newly created file stream is wrapped inside of a custom FileSystem buffering handle. File stream modifications that are close to each other are batched together for optimizational purposes. ==Syntax== <syntaxhighlight lang="lua"> void fsnamespace.setDoBufferAllRaw( bool enabled ) </syntaxhighlight> ==Arguments== *'''enabled''': new v...")
  • 23:06, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/type (Created page with "__NOTOC__ This function returns the type of the given Eir FileSystem object. ==Syntax== <syntaxhighlight lang="lua"> string fsnamespace.type( userdata obj ) </syntaxhighlight> ==Arguments== *'''obj''': the Eir FileSystem object to retrieve the type from ==Returns== This function returns the type string of the queried object. ===Possible Return Values=== *file *file-translator ==Example== <syntaxhighlight lang="lua"> -- TODO </syntaxhighlight> {{:MTA:Eir/FileSystem/n...")
  • 23:04, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/topointer (Created page with "__NOTOC__ This function returns the light-userdata representation of the object. This is the direct pointer into the Eir FileSystem module handle. ==Syntax== <syntaxhighlight lang="lua"> light-userdata fsnamespace.topointer( object obj ) </syntaxhighlight> ==Arguments== *'''obj''': the userdata of the Eir FileSystem Lua environment ==Returns== This function returns the light-userdata value of the internal object, false if not successful. ==Example== <syntaxhighlight...")
  • 23:01, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/streamCompare (Created page with "__NOTOC__ This function compares the bytes of two streams for equality. The comparison starts from the current file seek and finishes at the end of the respective file stream. If the read count of either stream does not match the other, then this function fails. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.streamCompare( file left, file right ) </syntaxhighlight> ==Arguments== *'''left''': first file for equality comparison *'''right''': second file for equ...")
  • 22:58, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/pathToFilename (Created page with "__NOTOC__ This function returns the filename and the direction portions of a filepath, seperated into two strings. ==Syntax== <syntaxhighlight lang="lua"> string, string fsnamespace.pathToFilename( string path, bool includeExtention ) </syntaxhighlight> ==Arguments== *'''path''': the file path to extract from *'''includeExtention''': if true then the filename extention is included in the result ==Returns== This function returns the filename and directory of the provid...")
  • 22:47, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/copyStreamCount (Created page with "__NOTOC__ This function copies data starting from a source file stream into a specified destination stream. The copy of data is performed starting from the source file seek. The copy is only performed up to a specified count of bytes. Read operations on the file streams advance the seek pointers. Thus the seek pointers stay changed after the function has completed. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.copyStreamCount( file src, file dst, int count )...")
  • 22:45, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/copyStream (Created page with "__NOTOC__ This function copies data starting from a source file stream into a specified destination stream. The copy of data is performed starting from the source file seek. Read operations on the file streams advance the seek pointers. Thus the seek pointers stay changed after the function has completed. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.copyStream( file src, file dst ) </syntaxhighlight> ==Arguments== *'''src''': source of the copy operation,...")
  • 22:41, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/copyFile (Created page with "__NOTOC__ This function copies files between two translators. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.copyFile( translator srcTrans, string srcPath, translator dstTrans, string dstPath ) </syntaxhighlight> ==Arguments== *'''srcTrans:''' source translator for the file of origin *'''srcPath:''' path into the source translator *'''dstTrans:''' target translator *'''dstPath:''' path into the target translator ==Returns== This function returns true if the...")
  • 22:38, 16 January 2022 Myonlake talk contribs imported MediaWiki:Gadget-dark-mode-toggle.js by file upload (1 revision)
  • 22:38, 16 January 2022 Myonlake talk contribs imported MediaWiki:Gadget-dark-mode-toggle by file upload (1 revision)
  • 22:37, 16 January 2022 Myonlake talk contribs imported MediaWiki:Gadget-dark-mode.css by file upload (1 revision)
  • 22:37, 16 January 2022 Myonlake talk contribs imported MediaWiki:Gadget-dark-mode by file upload (1 revision)
  • 22:37, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/createFileIterative (Created page with "__NOTOC__ This function attempts to create a file with numeric iteration for filename collision avoidance. If a specific filename is taken then an the algorithm will try to create the next file with increased numeric insert. ==Syntax== <syntaxhighlight lang="lua"> file fsnamespace.createFileIterative( translator target, string prefix, string suffix, int maxIterations ) </syntaxhighlight> ==Arguments== *'''target''': the file translator based on which to create the file...")
  • 22:34, 16 January 2022 Myonlake talk contribs imported MediaWiki:Gadget-markblocked.js by file upload (1 revision)
  • 22:34, 16 January 2022 Myonlake talk contribs imported MediaWiki:Gadget-markblocked by file upload (1 revision)
  • 22:32, 16 January 2022 Myonlake talk contribs imported MediaWiki:Gadget-purgetab.js by file upload (1 revision)
  • 22:32, 16 January 2022 Myonlake talk contribs imported MediaWiki:Gadget-purgetab by file upload (1 revision)
  • 22:30, 16 January 2022 Quiret talk contribs created page MTA:Eir/FileSystem/createMemoryFile (Created page with "__NOTOC__ This function creates a single file that is resident entirely in system memory. ==Syntax== <syntaxhighlight lang="lua"> file fsnamespace.createMemoryFile( ) </syntaxhighlight> ==Returns== This function returns a new file object if successful, false otherwise. ==Example== <syntaxhighlight lang="lua"> -- TODO </syntaxhighlight> {{:MTA:Eir/FileSystem/namespace/functions}} {{:MTA:Eir/FileSystem/translator/functions}}")
  • 22:29, 16 January 2022 Myonlake talk contribs imported MediaWiki:Gadget-HotCat.js by file upload (1 revision)
  • 22:29, 16 January 2022 Myonlake talk contribs imported MediaWiki:Gadget-HotCat by file upload (1 revision)
  • 22:28, 16 January 2022 Myonlake talk contribs imported MediaWiki:Gadget-DotsSyntaxHighlighter.js by file upload (1 revision)
  • 22:28, 16 January 2022 Myonlake talk contribs imported MediaWiki:Gadget-DotsSyntaxHighlighter by file upload (1 revision)
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)