-- Data model to support XML exchange with thecontent repository of
-- the ArsDigita Community System
-- Copyright (C) 1999-2000 ArsDigita Corporation
-- Author: Karl Goldstein ([email protected])
-- $Id: content-xml.sql,v 1.3 2001/04/28 19:58:39 donb Exp $
-- This is free software distributed under the terms of the GNU Public
-- License. Full text of the license is available from the GNU Project:
-- http://www.fsf.org/copyleft/gpl.html
-- A sequence for uniquely identifying uploaded XML documents until
-- they are inserted into the repository
create sequence cr_xml_doc_seq;
-- create global temporary table cr_xml_docs (
-- doc_id integer primary key,
-- doc CLOB
-- ) on commit delete rows;
create table cr_xml_docs (
doc_id integer primary key,
doc text
);
comment on table cr_xml_docs is '
A temporary table for holding uploaded XML documents for the
duration of a transaction, until they can be inserted into
the content repository.
';
Brush name | Brush aliases | File name |
---|
ActionScript3 | as3, actionscript3 | shBrushAS3.js |
Bash/shell | bash, shell | shBrushBash.js |
ColdFusion | cf, coldfusion | shBrushColdFusion.js |
C# | c-sharp, csharp | shBrushCSharp.js |
C++ | cpp, c | shBrushCpp.js |
CSS | css | shBrushCss.js |
Delphi | delphi, pas, pascal | shBrushDelphi.js |
Diff | diff, patch | shBrushDiff.js |
Erlang | erl, erlang | shBrushErlang.js |
Groovy | groovy | shBrushGroovy.js |
JavaScript | js, jscript, javascript | shBrushJScript.js |
Java | java | shBrushJava.js |
JavaFX | jfx, javafx | shBrushJavaFX.js |
Perl | perl, pl | shBrushPerl.js |
PHP | php | shBrushPhp.js |
Plain Text | plain, text | shBrushPlain.js |
PowerShell | ps, powershell | shBrushPowerShell.js |
Python | py, python | shBrushPython.js |
Ruby | rails, ror, ruby | shBrushRuby.js |
Scala | scala | shBrushScala.js |
SQL | sql | shBrushSql.js |
Visual Basic | vb, vbnet | shBrushVb.js |
XML | xml, xhtml, xslt, html, xhtml | shBrushXml.js |
SyntaxHighlighter was originally created in 2004 and is still maintained by Alex Gorbatchev.
Copyright 2004-2014 Alex Gorbatchev.