Home
last modified time | relevance | path

Searched refs:csv (Results 101 – 113 of 113) sorted by path

12345

/plugin/patchpanel/
H A Dsyntax.php192 $csv = "Port,Label,Comment\n";
213 …$csv .= '"' . $item['port'] . '","' . $item['label'] . '","' . trim($item['comment'], '"\' ') . '"…
315 $renderer->doc .= "<pre style='display:none;' id='$csv_id'>$csv</pre>\n";
/plugin/rack/
H A Dsyntax.php160 $csv = "Model,Name,Rack,U,Height,Comment\n";
183 …$csv .= "\"$item[model]\",\"$item[name]\",$opt[name],$item[u_bottom],$item[u_size],\"$item[comment…
229 $renderer->doc .= "<pre style='display:none;' id='$csv_id'>$csv</pre>\n";
/plugin/sql2wiki/
H A DCsv.php33 * Converts two-dimensional array into csv string that can be written to dokuwiki page content.
39 $csv = "";
42 $csv .= $csv_row . "\n";
44 return $csv;
48 * Converts csv string to two-dimensional array.
50 * @param string $csv
54 static function csv2arr($csv) { argument
55 $lines = array_values(array_filter(preg_split('/\r\n|\r|\n/', $csv)));
/plugin/sqlraw/
H A Dplugin.info.txt6 desc Execute SQL query on remote csv data or table data and display the result as a table
/plugin/table2csv/
H A DREADME.md4 Create a csv file from the first table on a dokuwiki page
18 The file page should display the plugin Tools selection to Export To csv in the top and bottom righ…
19 Select this to export the first table into a csv file.
21 It currently defaults to table.csv in the dokuwiki base install folder.
H A Dplugin.info.txt6 desc exports a table to a csv file
/plugin/tuxquote/
H A Dquotes.txt3548 …scratch twice a day but will nevertheless become industry standard. <BR> -- csugq@csv.warwick.ac.uk
/plugin/userimportextended/
H A Dadmin.php194 while($csv = fgets($fd)){
195 if (!utf8_check($csv)) {
196 $csv = utf8_encode($csv);
198 $raw = str_getcsv($csv);
208 … $this->_import_failures[$line] = array('error' => $error, 'user' => $raw, 'orig' => $csv);
221 … $this->_import_failures[$line] = array('error' => $error, 'user' => $raw, 'orig' => $csv);
/plugin/wrap/
H A Dhelper.php49 $pattern = function ($csv) {
51 ['.','.*','','|'], $csv) .')$/';
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/asp/
H A Dconfig.asp100 ConfigAllowedExtensions.Add "File", "7z|aiff|asf|avi|bmp|csv|doc|fla|flv|gif|gz|gzip|jpeg|jpg|mid|m…
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/cfm/
H A Dconfig.cfm103 …Config.AllowedExtensions["File"] = "7z,aiff,asf,avi,bmp,csv,doc,fla,flv,gif,gz,gzip,jpeg,jpg,mid…
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/lasso/
H A Dconfig.lasso53 …'File' = array('7z','aiff','asf','avi','bmp','csv','doc','fla','flv','gif','gz','gzip','jpeg','jpg…
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs25925 case 'csv': return write_string_type(sheet_to_csv(wb.Sheets[wb.SheetNames[idx]], o), o, "\ufeff");

12345