Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Import Macro Repair

...

Excerpt

The CSV macro can import, format and display comma-separated values (CSV) data from anywhere, by:

  • Reading the CSV data from any of these sources:
    • Within your Confluence page.
    • From a file residing on the Confluence server (Server only).
    • From a global or space template (Server only).
    • From a page attachment.
    • From an external URL.
  • Allowing customizable delimiters, quote characters, and character encoding.
  • Supporting inclusion of Wiki Markup macros within the CSV data.
  • Combining with the Chart macro to produce powerful data visualization.
  • Leveraging the same table styling capabilities as the Table Plus macro.

...

Table plus
highlightColor#ffffec
rowStylesbackground:#f0f0f0;color:#222;font-size:14px;border-bottom:black 2px solid;border-top:black 2px solid;,
stylebackground-color:white;
autoNumbertrue


Parameter
Default
Macro Browser Label
Description
outputhtmlOutput format

Determines how the output is formatted. Use wiki to have the data in the table rendered by the wiki renderer.

scriptmacro bodyLocation of CSV data

If a location of data is specified, the included data will follow the body data.

  • ^attachment - Data is read from an attachment to the current page.
  • page^attachment - Data is read from an attachment to the page name provided.
  • space:page^attachment - Data is read from an attachment to the page name provided in the space indicated.

Additional options are available for Server only.

  • #filename - Data is read from the file located in confluence the Confluence home directory/script/filename. Subdirectories can be specified.
  • global page template name - Data is read from a global page template. (info) Special note: How to deal with templates on Confluence 4.3 and later.
  • space:page template name - Data is read from a space template.
delimiter,Delimiter that separates columns
  • , (comma) - The default column separator.
  • whitespace - Blanks, tabs, and other white space are used to separate columns.
  • tab - A single tab character is used to separate columns.
  • blanks - Blank or blanks only.
  • pipe - '|'
  • other single character delimiter - may be within double quotes with some restrictions. Examples: ";" and "=" work. "|" does not.
quotedoubleQuote characterThe character used to represent quoted data. Quoted data may contain delimiters or new lines. Quote character data must be doubled inside a quoted string.
  • double - Double quote character: "
  • single - Single quote character: '
url
URL to CSV data Specifies the URL of a csv CSV file. If specified, the included data will follow the body and script data. Use of this parameter may be restricted for security reasons. See your administrator for details.
user
URL user User name for URL access via basic authentication.
password
URL user password User password for URL access via basic authentication. 
timeout
URL connection timeoutAllows setting the wait time for URL access for slower connections. Time in milliseconds.
encoding
File encodingFile encoding for an external file if different from the system default handling. Since 4.1.0. Example: UTF-8More ...
columns
Columns to showComma A comma-separated list of column names or numbers in any order. Defaults to all columns in the existing order. Columns are enumerated starting at 1.
ignoreTrailingBlankRowstrueIgnore trailing blank rowsA row is considered blank if all the columns selected by the column parameter are blank. Use false to show these blank rows.
showWikifalse

Show non-formatted version of  generated wiki

Use true to show a non-formatted version of the wiki table following the formatted table. This is used to help resolve formating formatting issues. It can also be used to convert CSV to Confluence markup by cut and paste.
escapefalse

Escape special wiki characters

When wiki output is requested (output=wiki), some special characters (like '|', '[', ']', '{', '}') in data may cause undesirable formatting of the table. Use true to allow these special characters to be escaped so that it will not affect the formatting. The default is false so that data that has wiki markup will be handled correctly.
macrosfalse

Render wiki markup macros in body

Set to true to render wiki markup macros found in the body prior to processing as CSV. This is useful to run macros from SCRP, CCLI, SQL, or similar that can produce CSV output.
disableAntiXssfalseStop encoding of html HTML charactersServer only. Set this parameter to true for csv CSV tables that use output=html and have html HTML content. Html content like <a href=http://google.com>google</a> will only display as a link if this parameter is enabled. Your administrator must grant specific users or groups to use this capability using Macro Security for Confluence.


...

  • Chart Macro - the CSV Macro can be used to create data for a chart
  • Beanshell Macro - can be used to generate csv CSV macro and data as output from Java code (use output=wiki)
  • Groovy Macro - can be used to generate csv generate CSV macro and data as output from Groovy code (use output=wiki)
  • Jython Macro - can be used to generate csv generate CSV macro and data as output from Jython code (use output=wiki)

...