5 # this is meant to be a git-less web head to your git repo
8 # sudo gem install camping-omnibus --source http://code.whytheluckystiff.net
10 # author : scott chacon
11 # thanks to dr. nic for his syntax code highlighting deal
13 # /usr/local/lib/ruby/gems/1.8/gems/camping-1.5.180/examples/
18 class Repository < Base; end
20 class CreateGitWeb < V 0.1
22 create_table :gitweb_repositories, :force => true do |t|
23 t.column :name, :string
24 t.column :path, :string
25 t.column :bare, :boolean
31 module GitWeb::Controllers
34 @repos = Repository.find :all
39 class Stylesheet < R '/css/highlight.css'
41 @headers['Content-Type'] = 'text/css'
42 ending = File.read(__FILE__).gsub(/.*__END__/m, '')
43 ending.gsub(/__JS__.*/m, '')
47 class JsHighlight < R '/js/highlight.js'
49 @headers['Content-Type'] = 'text/css'
50 File.read(__FILE__).gsub(/.*__JS__/m, '')
54 class View < R '/view/(\d+)'
56 @repo = Repository.find repo_id
57 @git = Git.bare(@repo.path)
62 class Fetch < R '/git/(\d+)'
64 @repo = Repository.find repo_id
65 @git = Git.bare(@repo.path)
71 @repo = Repository.new
75 if Git.bare(input.repository_path)
76 repo = Repository.create :name => input.repo_name, :path => input.repo_path, :bare => input.repo_bare
84 class Commit < R '/commit/(\d+)/(\w+)'
86 @repo = Repository.find repo_id
87 @git = Git.bare(@repo.path)
88 @commit = @git.gcommit(sha)
93 class Tree < R '/tree/(\d+)/(\w+)'
95 @repo = Repository.find repo_id
96 @git = Git.bare(@repo.path)
97 @tree = @git.gtree(sha)
102 class Blob < R '/blob/(\d+)/(.*?)/(\w+)'
103 def get repo_id, file, sha
104 @repo = Repository.find repo_id
105 @git = Git.bare(@repo.path)
106 @blob = @git.gblob(sha)
112 class BlobRaw < R '/blob/(\d+)/(\w+)'
114 @repo = Repository.find repo_id
115 @git = Git.bare(@repo.path)
116 @blob = @git.gblob(sha)
121 class Archive < R '/archive/(\d+)/(\w+)'
123 @repo = Repository.find repo_id
124 @git = Git.bare(@repo.path)
126 file = @git.gtree(sha).archive
127 @headers['Content-Type'] = 'application/zip'
128 @headers["Content-Disposition"] = "attachment; filename=archive.zip"
133 class Download < R '/download/(\d+)/(.*?)/(\w+)'
134 def get repo_id, file, sha
135 @repo = Repository.find repo_id
136 @git = Git.bare(@repo.path)
137 @headers["Content-Disposition"] = "attachment; filename=#{file}"
138 @git.gblob(sha).contents
142 class Diff < R '/diff/(\d+)/(\w+)/(\w+)'
143 def get repo_id, tree1, tree2
144 @repo = Repository.find repo_id
145 @git = Git.bare(@repo.path)
148 @diff = @git.diff(tree1, tree2)
153 class Patch < R '/patch/(\d+)/(\w+)/(\w+)'
154 def get repo_id, tree1, tree2
155 @repo = Repository.find repo_id
156 @git = Git.bare(@repo.path)
157 @diff = @git.diff(tree1, tree2).patch
168 link :href=>R(Stylesheet), :rel=>'stylesheet', :type=>'text/css'
169 script '', :type => "text/javascript", :language => "JavaScript", :src => R(JsHighlight)
171 style <<-END, :type => 'text/css'
172 body { color: #333; }
173 h1 { background: #cce; padding: 10px; margin: 3px; }
174 h3 { background: #aea; padding: 5px; margin: 3px; }
175 .options { float: right; margin: 10px; }
177 .odd { background: #eee; }
178 .tag { margin: 5px; padding: 1px 3px; border: 1px solid #8a8; background: #afa;}
179 .indent { padding: 0px 15px;}
181 body :onload => "sh_highlightDocument();" do
192 @git.tags.each { |tag| @tags[tag.sha] ||= []; @tags[tag.sha] << tag.name }
194 url = 'http:' + URL(Fetch, @repo.id).to_s
198 tr { td 'owner: '; td @git.config('user.name') }
199 tr { td 'email: '; td @git.config('user.email') }
200 tr { td 'url: '; td { a url, :href => url } }
205 @git.log.each do |log|
207 td log.date.strftime("%Y-%m-%d")
209 td { em log.author.name }
211 span.message log.message[0, 60]
212 @tags[log.sha].each do |t|
215 end if @tags[log.sha]
217 td { a 'commit', :href => R(Commit, @repo, log.sha) }
218 td { a 'commit-diff', :href => R(Diff, @repo, log.sha, log.parent.sha) }
219 td { a 'tree', :href => R(Tree, @repo, log.gtree.sha) }
220 td { a 'archive', :href => R(Archive, @repo, log.gtree.sha) }
226 @git.branches.each do |branch|
227 li { a branch.full, :href => R(Commit, @repo, branch.gcommit.sha) }
231 @git.tags.each do |tag|
232 li { a tag.name, :href => R(Commit, @repo, tag.sha) }
238 a.options 'repo', :href => R(View, @repo)
242 tr { td 'author: '; td @commit.author.name + ' <' + @commit.author.email + '>'}
243 tr { td ''; td { code @commit.author.date } }
244 tr { td 'committer: '; td @commit.committer.name + ' <' + @commit.committer.email + '>'}
245 tr { td ''; td { code @commit.committer.date } }
246 tr { td 'commit sha: '; td { code @commit.sha } }
250 code { a @commit.gtree.sha, :href => R(Tree, @repo, @commit.gtree.sha) }
252 a 'archive', :href => R(Archive, @repo, @commit.gtree.sha)
258 @commit.parents.each do |p|
259 code { a p.sha, :href => R(Commit, @repo, p.sha) }
261 a 'diff', :href => R(DiffTwo, @repo, p.sha, @commit.sha)
263 a 'archive', :href => R(Archive, @repo, p.gtree.sha)
274 a.options 'repo', :href => R(View, @repo)
275 h3 'tree : ' + @tree.sha
276 p { a 'archive tree', :href => R(Archive, @repo, @tree.sha) };
278 @tree.children.each do |file, node|
279 tr :class => cycle('odd','even') do
280 td { code node.sha[0, 8] }
283 if node.type == 'tree'
284 td { a node.type, :href => R(Tree, @repo, node.sha) }
285 td { a 'archive', :href => R(Archive, @repo, node.sha) }
287 td { a node.type, :href => R(Blob, @repo, file, node.sha) }
288 td { a 'raw', :href => R(BlobRaw, @repo, node.sha) }
296 ext = File.extname(@file).gsub('.', '')
299 when 'rb' : classnm = 'sh_ruby'
302 a.options 'repo', :href => R(View, @repo)
303 h3 'blob : ' + @blob.sha
306 a 'download file', :href => R(Download, @repo, @file, @blob.sha)
308 div.indent { pre @blob.contents, :class => classnm }
312 a.options 'repo', :href => R(View, @repo)
315 p { a 'download patch file', :href => R(Patch, @repo, @tree1, @tree2) }
318 a @tree1, :href => R(Tree, @repo, @tree1)
320 a @tree2, :href => R(Tree, @repo, @tree2)
325 div.indent { pre file.patch, :class => 'sh_diff' }
331 (@value == v1) ? @value = v2 : @value = v1
340 form(:method => 'post') do
341 label 'Path', :for => 'repo_path'; br
342 input :name => 'repo_path', :type => 'text', :value => repo.path; br
344 label 'Name', :for => 'repo_name'; br
345 input :name => 'repo_name', :type => 'text', :value => repo.name; br
347 label 'Bare', :for => 'repo_bare'; br
348 input :type => 'checkbox', :name => 'repo_bare', :value => repo.bare; br
350 input :type => 'hidden', :name => 'repo_id', :value => repo.id
351 input :type => 'submit'
356 @repos.each do | repo |
358 a repo.path, :href => R(View, repo.id)
362 a 'add new repo', :href => R(Add)
367 GitWeb::Models.create_schema
372 background-color: white;
378 pre.sh_sourceCode .sh_keyword { color: blue; font-weight: bold; } /* language keywords */
379 pre.sh_sourceCode .sh_type { color: darkgreen; } /* basic types */
380 pre.sh_sourceCode .sh_string { color: red; font-family: monospace; } /* strings and chars */
381 pre.sh_sourceCode .sh_regexp { color: orange; font-family: monospace; } /* regular expressions */
382 pre.sh_sourceCode .sh_specialchar { color: pink; font-family: monospace; } /* e.g., \n, \t, \\ */
383 pre.sh_sourceCode .sh_comment { color: brown; font-style: italic; } /* comments */
384 pre.sh_sourceCode .sh_number { color: purple; } /* literal numbers */
385 pre.sh_sourceCode .sh_preproc { color: darkblue; font-weight: bold; } /* e.g., #include, import */
386 pre.sh_sourceCode .sh_symbol { color: darkred; } /* e.g., <, >, + */
387 pre.sh_sourceCode .sh_function { color: black; font-weight: bold; } /* function calls and declarations */
388 pre.sh_sourceCode .sh_cbracket { color: red; } /* block brackets (e.g., {, }) */
389 pre.sh_sourceCode .sh_todo { font-weight: bold; background-color: cyan; } /* TODO and FIXME */
391 /* for Perl, PHP, Prolog, Python, shell, Tcl */
392 pre.sh_sourceCode .sh_variable { color: darkgreen; }
394 /* line numbers (not yet implemented) */
395 pre.sh_sourceCode .sh_linenum { color: black; font-family: monospace; }
397 /* Internet related */
398 pre.sh_sourceCode .sh_url { color: blue; text-decoration: underline; font-family: monospace; }
400 /* for ChangeLog and Log files */
401 pre.sh_sourceCode .sh_date { color: blue; font-weight: bold; }
402 pre.sh_sourceCode .sh_time, pre.sh_sourceCode .sh_file { color: darkblue; font-weight: bold; }
403 pre.sh_sourceCode .sh_ip, pre.sh_sourceCode .sh_name { color: darkgreen; }
406 pre.sh_sourceCode .sh_italics { color: darkgreen; font-style: italic; }
407 pre.sh_sourceCode .sh_bold { color: darkgreen; font-weight: bold; }
408 pre.sh_sourceCode .sh_underline { color: darkgreen; text-decoration: underline; }
409 pre.sh_sourceCode .sh_fixed { color: green; font-family: monospace; }
410 pre.sh_sourceCode .sh_argument { color: darkgreen; }
411 pre.sh_sourceCode .sh_optionalargument { color: purple; }
412 pre.sh_sourceCode .sh_math { color: orange; }
413 pre.sh_sourceCode .sh_bibtex { color: blue; }
416 pre.sh_sourceCode .sh_oldfile { color: orange; }
417 pre.sh_sourceCode .sh_newfile { color: darkgreen; }
418 pre.sh_sourceCode .sh_difflines { color: blue; }
421 pre.sh_sourceCode .sh_selector { color: purple; }
422 pre.sh_sourceCode .sh_property { color: blue; }
423 pre.sh_sourceCode .sh_value { color: darkgreen; font-style: italic; }
427 /* Copyright (C) 2007 gnombat@users.sourceforge.net */
428 /* License: http://shjs.sourceforge.net/doc/license.html */
430 function sh_highlightString(inputString,language,builder){var patternStack={_stack:[],getLength:function(){return this._stack.length;},getTop:function(){var stack=this._stack;var length=stack.length;if(length===0){return undefined;}
431 return stack[length-1];},push:function(state){this._stack.push(state);},pop:function(){if(this._stack.length===0){throw"pop on empty stack";}
432 this._stack.pop();}};var pos=0;var currentStyle=undefined;var output=function(s,style){var length=s.length;if(length===0){return;}
433 if(!style){var pattern=patternStack.getTop();if(pattern!==undefined&&!('state'in pattern)){style=pattern.style;}}
434 if(currentStyle!==style){if(currentStyle){builder.endElement();}
435 if(style){builder.startElement(style);}}
436 builder.text(s);pos+=length;currentStyle=style;};var endOfLinePattern=/\r\n|\r|\n/g;endOfLinePattern.lastIndex=0;var inputStringLength=inputString.length;while(pos<inputStringLength){var start=pos;var end;var startOfNextLine;var endOfLineMatch=endOfLinePattern.exec(inputString);if(endOfLineMatch===null){end=inputStringLength;startOfNextLine=inputStringLength;}
437 else{end=endOfLineMatch.index;startOfNextLine=endOfLinePattern.lastIndex;}
438 var line=inputString.substring(start,end);var matchCache=null;var matchCacheState=-1;for(;;){var posWithinLine=pos-start;var pattern=patternStack.getTop();var stateIndex=pattern===undefined?0:pattern.next;var state=language[stateIndex];var numPatterns=state.length;if(stateIndex!==matchCacheState){matchCache=[];}
439 var bestMatch=null;var bestMatchIndex=-1;for(var i=0;i<numPatterns;i++){var match;if(stateIndex===matchCacheState&&(matchCache[i]===null||posWithinLine<=matchCache[i].index)){match=matchCache[i];}
440 else{var regex=state[i].regex;regex.lastIndex=posWithinLine;match=regex.exec(line);matchCache[i]=match;}
441 if(match!==null&&(bestMatch===null||match.index<bestMatch.index)){bestMatch=match;bestMatchIndex=i;}}
442 matchCacheState=stateIndex;if(bestMatch===null){output(line.substring(posWithinLine),null);break;}
443 else{if(bestMatch.index>posWithinLine){output(line.substring(posWithinLine,bestMatch.index),null);}
444 pattern=state[bestMatchIndex];var newStyle=pattern.style;var matchedString;if(newStyle instanceof Array){for(var subexpression=0;subexpression<newStyle.length;subexpression++){matchedString=bestMatch[subexpression+1];output(matchedString,newStyle[subexpression]);}}
445 else{matchedString=bestMatch[0];output(matchedString,newStyle);}
446 if('next'in pattern){patternStack.push(pattern);}
447 else{if('exit'in pattern){patternStack.pop();}
448 if('exitall'in pattern){while(patternStack.getLength()>0){patternStack.pop();}}}}}
449 if(currentStyle){builder.endElement();}
450 currentStyle=undefined;if(endOfLineMatch){builder.text(endOfLineMatch[0]);}
451 pos=startOfNextLine;}}
452 function sh_getClasses(element){var result=[];var htmlClass=element.className;if(htmlClass&&htmlClass.length>0){var htmlClasses=htmlClass.split(" ");for(var i=0;i<htmlClasses.length;i++){if(htmlClasses[i].length>0){result.push(htmlClasses[i]);}}}
454 function sh_addClass(element,name){var htmlClasses=sh_getClasses(element);for(var i=0;i<htmlClasses.length;i++){if(name.toLowerCase()===htmlClasses[i].toLowerCase()){return;}}
455 htmlClasses.push(name);element.className=htmlClasses.join(" ");}
456 function sh_getText(element){if(element.nodeType===3||element.nodeType===4){return element.data;}
457 else if(element.childNodes.length===1){return sh_getText(element.firstChild);}
458 else{var result='';for(var i=0;i<element.childNodes.length;i++){result+=sh_getText(element.childNodes.item(i));}
460 function sh_isEmailAddress(url){if(/^mailto:/.test(url)){return false;}
461 return url.indexOf('@')!==-1;}
462 var sh_builder={init:function(htmlDocument,element){while(element.hasChildNodes()){element.removeChild(element.firstChild);}
463 this._document=htmlDocument;this._element=element;this._currentText=null;this._documentFragment=htmlDocument.createDocumentFragment();this._currentParent=this._documentFragment;this._span=htmlDocument.createElement("span");this._a=htmlDocument.createElement("a");},startElement:function(style){if(this._currentText!==null){this._currentParent.appendChild(this._document.createTextNode(this._currentText));this._currentText=null;}
464 var span=this._span.cloneNode(true);span.className=style;this._currentParent.appendChild(span);this._currentParent=span;},endElement:function(){if(this._currentText!==null){if(this._currentParent.className==='sh_url'){var a=this._a.cloneNode(true);a.className='sh_url';var url=this._currentText;if(url.length>0&&url.charAt(0)==='<'&&url.charAt(url.length-1)==='>'){url=url.substr(1,url.length-2);}
465 if(sh_isEmailAddress(url)){url='mailto:'+url;}
466 a.setAttribute('href',url);a.appendChild(this._document.createTextNode(this._currentText));this._currentParent.appendChild(a);}
467 else{this._currentParent.appendChild(this._document.createTextNode(this._currentText));}
468 this._currentText=null;}
469 this._currentParent=this._currentParent.parentNode;},text:function(s){if(this._currentText===null){this._currentText=s;}
470 else{this._currentText+=s;}},close:function(){if(this._currentText!==null){this._currentParent.appendChild(this._document.createTextNode(this._currentText));this._currentText=null;}
471 this._element.appendChild(this._documentFragment);}};function sh_highlightElement(htmlDocument,element,language){sh_addClass(element,"sh_sourceCode");var inputString;if(element.childNodes.length===0){return;}
472 else{inputString=sh_getText(element);}
473 sh_builder.init(htmlDocument,element);sh_highlightString(inputString,language,sh_builder);sh_builder.close();}
474 function sh_highlightHTMLDocument(htmlDocument){if(!window.sh_languages){return;}
475 var nodeList=htmlDocument.getElementsByTagName("pre");for(var i=0;i<nodeList.length;i++){var element=nodeList.item(i);var htmlClasses=sh_getClasses(element);for(var j=0;j<htmlClasses.length;j++){var htmlClass=htmlClasses[j].toLowerCase();if(htmlClass==="sh_sourcecode"){continue;}
476 var prefix=htmlClass.substr(0,3);if(prefix==="sh_"){var language=htmlClass.substring(3);if(language in sh_languages){sh_highlightElement(htmlDocument,element,sh_languages[language]);}
477 else{throw"Found <pre> element with class='"+htmlClass+"', but no such language exists";}}}}}
478 function sh_highlightDocument(){sh_highlightHTMLDocument(document);}
480 if(!this.sh_languages){this.sh_languages={};}
481 sh_languages['css']=[[{'next':1,'regex':/\/\/\//g,'style':'sh_comment'},{'next':7,'regex':/\/\//g,'style':'sh_comment'},{'next':8,'regex':/\/\*\*/g,'style':'sh_comment'},{'next':14,'regex':/\/\*/g,'style':'sh_comment'},{'regex':/(?:\.|#)[A-Za-z0-9_]+/g,'style':'sh_selector'},{'next':15,'regex':/\{/g,'state':1,'style':'sh_cbracket'},{'regex':/~|!|%|\^|\*|\(|\)|-|\+|=|\[|\]|\\|:|;|,|\.|\/|\?|&|<|>|\|/g,'style':'sh_symbol'}],[{'exit':true,'regex':/$/g},{'regex':/(?:<?)[A-Za-z0-9_\.\/\-_]+@[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'regex':/(?:<?)[A-Za-z0-9_]+:\/\/[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'next':2,'regex':/<!DOCTYPE/g,'state':1,'style':'sh_preproc'},{'next':4,'regex':/<!--/g,'style':'sh_comment'},{'regex':/<(?:\/)?[A-Za-z][A-Za-z0-9]*(?:\/)?>/g,'style':'sh_keyword'},{'next':5,'regex':/<(?:\/)?[A-Za-z][A-Za-z0-9]*/g,'state':1,'style':'sh_keyword'},{'regex':/&(?:[A-Za-z0-9]+);/g,'style':'sh_preproc'},{'regex':/@[A-Za-z]+/g,'style':'sh_type'},{'regex':/(?:TODO|FIXME)(?:[:]?)/g,'style':'sh_todo'}],[{'exit':true,'regex':/>/g,'style':'sh_preproc'},{'next':3,'regex':/"/g,'style':'sh_string'}],[{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}],[{'exit':true,'regex':/-->/g,'style':'sh_comment'},{'next':4,'regex':/<!--/g,'style':'sh_comment'}],[{'exit':true,'regex':/(?:\/)?>/g,'style':'sh_keyword'},{'regex':/[^=" \t>]+/g,'style':'sh_type'},{'regex':/=/g,'style':'sh_symbol'},{'next':6,'regex':/"/g,'style':'sh_string'}],[{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}],[{'exit':true,'regex':/$/g}],[{'exit':true,'regex':/\*\//g,'style':'sh_comment'},{'next':8,'regex':/\/\*\*/g,'style':'sh_comment'},{'regex':/(?:<?)[A-Za-z0-9_\.\/\-_]+@[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'regex':/(?:<?)[A-Za-z0-9_]+:\/\/[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'next':9,'regex':/<!DOCTYPE/g,'state':1,'style':'sh_preproc'},{'next':11,'regex':/<!--/g,'style':'sh_comment'},{'regex':/<(?:\/)?[A-Za-z][A-Za-z0-9]*(?:\/)?>/g,'style':'sh_keyword'},{'next':12,'regex':/<(?:\/)?[A-Za-z][A-Za-z0-9]*/g,'state':1,'style':'sh_keyword'},{'regex':/&(?:[A-Za-z0-9]+);/g,'style':'sh_preproc'},{'regex':/@[A-Za-z]+/g,'style':'sh_type'},{'regex':/(?:TODO|FIXME)(?:[:]?)/g,'style':'sh_todo'}],[{'exit':true,'regex':/>/g,'style':'sh_preproc'},{'next':10,'regex':/"/g,'style':'sh_string'}],[{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}],[{'exit':true,'regex':/-->/g,'style':'sh_comment'},{'next':11,'regex':/<!--/g,'style':'sh_comment'}],[{'exit':true,'regex':/(?:\/)?>/g,'style':'sh_keyword'},{'regex':/[^=" \t>]+/g,'style':'sh_type'},{'regex':/=/g,'style':'sh_symbol'},{'next':13,'regex':/"/g,'style':'sh_string'}],[{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}],[{'exit':true,'regex':/\*\//g,'style':'sh_comment'},{'next':14,'regex':/\/\*/g,'style':'sh_comment'},{'regex':/(?:<?)[A-Za-z0-9_\.\/\-_]+@[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'regex':/(?:<?)[A-Za-z0-9_]+:\/\/[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'regex':/(?:TODO|FIXME)(?:[:]?)/g,'style':'sh_todo'}],[{'exit':true,'regex':/\}/g,'style':'sh_cbracket'},{'next':16,'regex':/\/\/\//g,'style':'sh_comment'},{'next':22,'regex':/\/\//g,'style':'sh_comment'},{'next':23,'regex':/\/\*\*/g,'style':'sh_comment'},{'next':29,'regex':/\/\*/g,'style':'sh_comment'},{'regex':/[A-Za-z0-9_-]+[ \t]*:/g,'style':'sh_property'},{'regex':/[.%A-Za-z0-9_-]+/g,'style':'sh_value'},{'regex':/#(?:[A-Za-z0-9_]+)/g,'style':'sh_string'}],[{'exit':true,'regex':/$/g},{'regex':/(?:<?)[A-Za-z0-9_\.\/\-_]+@[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'regex':/(?:<?)[A-Za-z0-9_]+:\/\/[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'next':17,'regex':/<!DOCTYPE/g,'state':1,'style':'sh_preproc'},{'next':19,'regex':/<!--/g,'style':'sh_comment'},{'regex':/<(?:\/)?[A-Za-z][A-Za-z0-9]*(?:\/)?>/g,'style':'sh_keyword'},{'next':20,'regex':/<(?:\/)?[A-Za-z][A-Za-z0-9]*/g,'state':1,'style':'sh_keyword'},{'regex':/&(?:[A-Za-z0-9]+);/g,'style':'sh_preproc'},{'regex':/@[A-Za-z]+/g,'style':'sh_type'},{'regex':/(?:TODO|FIXME)(?:[:]?)/g,'style':'sh_todo'}],[{'exit':true,'regex':/>/g,'style':'sh_preproc'},{'next':18,'regex':/"/g,'style':'sh_string'}],[{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}],[{'exit':true,'regex':/-->/g,'style':'sh_comment'},{'next':19,'regex':/<!--/g,'style':'sh_comment'}],[{'exit':true,'regex':/(?:\/)?>/g,'style':'sh_keyword'},{'regex':/[^=" \t>]+/g,'style':'sh_type'},{'regex':/=/g,'style':'sh_symbol'},{'next':21,'regex':/"/g,'style':'sh_string'}],[{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}],[{'exit':true,'regex':/$/g}],[{'exit':true,'regex':/\*\//g,'style':'sh_comment'},{'next':23,'regex':/\/\*\*/g,'style':'sh_comment'},{'regex':/(?:<?)[A-Za-z0-9_\.\/\-_]+@[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'regex':/(?:<?)[A-Za-z0-9_]+:\/\/[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'next':24,'regex':/<!DOCTYPE/g,'state':1,'style':'sh_preproc'},{'next':26,'regex':/<!--/g,'style':'sh_comment'},{'regex':/<(?:\/)?[A-Za-z][A-Za-z0-9]*(?:\/)?>/g,'style':'sh_keyword'},{'next':27,'regex':/<(?:\/)?[A-Za-z][A-Za-z0-9]*/g,'state':1,'style':'sh_keyword'},{'regex':/&(?:[A-Za-z0-9]+);/g,'style':'sh_preproc'},{'regex':/@[A-Za-z]+/g,'style':'sh_type'},{'regex':/(?:TODO|FIXME)(?:[:]?)/g,'style':'sh_todo'}],[{'exit':true,'regex':/>/g,'style':'sh_preproc'},{'next':25,'regex':/"/g,'style':'sh_string'}],[{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}],[{'exit':true,'regex':/-->/g,'style':'sh_comment'},{'next':26,'regex':/<!--/g,'style':'sh_comment'}],[{'exit':true,'regex':/(?:\/)?>/g,'style':'sh_keyword'},{'regex':/[^=" \t>]+/g,'style':'sh_type'},{'regex':/=/g,'style':'sh_symbol'},{'next':28,'regex':/"/g,'style':'sh_string'}],[{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}],[{'exit':true,'regex':/\*\//g,'style':'sh_comment'},{'next':29,'regex':/\/\*/g,'style':'sh_comment'},{'regex':/(?:<?)[A-Za-z0-9_\.\/\-_]+@[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'regex':/(?:<?)[A-Za-z0-9_]+:\/\/[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'regex':/(?:TODO|FIXME)(?:[:]?)/g,'style':'sh_todo'}]];
483 if(!this.sh_languages){this.sh_languages={};}
484 sh_languages['diff']=[[{'next':1,'regex':/(?=^[-]{3})/g,'state':1,'style':'sh_oldfile'},{'next':6,'regex':/(?=^[*]{3})/g,'state':1,'style':'sh_oldfile'},{'next':14,'regex':/(?=^[\d])/g,'state':1,'style':'sh_difflines'}],[{'next':2,'regex':/^[-]{3}/g,'style':'sh_oldfile'},{'next':3,'regex':/^[-]/g,'style':'sh_oldfile'},{'next':4,'regex':/^[+]/g,'style':'sh_newfile'},{'next':5,'regex':/^@@/g,'style':'sh_difflines'}],[{'exit':true,'regex':/$/g}],[{'exit':true,'regex':/$/g}],[{'exit':true,'regex':/$/g}],[{'exit':true,'regex':/$/g}],[{'next':7,'regex':/^[*]{3}[ \t]+[\d]/g,'style':'sh_oldfile'},{'next':9,'regex':/^[*]{3}/g,'style':'sh_oldfile'},{'next':10,'regex':/^[-]{3}[ \t]+[\d]/g,'style':'sh_newfile'},{'next':13,'regex':/^[-]{3}/g,'style':'sh_newfile'}],[{'next':8,'regex':/^[\s]/g,'style':'sh_normal'},{'exit':true,'regex':/(?=^[-]{3})/g,'style':'sh_newfile'}],[{'exit':true,'regex':/$/g}],[{'exit':true,'regex':/$/g}],[{'next':11,'regex':/^[\s]/g,'style':'sh_normal'},{'exit':true,'regex':/(?=^[*]{3})/g,'style':'sh_newfile'},{'exit':true,'next':12,'regex':/^diff/g,'style':'sh_normal'}],[{'exit':true,'regex':/$/g}],[{'exit':true,'regex':/$/g}],[{'exit':true,'regex':/$/g}],[{'next':15,'regex':/^[\d]/g,'style':'sh_difflines'},{'next':16,'regex':/^[<]/g,'style':'sh_oldfile'},{'next':17,'regex':/^[>]/g,'style':'sh_newfile'}],[{'exit':true,'regex':/$/g}],[{'exit':true,'regex':/$/g}],[{'exit':true,'regex':/$/g}]];
486 if(!this.sh_languages){this.sh_languages={};}
487 sh_languages['html']=[[{'next':1,'regex':/<!DOCTYPE/g,'state':1,'style':'sh_preproc'},{'next':3,'regex':/<!--/g,'style':'sh_comment'},{'regex':/<(?:\/)?[A-Za-z][A-Za-z0-9]*(?:\/)?>/g,'style':'sh_keyword'},{'next':4,'regex':/<(?:\/)?[A-Za-z][A-Za-z0-9]*/g,'state':1,'style':'sh_keyword'},{'regex':/&(?:[A-Za-z0-9]+);/g,'style':'sh_preproc'}],[{'exit':true,'regex':/>/g,'style':'sh_preproc'},{'next':2,'regex':/"/g,'style':'sh_string'}],[{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}],[{'exit':true,'regex':/-->/g,'style':'sh_comment'},{'next':3,'regex':/<!--/g,'style':'sh_comment'}],[{'exit':true,'regex':/(?:\/)?>/g,'style':'sh_keyword'},{'regex':/[^=" \t>]+/g,'style':'sh_type'},{'regex':/=/g,'style':'sh_symbol'},{'next':5,'regex':/"/g,'style':'sh_string'}],[{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}]];
489 if(!this.sh_languages){this.sh_languages={};}
490 sh_languages['javascript']=[[{'regex':/\b(?:import|package)\b/g,'style':'sh_preproc'},{'next':1,'regex':/\/\/\//g,'style':'sh_comment'},{'next':7,'regex':/\/\//g,'style':'sh_comment'},{'next':8,'regex':/\/\*\*/g,'style':'sh_comment'},{'next':14,'regex':/\/\*/g,'style':'sh_comment'},{'regex':/\b[+-]?(?:(?:0x[A-Fa-f0-9]+)|(?:(?:[\d]*\.)?[\d]+(?:[eE][+-]?[\d]+)?))u?(?:(?:int(?:8|16|32|64))|L)?\b/g,'style':'sh_number'},{'next':15,'regex':/"/g,'style':'sh_string'},{'next':16,'regex':/'/g,'style':'sh_string'},{'regex':/(\b(?:class|interface))([ \t]+)([$A-Za-z0-9]+)/g,'style':['sh_keyword','sh_normal','sh_type']},{'regex':/\b(?:abstract|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|false|final|finally|for|function|goto|if|implements|in|instanceof|interface|native|new|null|private|protected|prototype|public|return|static|super|switch|synchronized|throw|throws|this|transient|true|try|typeof|var|volatile|while|with)\b/g,'style':'sh_keyword'},{'regex':/\b(?:int|byte|boolean|char|long|float|double|short|void)\b/g,'style':'sh_type'},{'regex':/~|!|%|\^|\*|\(|\)|-|\+|=|\[|\]|\\|:|;|,|\.|\/|\?|&|<|>|\|/g,'style':'sh_symbol'},{'regex':/\{|\}/g,'style':'sh_cbracket'},{'regex':/(?:[A-Za-z]|_)[A-Za-z0-9_]*[ \t]*(?=\()/g,'style':'sh_function'}],[{'exit':true,'regex':/$/g},{'regex':/(?:<?)[A-Za-z0-9_\.\/\-_]+@[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'regex':/(?:<?)[A-Za-z0-9_]+:\/\/[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'next':2,'regex':/<!DOCTYPE/g,'state':1,'style':'sh_preproc'},{'next':4,'regex':/<!--/g,'style':'sh_comment'},{'regex':/<(?:\/)?[A-Za-z][A-Za-z0-9]*(?:\/)?>/g,'style':'sh_keyword'},{'next':5,'regex':/<(?:\/)?[A-Za-z][A-Za-z0-9]*/g,'state':1,'style':'sh_keyword'},{'regex':/&(?:[A-Za-z0-9]+);/g,'style':'sh_preproc'},{'regex':/@[A-Za-z]+/g,'style':'sh_type'},{'regex':/(?:TODO|FIXME)(?:[:]?)/g,'style':'sh_todo'}],[{'exit':true,'regex':/>/g,'style':'sh_preproc'},{'next':3,'regex':/"/g,'style':'sh_string'}],[{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}],[{'exit':true,'regex':/-->/g,'style':'sh_comment'},{'next':4,'regex':/<!--/g,'style':'sh_comment'}],[{'exit':true,'regex':/(?:\/)?>/g,'style':'sh_keyword'},{'regex':/[^=" \t>]+/g,'style':'sh_type'},{'regex':/=/g,'style':'sh_symbol'},{'next':6,'regex':/"/g,'style':'sh_string'}],[{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}],[{'exit':true,'regex':/$/g}],[{'exit':true,'regex':/\*\//g,'style':'sh_comment'},{'next':8,'regex':/\/\*\*/g,'style':'sh_comment'},{'regex':/(?:<?)[A-Za-z0-9_\.\/\-_]+@[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'regex':/(?:<?)[A-Za-z0-9_]+:\/\/[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'next':9,'regex':/<!DOCTYPE/g,'state':1,'style':'sh_preproc'},{'next':11,'regex':/<!--/g,'style':'sh_comment'},{'regex':/<(?:\/)?[A-Za-z][A-Za-z0-9]*(?:\/)?>/g,'style':'sh_keyword'},{'next':12,'regex':/<(?:\/)?[A-Za-z][A-Za-z0-9]*/g,'state':1,'style':'sh_keyword'},{'regex':/&(?:[A-Za-z0-9]+);/g,'style':'sh_preproc'},{'regex':/@[A-Za-z]+/g,'style':'sh_type'},{'regex':/(?:TODO|FIXME)(?:[:]?)/g,'style':'sh_todo'}],[{'exit':true,'regex':/>/g,'style':'sh_preproc'},{'next':10,'regex':/"/g,'style':'sh_string'}],[{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}],[{'exit':true,'regex':/-->/g,'style':'sh_comment'},{'next':11,'regex':/<!--/g,'style':'sh_comment'}],[{'exit':true,'regex':/(?:\/)?>/g,'style':'sh_keyword'},{'regex':/[^=" \t>]+/g,'style':'sh_type'},{'regex':/=/g,'style':'sh_symbol'},{'next':13,'regex':/"/g,'style':'sh_string'}],[{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}],[{'exit':true,'regex':/\*\//g,'style':'sh_comment'},{'next':14,'regex':/\/\*/g,'style':'sh_comment'},{'regex':/(?:<?)[A-Za-z0-9_\.\/\-_]+@[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'regex':/(?:<?)[A-Za-z0-9_]+:\/\/[A-Za-z0-9_\.\/\-_]+(?:>?)/g,'style':'sh_url'},{'regex':/(?:TODO|FIXME)(?:[:]?)/g,'style':'sh_todo'}],[{'exit':true,'regex':/"/g,'style':'sh_string'},{'regex':/\\./g,'style':'sh_specialchar'}],[{'exit':true,'regex':/'/g,'style':'sh_string'},{'regex':/\\./g,'style':'sh_specialchar'}]];
492 if(!this.sh_languages){this.sh_languages={};}
493 sh_languages['ruby']=[[{'regex':/\b(?:require)\b/g,'style':'sh_preproc'},{'next':1,'regex':/#/g,'style':'sh_comment'},{'regex':/\b[+-]?(?:(?:0x[A-Fa-f0-9]+)|(?:(?:[\d]*\.)?[\d]+(?:[eE][+-]?[\d]+)?))u?(?:(?:int(?:8|16|32|64))|L)?\b/g,'style':'sh_number'},{'next':2,'regex':/"/g,'style':'sh_string'},{'next':3,'regex':/'/g,'style':'sh_string'},{'next':4,'regex':/</g,'style':'sh_string'},{'regex':/\/[^\n]*\//g,'style':'sh_regexp'},{'regex':/(%r)(\{(?:\\\}|#\{[A-Za-z0-9]+\}|[^}])*\})/g,'style':['sh_symbol','sh_regexp']},{'regex':/\b(?:alias|begin|BEGIN|break|case|defined|do|else|elsif|end|END|ensure|for|if|in|include|loop|next|raise|redo|rescue|retry|return|super|then|undef|unless|until|when|while|yield|false|nil|self|true|__FILE__|__LINE__|and|not|or|def|class|module|catch|fail|load|throw)\b/g,'style':'sh_keyword'},{'next':5,'regex':/(?:^\=begin)/g,'style':'sh_comment'},{'regex':/(?:\$[#]?|@@|@)(?:[A-Za-z0-9_]+|'|\"|\/)/g,'style':'sh_type'},{'regex':/[A-Za-z0-9]+(?:\?|!)/g,'style':'sh_normal'},{'regex':/~|!|%|\^|\*|\(|\)|-|\+|=|\[|\]|\\|:|;|,|\.|\/|\?|&|<|>|\|/g,'style':'sh_symbol'},{'regex':/(#)(\{)/g,'style':['sh_symbol','sh_cbracket']},{'regex':/\{|\}/g,'style':'sh_cbracket'}],[{'exit':true,'regex':/$/g}],[{'exit':true,'regex':/$/g},{'regex':/\\(?:\\|")/g},{'exit':true,'regex':/"/g,'style':'sh_string'}],[{'exit':true,'regex':/$/g},{'regex':/\\(?:\\|')/g},{'exit':true,'regex':/'/g,'style':'sh_string'}],[{'exit':true,'regex':/$/g},{'exit':true,'regex':/>/g,'style':'sh_string'}],[{'exit':true,'regex':/^(?:\=end)/g,'style':'sh_comment'}]];