ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
All Data Structures Namespaces Files Functions Variables Modules Pages
HFile_ueconv.php File Reference

Go to the source code of this file.

Functions

 HFile_print_php_file ($tofile=1)
 
 get_categories ()
 
 dump_linkscripts ($cats)
 
 dump_colours ($cats)
 
 dump_var ($variable, $name)
 
 dump_array ($array, $name)
 
 dump_hash ($hash, $name)
 

Variables

 $BEAUT_PATH = realpath(".")."/Services/COPage/syntax_highlight/php"
 
print $file
 

Function Documentation

◆ dump_array()

dump_array (   $array,
  $name 
)

Definition at line 98 of file HFile_ueconv.php.

Referenced by dump_colours(), and HFile_print_php_file().

99 {
100  $first = 1;
101  print $name." = array(";
102  foreach($array as $a)
103  {
104  if (!$first) print ", "; else $first = 0;
105  print "\"".addslashes($a)."\"";
106  }
107  print ");\n";
108 }
+ Here is the caller graph for this function:

◆ dump_colours()

dump_colours (   $cats)

Definition at line 81 of file HFile_ueconv.php.

References dump_array().

Referenced by HFile_print_php_file().

82 {
83  global $colours;
84 
85  $usedcols = array();
86  foreach($cats as $c)
87  {
88  array_push($usedcols, $colours[$c-1]);
89  }
90  dump_array($usedcols, "\$colours ");
91 }
dump_array($array, $name)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ dump_hash()

dump_hash (   $hash,
  $name 
)

Definition at line 110 of file HFile_ueconv.php.

References convert().

Referenced by dump_linkscripts(), and HFile_print_php_file().

111 {
112  $first = 1;
113  print $name." = array(";
114  foreach(array_keys($hash) as $k)
115  {
116  if (!$first) print ", "; else $first = 0;
117  print "\n \"".addslashes($k)."\"";
118  print " => \"".addslashes($hash[$k])."\"";
119  }
120  print ");\n";
121 }
122 
123 ?>
124 <html><title>Configuration Converter</title><body>
125 <h1>Important Note</h1>
126 <p>This script should <b>not</b> be run on a public server. It is possible to access files other than syntax highlight files (by entering /etc/passwd, for example). Although this should not display anything useful, it is still possible that important data may be extractable. As such, only run this script <b>locally</b> (it should not be necessary to run it on a public server, anyway).</p>
127 <form action="HFileconv.php">Please specify a syntax file to convert:<br />
128 <input type="text" width="64" size="64" name="file" value="<?php print $file; ?>" /><br />
129 Save to:<br />
130 <input type="text" width="64" size="64" name="fileout" value="<?php print stripslashes($fileout); ?>" /><br />
131 <input type="submit" /></form><hr />
132 <pre>
133 <?php
134 if (isset($fileout) && $fileout == "") unset($fileout);
135 if (isset($file) && file_exists($file))
136 {
137  HFile_parse_file($file);
138  ob_start();
139  HFile_print_php_file(isset($fileout));
140  $out = ob_get_contents();
141  if (isset($fileout))
142  {
143  $fd = fopen($fileout, "w");
144  fputs($fd, $out);
145  fclose($fd);
146  }
147  ob_end_flush();
148 }
print $file
HFile_print_php_file($tofile=1)
convert($file)
Definition: HFile_conv.php:137
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ dump_linkscripts()

dump_linkscripts (   $cats)

Definition at line 61 of file HFile_ueconv.php.

References dump_hash().

Referenced by HFile_print_php_file().

62 {
63  print "
64 // Each category can specify a PHP function that returns an altered
65 // version of the keyword.
66  # This link is then placed in a <a href=\"...\">foo</a>; structure around keyword 'foo' - which is
67  \n\n";
68 
69  $linkhash = array();
70 
71  foreach($cats as $c)
72  {
73  $linkhash{$c} = "donothing";
74  }
75 
76  dump_hash($linkhash, "\$linkscripts ");
77  print "\n# DoNothing link function\n\n";
78  print "function donothing(\$keywordin)\n{\n return \$keywordin;\n}\n";
79 }
dump_hash($hash, $name)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ dump_var()

dump_var (   $variable,
  $name 
)

Definition at line 93 of file HFile_ueconv.php.

Referenced by HFile_print_php_file().

94 {
95  print $name." = \"".addslashes($variable)."\";\n";
96 }
+ Here is the caller graph for this function:

◆ get_categories()

get_categories ( )

Definition at line 48 of file HFile_ueconv.php.

Referenced by HFile_print_php_file().

49 {
50  global $keywords;
51  $usedcats = array();
52 
53  foreach(array_keys($keywords) as $k)
54  {
55  $cat = $keywords[$k];
56  if (!in_array($cat, $usedcats)) array_push($usedcats, $cat);
57  }
58  return $usedcats;
59 }
+ Here is the caller graph for this function:

◆ HFile_print_php_file()

HFile_print_php_file (   $tofile = 1)

Definition at line 10 of file HFile_ueconv.php.

References dump_array(), dump_colours(), dump_hash(), dump_linkscripts(), dump_var(), and get_categories().

11 {
12  global $indent, $unindent, $stringchars, $config, $keywords, $delimiters, $lang_name;
13  global $linecommenton, $blockcommenton, $blockcommentoff;
14  global $perl, $nocase, $notrim;
15  if ($tofile) print "<?php\n"; else print "&lt;?\n";
16  print "######################################\n";
17  print "# Beautifier Highlighting Configuration File \n";
18  print "# $lang_name\n";
19  print "######################################\n";
20  print "# Flags\n\n";
21  dump_var($nocase, "\$nocase ");
22  dump_var($notrim, "\$notrim ");
23  dump_var($perl, "\$perl ");
24  print "\n# Colours\n\n";
25  $used_categories = get_categories();
26  dump_colours($used_categories);
27  dump_var("blue", "\$quotecolour ");
28  dump_var("green", "\$blockcommentcolour");
29  dump_var("green", "\$linecommentcolour ");
30  print "\n# Indent Strings\n\n";
31  dump_array($indent, "\$indent ");
32  dump_array($unindent, "\$unindent ");
33  print "\n# String characters and delimiters\n\n";
34  dump_array($stringchars, "\$stringchars ");
35  dump_array($delimiters, "\$delimiters ");
36  dump_var ($escchar, "\$escchar ");
37  print "\n# Comment settings\n\n";
38  dump_var ($linecommenton, "\$linecommenton ");
39  dump_var ($blockcommenton, "\$blockcommenton ");
40  dump_var ($blockcommentoff, "\$blockcommentoff ");
41  print "\n# Keywords (keyword mapping to colour number)\n\n";
42  dump_hash ($keywords, "\$keywords ");
43  print "\n# Special extensions\n";
44  dump_linkscripts($used_categories);
45  if ($tofile) print "\n?>"; else print "\n?&gt;";
46 }
dump_colours($cats)
dump_array($array, $name)
dump_hash($hash, $name)
dump_var($variable, $name)
get_categories()
dump_linkscripts($cats)
+ Here is the call graph for this function:

Variable Documentation

◆ $BEAUT_PATH

$BEAUT_PATH = realpath(".")."/Services/COPage/syntax_highlight/php"

Definition at line 2 of file HFile_ueconv.php.

◆ $file

print $file

Definition at line 128 of file HFile_ueconv.php.

Referenced by ilUserPasswordEncoderFactory\__construct(), ilForum\__deletePostFiles(), ilObjBibliographic\__force_rmdir(), ilFileDataImportMail\__readFiles(), ilFileDataImportGroup\__readFiles(), ilStyleMigration\_addMissingStyleClassesToAllStyles(), ilObjStyleSheet\_addMissingStyleClassesToAllStyles(), ilUploadFiles\_copyUploadFile(), System\_dirToStruct(), Log\_format(), ilExport\_generateIndexFile(), ilStyleDefinition\_getAllTemplates(), Log\_getBacktraceVars(), ilExport\_getExportFiles(), ilObjMediaObjectGUI\_getMediaInfoHTML(), ilObjUser\_getPersonalPicturePath(), ilUploadFiles\_getUploadFiles(), Magic\_is_ascii(), ilFileDataMail\_lookupDiskUsageOfUser(), ilObjFileAccess\_lookupFileSize(), ilObjFileAccess\_lookupFileSizeFromFilesystem(), System\_multipleToStruct(), ilBookmarkImportExport\_parseFile(), TCPDF_IMAGES\_parsejpeg(), TCPDF_IMAGES\_parsepng(), TCPDF\_putfonts(), TCPDF\_putimages(), ilObjMediaObject\_saveTempFileAsMediaObject(), HTMLPurifier_DefinitionCache_Serializer\_write(), HTMLPurifier_DefinitionCache_Serializer\add(), ilSoapFileAdministration\addFile(), TCPDF\AddFont(), ilTemplate\addILIASFooter(), TCPDF_FONTS\addTTFfont(), ilFileDataMail\adoptAttachments(), ilPCFileList\afterPageUpdate(), ilObjFileBasedLMGUI\afterSave(), ilTestPlayerAbstractGUI\archiveParticipantSubmission(), ilObjMediaObjectGUI\assignFullscreenObject(), ilObjMediaObjectGUI\assignStandardObject(), HTMLPurifier_Bootstrap\autoload(), Slim\autoload(), ilDBGenerator\buildDBGenerationScript(), HTMLPurifier_ConfigSchema_InterchangeBuilder\buildDir(), ilPortfolioHTMLExport\buildExportFile(), ilTestExport\buildExportResultFile(), HTMLPurifier_ConfigSchema_InterchangeBuilder\buildFile(), SeqTreeBuilder\buildNodeSeqTree(), ilVirusScannerClamAV\buildScanCommand(), ilMailFolderGUI\cancelDeleteMails(), ilObjForumGUI\cancelPostObject(), System\cat(), ilFileDataShop\checkFilesExist(), ilFileDataForum\checkFilesExist(), ilFileDataMail\checkFilesExist(), ilPropertyFormGUI\checkInput(), ilSessionFile\cloneFiles(), ilObjSession\cloneObject(), ilContainer\cloneObject(), ilTermsOfServiceAgreementByLanguageProvider\collectData(), ilMemberExportGUI\confirmDeleteExportFile(), ilObjUserFolderGUI\confirmDeleteExportFileObject(), ilObjSessionGUI\confirmDeleteFilesObject(), ilObjCourseGUI\confirmDeleteInfoFilesObject(), ilObjExerciseGUI\confirmRemoveTeamMemberObject(), convert(), Core\Core(), ilTestArchiver\countFilesInDirectory(), HTMLPurifier_LanguageFactory\create(), ilPCInteractiveImageGUI\create(), ilObjUserFolder\createCSVExport(), ilDidacticTemplateSettingsGUI\createImportForm(), ilUtil\CreateIsoFromFolder(), ilObjMediaPoolGUI\createMediaFromUploadDir(), ilFileUtils\createObjects(), ilObjExternalToolsSettingsGUI\createSocialBookmarkObject(), ilObjUserFolder\createXMLExport(), ilUpdateUtilsMailMigration\delDir(), ilUpdateUtils\delDir(), ilUtil\delDir(), ilFileDataForum\delete(), ilExportGUI\delete(), ilObjSession\delete(), ilRestFileStorage\deleteDeprecated(), ilMemberExportGUI\deleteExportFile(), ilSCORM2004ScoGUI\deleteExportFile(), ilObjSCORM2004LearningModuleGUI\deleteExportFile(), ilObjSurveyQuestionPoolGUI\deleteExportFileObject(), ilObjSurveyGUI\deleteExportFileObject(), ilObjUserFolderGUI\deleteExportFileObject(), ilObjGroup\deleteExportFiles(), ilDataCollectionRecord\deleteFile(), ilFileSystemGUI\deleteFile(), ilObjMediaObjectGUI\deleteFileObject(), ilObjSessionGUI\deleteFilesObject(), assImagemapQuestion\deleteImage(), ilObjCourseGUI\deleteInfoFilesObject(), ilObjTestVerificationGUI\deliver(), ilObjExerciseVerificationGUI\deliver(), ilObjCourseVerificationGUI\deliver(), ilObjSCORMVerificationGUI\deliver(), ilMemberExportGUI\deliverData(), ilMailFolderGUI\deliverFile(), ilObjExerciseGUI\deliverFileObject(), ilBookingObjectGUI\deliverInfo(), ilNewsItem\deliverMobFile(), ilBookingObjectGUI\deliverPostFile(), ilTermsOfServiceFileSystemDocument\determine(), ilObjFile\determineFileSize(), ilObjMediaCastGUI\determinePlaytimeObject(), ilSoapUtils\distributeMails(), ilCalendarCategoryGUI\doImportFile(), HTMLPurifier_URIScheme_data\doValidate(), ilExportGUI\download(), ilObjPortfolioGUI\downloadExcAssFile(), ilObjBlogGUI\downloadExcAssFile(), ilMemberExportGUI\downloadExportFile(), ilSCORM2004ScoGUI\downloadExportFile(), ilGlossaryPresentationGUI\downloadExportFile(), ilObjGroup\downloadExportFile(), ilLMPresentationGUI\downloadExportFile(), ilObjSurveyQuestionPoolGUI\downloadExportFileObject(), ilObjSurveyGUI\downloadExportFileObject(), ilObjUserFolderGUI\downloadExportFileObject(), ilObjExerciseGUI\downloadFeedbackFileObject(), ilLMPageObjectGUI\downloadFile(), ilSCORM2004ScoGUI\downloadFile(), ilGlossaryPresentationGUI\downloadFile(), ilFileSystemGUI\downloadFile(), ilPageObjectGUI\downloadFile(), ilLMPresentationGUI\downloadFile(), ilObjQuestionPoolGUI\downloadFileObject(), ilObjExerciseGUI\downloadFileObject(), ilObjTestGUI\downloadFileObject(), ilObjContentObjectGUI\downloadPDFFile(), ilObjExerciseGUI\downloadPeerReviewObject(), ilSCORM2004ScoGUI\downloadResource(), ilObjCourseGUI\editInfoObject(), ilObjSessionGUI\editObject(), getid3_lib\EmbeddedLookup(), phpCAS\error(), ilObjFileBasedLMGUI\executeCommand(), ilMailAttachmentGUI\executeCommand(), ilObjGlossary\exportHTML(), ilObjContentObject\exportHTML(), ilObjGlossary\exportHTMLGlossaryTerms(), ilObjContentObject\exportHTMLGlossaryTerms(), ilCOPageHTMLExport\exportHTMLMOB(), ilObjGlossary\exportHTMLMOB(), ilObjContentObject\exportHTMLMOB(), ilObjBlogGUI\exportHTMLPages(), ilCOPageHTMLExport\exportPageElements(), ilWikiHTMLExport\exportPageHTML(), ilObjContentObject\exportPageHTML(), ilObjStyleSheetGUI\exportStyleObject(), ilObjStyleSheet\exportXML(), ilFileSystemGUI\extCommand(), MDB2\fileExists(), ilTemplate\fillJavascriptFile(), ilTemplate\fillJavaScriptFiles(), ilMediaCastTableGUI\fillRow(), ilExcDeliveredFilesTableGUI\fillRow(), ilExAssignmentListTextTableGUI\fillRow(), ilObjAICCCourseInterchangeFiles\findFiles(), assQuestion\fixUnavailableSkinImageSources(), Slim\generateErrorMarkup(), ilObjMediaObject\generatePreviewPic(), assSingleChoice\generateThumbForFile(), assMultipleChoice\generateThumbForFile(), assKprimChoice\generateThumbForFile(), assOrderingQuestion\generateThumbForFile(), assMatchingQuestion\generateThumbForFile(), HTMLPurifier_DefinitionCache_Serializer\get(), ilObjAICCCourseInterchangeFiles\getAllFiles(), ilFileDataMail\getAttachmentPathByMD5Filename(), ilModule\getAvailableCoreModules(), ilService\getAvailableCoreServices(), ilPlugin\getAvailableLangFiles(), ilObjContentObject\getAvailableLayouts(), Securimage\getBackgroundFromDirectory(), ilCtrl\getClassForClasspath(), ilObjFileDAV\getContentOutputStream(), ilObjFileDAV\getContentOutputStreamLength(), ilObjFileDAV\getContentStream(), ilObjMediaCastGUI\getDuration(), ilObjPortfolioGUI\getExerciseInfo(), ilObjBlogGUI\getExerciseInfo(), ilObjTest\getExportDirectory(), ilObjUserFolder\getExportFiles(), ilObjSurveyQuestionPool\getExportFiles(), ilSCORM2004Asset\getExportFiles(), ilObjSCORM2004LearningModule\getExportFiles(), ilObjContentObject\getExportFiles(), ilObjSurvey\getExportFiles(), ilExAssignment\getFeedbackFilePath(), ilFSStorageExercise\getFeedbackFiles(), ilObjFile\getFile(), ilFileDataForum\getFileDataByMD5Filename(), ilVerificationObject\getFilePath(), ilFSStorageExercise\getFiles(), ilSoapFileAdministration\getFileXML(), ilPlayerUtil\getFlashVideoPlayerFilename(), TCPDF\getFontsList(), ilFileDataForum\getForumPath(), ilObjMediaObjectGUI\getFullscreenSizeObject(), getID3\getHashdata(), TCPDF_STATIC\getHyphenPatternsFromTEX(), ilPreview\getImages(), ilMediaImageUtil\getImageSize(), ilObjQuestionPoolGUI\getImportQuestionsForm(), ilMediaItem\getMapWorkCopyName(), ilPersonalSkillsGUI\getMaterialInfo(), ilFSStorageGroup\getMemberExportFiles(), ilFileDataCourse\getMemberExportFiles(), ilFSStorageCourse\getMemberExportFiles(), ilObjContentObject\getOfflineFiles(), ilExAssignmentGUI\getOverviewBody(), HTMLPurifier_Bootstrap\getPath(), getPhpSourceCodePositionInfo(), ilPlugin\getPluginObject(), ilPluginSlot\getPluginsInformation(), Securimage\getRandomNoiseFile(), ilObjForumGUI\getReplyEditForm(), ilObjMediaObjectGUI\getStandardSizeObject(), ilMailAttachmentGUI\getToolbarForm(), ilFileDataMail\getUnsentFiles(), ilObjFile\getUploadFile(), ilCOPageExporter\getXmlExportHeadDependencies(), ilFileExporter\getXmlRepresentation(), ilExerciseXMLWriter\handleAssignmentFiles(), ilLMPresentationGUI\handleCodeParagraph(), ilObjSessionGUI\handleFileUpload(), ilSCORMPackageParser\handlerBeginTag(), ilContObjParser\handlerEndTag(), getid3_lib\hash_data(), HTTP_WebDAV_Server\http_PROPFIND(), ilFileDataForum\ilClone(), ilObjectFeedWriter\ilObjectFeedWriter(), ilTemplate\ilTemplate(), TCPDF\Image(), TCPDF\ImageEps(), TCPDF\ImagePngAlpha(), TCPDF\ImageSVG(), ilObjStyleSheet\import(), ilCertificate\importCertificate(), ilDataCollectionRecordListGUI\importExcel(), ilObjGlossaryGUI\importFileObject(), ilObjSurveyQuestionPoolGUI\importFileObject(), ilObjContentObject\importFromZipFile(), ilDataCollectionRecordListGUI\importRecords(), ilSCORM2004ScoGUI\importSave(), ilDidacticTemplateSettingsGUI\importTemplate(), ilObjCourseGUI\infoScreen(), ilObjMediaCastGUI\initAddCastItemForm(), ilObjBlogGUI\initEditCustomForm(), ilObjPortfolioBaseGUI\initEditCustomForm(), ilBookingObjectGUI\initForm(), ilAdvancedMDSettingsGUI\initImportForm(), ilObjCourseGUI\initInfoEditor(), ilObjFileGUI\initPropertiesForm(), ilPCSourceCodeGUI\initPropertyForm(), ilObjPollGUI\initQuestionForm(), ilADTFactory\initTypeClass(), ilCloudPluginUploadGUI\initUploadForm(), ilObjSAHSLearningModuleGUI\initUploadForm(), assQuestion\isFileAvailable(), IT_Error\IT_Error(), ilTestExportGUI\listExportFiles(), ilFileSystemGUI\listFiles(), ilDataLoader\loadSqlTemplate(), ilObjSurvey\locateImportFiles(), getid3_lib\md5_file(), ilObjGroupGUI\membersGalleryObject(), ilObjiLincCourseGUI\membersGalleryObject(), ilObjCourseGUI\membersGalleryObject(), assQuestion\moveUploadedMediaFile(), ilObjSCORMLearningModuleGUI\newModuleVersion(), ilObjSCORMLearningModuleGUI\newModuleVersionUpload(), ilCSVReader\open(), ilDBGenerator\openFile(), ilExAssignmentListTextTableGUI\parse(), ilDataCollectionDatatype\parseExportValue(), HTMLPurifier_StringHashParser\parseFile(), HTMLPurifier_StringHashParser\parseMultiFile(), ilDataCollectionDatatype\parseValue(), php4DOMDocument\php4DOMDocument(), ilFileUtils\processZipFile(), ilObjGlossaryGUI\publishExportFile(), ilObjContentObjectGUI\publishExportFile(), ilObjSCORM2004LearningModuleGUI\publishExportFile(), Auth_RADIUS\putConfigfile(), ilAppEventHandler\raise(), ilUtil\rangeDownload(), ilUtil\rCopy(), ilCtrlStructureReader\read(), OLE\read(), ilSetup\readDump(), ilPropertyFormGUI\rebuildUploadedFiles(), ilFileUtils\recursive_dirscan(), HTMLPurifier_DefinitionCache_Serializer\remove(), ilObjMediaObject\removeAdditionalFile(), ilObjUser\removeUserPicture(), ilObjUserGUI\removeUserPictureObject(), ilFileSystemGUI\renameFileForm(), ilPortfolioPageGUI\renderVerification(), HTMLPurifier_DefinitionCache_Serializer\replace(), ilObjTermsOfServiceGUI\resetAgreementByLanguageFilter(), ilObjMediaObjectGUI\resizeImagesObject(), System\rm(), TCPDF\rollbackTransaction(), ilUtil\rRenameSuffix(), ilBookingObjectGUI\save(), ilObjMediaCastGUI\saveCastItemObject(), ilObjMediaObjectGUI\savePropertiesObject(), ilObjSCORMValidator\searchDir(), ilObjTest\sendAdvancedNotification(), ilObjExercise\sendAssignment(), ilObjFile\sendFile(), ilObjSessionGUI\sendFileObject(), ilObjCourseGUI\sendFileObject(), ilObjUser\sendPersonalDataFile(), HTMLPurifier_DefinitionCache_Serializer\set(), Auth_RADIUS\setConfigfile(), ilObjMediaObjectGUI\setObjectPerCreationForm(), ilObjForumGUI\setTopicCreateDefaultValues(), ilObjForumGUI\setTreeStateAsynchObject(), HTMLPurifier_EntityLookup\setup(), getid3_lib\sha1_file(), ilDataCollectionRecordListGUI\showImportExcel(), ilObjComponentSettingsGUI\showPlugin(), SOAP_Attachment\SOAP_Attachment(), Spreadsheet_Excel_Reader\Spreadsheet_Excel_Reader(), ilForumXMLWriter\start(), ilOrgUnitSimpleImportGUI\startImport(), ilOrgUnitSimpleUserImportGUI\startImport(), ilArrayTableDataParser\startParsing(), ilCtrlStructureReader\store(), ilObjFile\storeUnzipedFile(), ilFileDataMail\storeUploadedFile(), ilObjExerciseGUI\submitBlog(), ilObjExerciseGUI\submitPortfolio(), assQuestionGUI\suggestedsolution(), ilGlobalSuite\suite(), PHPlot\tile_img(), ilFileDataForum\unlinkFiles(), ilFileDataMail\unlinkFiles(), ilFileDataForum\unlinkFilesByMD5Filenames(), ilUtil\unzip(), ilSetup\unzip(), ilFileSystemGUI\unzipFile(), ilBookingObjectGUI\update(), ilPCInteractiveImageGUI\update(), ilObjMediaCastGUI\updateCastItemObject(), ilSoapFileAdministration\updateFile(), ilObjMediaCastGUI\updateMediaItem(), ilObjExternalToolsSettingsGUI\updateSocialBookmarkObject(), ilCalendarCategoryGUI\uploadAppointments(), ilCloudPluginUploadGUI\uploadDirectory(), ilChatroomUploadFileTask\uploadFile(), ilObjMediaObjectGUI\uploadFileObject(), ilObjSAHSLearningModuleGUI\uploadObject(), ilObjLanguageExtGUI\uploadObject(), ilObjQuestionPoolGUI\uploadQplObject(), ilObjTestGUI\uploadTstObject(), ilObjSCORMValidator\validateXML(), vd(), HTML_Template_ITX\warning(), System\which(), ilDataLoader\writeCategoryCsv(), ilDataLoader\writeCourseCsv(), ilPortfolioHTMLExport\writeExportFile(), ilObjBlogGUI\writeExportFile(), MDB2_Driver_Datatype_oci8\writeLOBToFile(), MDB2_Driver_Datatype_Common\writeLOBToFile(), ilDataLoader\writeUserCsv(), ilTestResultsToXML\xmlDumpFile(), ilXmlWriter\xmlDumpFile(), and ilUtil\zip().