livebs / syntaxhighlighter

Automatically exported from code.google.com/p/syntaxhighlighter
GNU General Public License v3.0
0 stars 0 forks source link

PowerShell Syntax Highlighting #127

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I'm just trying to contribute my PowerShell Syntax "brush" ... 

/* Powershell 1.0 syntax contributed by Joel Bennett */
dp.sh.Brushes.Powershell = function()
{
    var keywords =  'while until trap switch return ref process param in if
global: function foreach for finally filter end elseif else do default
continue break begin \\? % #script #private #local #global';

   var operators = 'and as band bnot bor bxor casesensitive ccontains ceq
cge cgt cle clike clt cmatch cne cnotcontains cnotlike cnotmatch contains
creplace eq exact f file ge gt icontains ieq ige igt ile ilike ilt imatch
ine inotcontains inotlike inotmatch ireplace is isnot le like lt match ne
not notcontains notlike notmatch or regex replace wildcard';

   var verbs = 'Write Wrap Width Where Whatif Warning Wait Version Verify
Verbose Value UserName URL Update Unlock Unique Uninstall TypeName
TrustLevel Trusted Truncate Trace TimeStamp TimeOut TID Test Temp Tee
Suspend Strict Stop Statistic State Start Split Speed SortBy Sort Size SID
Shortname Set Send Select Scope SaveCred Role Retry Resume Restore Restart
Resolve Resize Repair Rename Remove Regex Recurse Receive Reason ReadOnly
Read Push Property Prompt Privilege Priority PrinterName PrincipalName
PortName Pop Ping Password PassThru ParentID Parameter Owner Overwrite
Output Out Operation Notify NewLine New Name Move Most Modified Minimum
Migrate Merge Measure Maximum MacName LogName Log Lock Location LineCount
Limit KeyLength KeyContainerName KeyAlgorithm Join JobName IpAddress Invoke
Interval InterfaceName Interactive Install Insert Input Initialize
Incremental Include Import Ignore Id Group Get From Format ForEach Force
Follow Filter FileName Fast Export Exclude Exact EventName ErrorLimit
ErrorLevel Erase Encrypt Encoding Enable Elapsed DriveName Drain DomainName
Disconnect Disable DirectoryName Description Descending Delete Default
Debug Data Verbs CSPType CSPName Created Create Count Copy ConvertTo
ConvertFrom Convert Continuous Connect Confirm ComputerName Compress
Compatible Compare Command ClusterName Clear ClassName Checkpoint Char
CertUsage CertSubjectName CertStoreLocation CertSerialNumber
CertRequestFileName CertIssuerName CertFile CaseSensitive Cache BlockCount
Binary Before AttributeName AssemblyName Ascending As ApplicationName
Allocation All After Add ACL Accessed';

    this.regexList = [
        { regex: dp.sh.RegexLib.SingleLinePerlComments,                                    css:
'comment' },    // one line comments
      { regex : new RegExp('@"\\n[\\s\\S]*?\\n"@', 'gm'),                             
css: 'string' },    // double quoted here-strings
      { regex : new RegExp("@'\\n[\\s\\S]*?\\n'@", 'gm'),                         
      css: 'string' },  // single quoted here-strings
        { regex: new RegExp('"(?:\\$\\([^\\)]*\\)|[^"]|`")*[^`]"','g'),                 
                       css: 'string' }, // double quoted strings
        { regex: new RegExp("'[^']*'", 'g'),                                                  css:
'string' }, // single quoted strings
        { regex: new RegExp('(?:'+verbs.replace(/ /g,
'\\b|\\b')+')-[a-zA-Z_][a-zA-Z0-9_]*', 'gmi'),  css: 'cmdlet' },    // cmdlets
        { regex: new RegExp('\\[[A-Z_\\[][A-Z0-9_. ,\\[\\]]*\\]*', 'gi'),         
        css: 'type' },     // .Net [Type]s
        { regex: new RegExp('\\$(?:(?:global|script|private|env):)?[A-Z0-9_]+',
'gi'),  css: 'variable' },// $variables
        { regex: new RegExp(this.GetKeywords(keywords), 'gmi'),                 
       css: 'keyword' },    // keywords
        { regex: new RegExp('-'+this.GetKeywords(operators), 'gmi'),            
        css: 'operator' },  // operators
        { regex: new RegExp('\\s+-[a-zA-Z_][a-zA-Z0-9_]*', 'gmi'),              
        css: 'param' }  // operators
        ];

// These styles pre-exist:  .comment .string .keyword .preprocessor 
    this.CssClass = 'dp-psh';
    this.Style =    '.dp-psh .type { color: #c00; }' +
                       '.dp-psh .variable { color: #8B2E57; }' +
                       '.dp-psh .cmdlet { color: #969; font-style: italic; }' +
                       '.dp-psh .operator { color: #c00; font-weight: bold; }' +
                       '.dp-psh .param { color: #699; }';
}

dp.sh.Brushes.Powershell.prototype  = new dp.sh.Highlighter();
dp.sh.Brushes.Powershell.Aliases    = ['powershell', 'posh', 'psh'];

Original issue reported on code.google.com by jaykul%h...@gtempaccount.com on 15 Dec 2008 at 5:22

Attachments:

GoogleCodeExporter commented 8 years ago
Sorry, that should have gone in as an enhancement ;) I didn't see an option. Ah 
well.

Original comment by jaykul%h...@gtempaccount.com on 15 Dec 2008 at 5:23

GoogleCodeExporter commented 8 years ago
Great, thanks!

Original comment by creme...@web.de on 13 Feb 2009 at 2:46