{"commit":"f0368bdaa2797f60d0fcde496261ccb8a79fb7d2","subject":"added table class to get bootstrap style","message":"added table class to get bootstrap style","repos":"gregoryboucher\/resume-app,gregoryboucher\/resume-app","old_file":"src\/main\/webapp\/WEB-INF\/templates\/views\/show-table.scaml","new_file":"src\/main\/webapp\/WEB-INF\/templates\/views\/show-table.scaml","new_contents":"- import models.Person\n- val people = List(Person(\"James\", \"Denver\"), Person(\"Hiram\", \"Lakewood\"), Person(\"Bob\", \"Lancaster\"))\n%table.table\n\t%tr\n\t\t%th Name\n\t\t%th Location\n\t- for (person <- people) \n\t\t%tr\n\t\t\t%td = person.name\n\t\t\t%td = person.location\n","old_contents":"- import models.Person\n- val people = List(Person(\"James\", \"Denver\"), Person(\"Hiram\", \"Lakewood\"), Person(\"Bob\", \"Lancaster\"))\n%table\n\t%tr\n\t\t%th Name\n\t\t%th Location\n\t- for (person <- people) \n\t\t%tr\n\t\t\t%td = person.name\n\t\t\t%td = person.location\n","returncode":0,"stderr":"","license":"mit","lang":"Scaml"} {"commit":"d6dedb67177b128cacfac3d5ba23d3b7dd888b76","subject":"Update 500.scaml to import scala.util.parsing.input.Position by full name instead of relative package.","message":"Update 500.scaml to import scala.util.parsing.input.Position by full name instead of relative package.","repos":"scalate\/scalate,janurag\/scalate,scalate\/scalate,janurag\/scalate,scalate\/scalate,maslovalex\/scalate,janurag\/scalate,maslovalex\/scalate,maslovalex\/scalate,scalate\/scalate,janurag\/scalate,maslovalex\/scalate,maslovalex\/scalate,janurag\/scalate","old_file":"scalate-core\/src\/main\/resources\/WEB-INF\/scalate\/errors\/500.scaml","new_file":"scalate-core\/src\/main\/resources\/WEB-INF\/scalate\/errors\/500.scaml","new_contents":"-#\n-# Copyright (C) 2009-2011 the original author or authors.\n-# See the notice.md file distributed with this work for additional\n-# information regarding copyright ownership.\n-#\n-# Licensed under the Apache License, Version 2.0 (the \"License\");\n-# you may not use this file except in compliance with the License.\n-# You may obtain a copy of the License at\n-#\n-# http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n-#\n-# Unless required by applicable law or agreed to in writing, software\n-# distributed under the License is distributed on an \"AS IS\" BASIS,\n-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n-# See the License for the specific language governing permissions and\n-# limitations under the License.\n-#\n- if ( !engine.isDevelopmentMode )\n .scalate-error-500\n %h1 Server Error: We're sorry, but something went wrong.\n %p We've been notified about this issue and we'll take a look at it shortly.\n\n- else\n - import scala.util.parsing.input.Position\n - import org.fusesource.scalate._\n - import org.fusesource.scalate.console._\n - val consoleHelper = new ConsoleHelper(context)\n - import consoleHelper._\n - response.setContentType(\"text\/html\")\n - attributes(\"layout\") = \"\"\n !!! Basic\n %html(lang=\"en\")\n %head\n %meta(http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\")\n %meta(name=\"keywords\" content=\"error\")\n %title Unexpected Failure\n %style(type=\"text\/css\")\n :plain\n html, body {\n margin: 0;\n padding: 0;\n font-family: Helvetica, Arial, Sans;\n background: #EEEEEE;\n }\n .block {\n padding: 20px;\n border-bottom: 1px solid #aaa;\n }\n #scalate-error .header h1 {\n font-weight: normal;\n font-size: 28px;\n margin: 0;\n }\n #scalate-error .more {\n color: #666;\n font-size: 80%;\n border: none;\n }\n #scalate-error .header {\n background: #fcd2da;\n }\n #scalate-error .header p {\n color: #333;\n }\n #scalate-error .details {\n background: #f6f6f6;\n }\n #scalate-error .details h2 {\n font-weight: normal;\n font-size: 18px;\n margin: 0 0 10px 0;\n }\n #scalate-error .details .lineNumber {\n float: left;\n display: block;\n width: 40px;\n text-align: right;\n margin-right: 10px;\n font-size: 14px;\n font-family: monospace;\n background: #333;\n color: #fff;\n }\n #scalate-error .details .line {\n clear: both;\n color: #333;\n margin-bottom: 1px;\n }\n #scalate-error .details pre {\n font-size: 14px;\n margin: 0;\n overflow-x: hidden;\n }\n #scalate-error .details .error {\n color: #c00 !important;\n }\n #scalate-error .details .error .lineNumber {\n background: #c00;\n }\n #scalate-error .details .errorCol {\n background: #c00;\n color:#fff;\n }\n #scalate-error .details a {\n text-decoration: none;\n }\n #scalate-error .details a:hover * {\n cursor: pointer !important;\n }\n #scalate-error .details a:hover pre {\n background: #FAFFCF !important;\n }\n\n #scalate-error .details .stacktrace {\n clear: both;\n color: #333;\n margin-bottom: 1px;\n font-size: 10px;\n }\n\n #scalate-error .nested {\n padding-top:10px;\n padding-left:10px;\n }\n\n #scalate-error .nested .block {\n padding:10px;\n }\n #scalate-error .nested .header {\n font-size:10px;\n }\n #scalate-error .nested .header h1 {\n font-size:16px;\n }\n %body\n #content\n .wrapper\n -# Wrap in a try catch block so if there is a error on this page it gets logged to the console\n - try\n %link(href={uri(\"\/css\/scalate\/errors.css\")} rel=\"stylesheet\" type=\"text\/css\")\n \n - def displayError(file:String, pos:Position, message:String)\n .header.block\n %h1\n = message\n\n .details.block\n %h2\n = editLink(file, pos.line, pos.column)\n in #{shorten(file)} near line #{pos.line} col #{pos.column}\n\n - for (s <- lines(file, pos))\n - val ss = s.style(pos.line)\n = editLink(file, s.line, (if (pos.line == s.line) pos.column else 1))\n %div(class=ss)\n %span.lineNumber\n = s.line\n - if (pos.line == s.line)\n - val (prefix, ch, postfix) = s.splitOnCharacter(pos.column - 1)\n %pre<\n &~ prefix\n %span.errorCol><\n &~ ch\n &~ postfix\n - else\n %pre<\n &~ s.source\n\n - def displayException(e:Throwable)\n .header.block\n %h1\n = e.getMessage\n %p\n = e\n .details.block\n - for( stack <- e.getStackTrace )\n = renderStackTraceElement(stack)\n - if( e.getCause!=null )\n .nested\n - displayException(e.getCause)\n\n #scalate-error\n - exception match\n - case e:InvalidSyntaxException =>\n - displayError( e.template, e.pos, e.brief)\n\n - case e:CompilerException =>\n - for ( error <- e.errors )\n - displayError(error.file, error.pos, error.message)\n - val o = error.original\n - if (o != null)\n .section.block\n = editLink(o.file, o.pos.line, o.pos.column)\n from generated #{shorten(o.file)} near line #{o.pos.line} col #{o.pos.line}\n\n - case e:Throwable =>\n - displayException(e)\n\n - case u =>\n .header.block\n %h1\n = errorMessage\n %p\n = u\n - catch\n - case e:Throwable=>\n - e.printStackTrace\n -# Fallback to a simple rendering of the error message\n .header.block\n %h1\n = errorMessage\n\n","old_contents":"-#\n-# Copyright (C) 2009-2011 the original author or authors.\n-# See the notice.md file distributed with this work for additional\n-# information regarding copyright ownership.\n-#\n-# Licensed under the Apache License, Version 2.0 (the \"License\");\n-# you may not use this file except in compliance with the License.\n-# You may obtain a copy of the License at\n-#\n-# http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n-#\n-# Unless required by applicable law or agreed to in writing, software\n-# distributed under the License is distributed on an \"AS IS\" BASIS,\n-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n-# See the License for the specific language governing permissions and\n-# limitations under the License.\n-#\n- if ( !engine.isDevelopmentMode )\n .scalate-error-500\n %h1 Server Error: We're sorry, but something went wrong.\n %p We've been notified about this issue and we'll take a look at it shortly.\n\n- else\n - import util.parsing.input.Position\n - import org.fusesource.scalate._\n - import org.fusesource.scalate.console._\n - val consoleHelper = new ConsoleHelper(context)\n - import consoleHelper._\n - response.setContentType(\"text\/html\")\n - attributes(\"layout\") = \"\"\n !!! Basic\n %html(lang=\"en\")\n %head\n %meta(http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\")\n %meta(name=\"keywords\" content=\"error\")\n %title Unexpected Failure\n %style(type=\"text\/css\")\n :plain\n html, body {\n margin: 0;\n padding: 0;\n font-family: Helvetica, Arial, Sans;\n background: #EEEEEE;\n }\n .block {\n padding: 20px;\n border-bottom: 1px solid #aaa;\n }\n #scalate-error .header h1 {\n font-weight: normal;\n font-size: 28px;\n margin: 0;\n }\n #scalate-error .more {\n color: #666;\n font-size: 80%;\n border: none;\n }\n #scalate-error .header {\n background: #fcd2da;\n }\n #scalate-error .header p {\n color: #333;\n }\n #scalate-error .details {\n background: #f6f6f6;\n }\n #scalate-error .details h2 {\n font-weight: normal;\n font-size: 18px;\n margin: 0 0 10px 0;\n }\n #scalate-error .details .lineNumber {\n float: left;\n display: block;\n width: 40px;\n text-align: right;\n margin-right: 10px;\n font-size: 14px;\n font-family: monospace;\n background: #333;\n color: #fff;\n }\n #scalate-error .details .line {\n clear: both;\n color: #333;\n margin-bottom: 1px;\n }\n #scalate-error .details pre {\n font-size: 14px;\n margin: 0;\n overflow-x: hidden;\n }\n #scalate-error .details .error {\n color: #c00 !important;\n }\n #scalate-error .details .error .lineNumber {\n background: #c00;\n }\n #scalate-error .details .errorCol {\n background: #c00;\n color:#fff;\n }\n #scalate-error .details a {\n text-decoration: none;\n }\n #scalate-error .details a:hover * {\n cursor: pointer !important;\n }\n #scalate-error .details a:hover pre {\n background: #FAFFCF !important;\n }\n\n #scalate-error .details .stacktrace {\n clear: both;\n color: #333;\n margin-bottom: 1px;\n font-size: 10px;\n }\n\n #scalate-error .nested {\n padding-top:10px;\n padding-left:10px;\n }\n\n #scalate-error .nested .block {\n padding:10px;\n }\n #scalate-error .nested .header {\n font-size:10px;\n }\n #scalate-error .nested .header h1 {\n font-size:16px;\n }\n %body\n #content\n .wrapper\n -# Wrap in a try catch block so if there is a error on this page it gets logged to the console\n - try\n %link(href={uri(\"\/css\/scalate\/errors.css\")} rel=\"stylesheet\" type=\"text\/css\")\n \n - def displayError(file:String, pos:Position, message:String)\n .header.block\n %h1\n = message\n\n .details.block\n %h2\n = editLink(file, pos.line, pos.column)\n in #{shorten(file)} near line #{pos.line} col #{pos.column}\n\n - for (s <- lines(file, pos))\n - val ss = s.style(pos.line)\n = editLink(file, s.line, (if (pos.line == s.line) pos.column else 1))\n %div(class=ss)\n %span.lineNumber\n = s.line\n - if (pos.line == s.line)\n - val (prefix, ch, postfix) = s.splitOnCharacter(pos.column - 1)\n %pre<\n &~ prefix\n %span.errorCol><\n &~ ch\n &~ postfix\n - else\n %pre<\n &~ s.source\n\n - def displayException(e:Throwable)\n .header.block\n %h1\n = e.getMessage\n %p\n = e\n .details.block\n - for( stack <- e.getStackTrace )\n = renderStackTraceElement(stack)\n - if( e.getCause!=null )\n .nested\n - displayException(e.getCause)\n\n #scalate-error\n - exception match\n - case e:InvalidSyntaxException =>\n - displayError( e.template, e.pos, e.brief)\n\n - case e:CompilerException =>\n - for ( error <- e.errors )\n - displayError(error.file, error.pos, error.message)\n - val o = error.original\n - if (o != null)\n .section.block\n = editLink(o.file, o.pos.line, o.pos.column)\n from generated #{shorten(o.file)} near line #{o.pos.line} col #{o.pos.line}\n\n - case e:Throwable =>\n - displayException(e)\n\n - case u =>\n .header.block\n %h1\n = errorMessage\n %p\n = u\n - catch\n - case e:Throwable=>\n - e.printStackTrace\n -# Fallback to a simple rendering of the error message\n .header.block\n %h1\n = errorMessage\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"Scaml"} {"commit":"e377f4b882e4df19b52f34e969a1da3fa0d150cb","subject":"update menu model","message":"update menu model\n","repos":"gregoryboucher\/resume-app,gregoryboucher\/resume-app","old_file":"src\/main\/webapp\/WEB-INF\/templates\/layouts\/navbar.scaml","new_file":"src\/main\/webapp\/WEB-INF\/templates\/layouts\/navbar.scaml","new_contents":"- import models.Menu\n- import services.MenuService\n- val test = MenuService.getMenuJson(\"header\")\n\n- val navbar = List(Menu(0,\"About\", \"#about\"), Menu(1,\"Contact\", \"#contact\"), Menu(2,\"More\", \"#more\"))\n\n-# TODO: Use service at \/menu\/:menuName.json to get header menu\n\n.navbar.navbar-fixed-top.navbar-inverse{:role => \"navigation\"}\n\t.container\n\t\t\/ #{test}\n\t\t.navbar-header\n\t\t\t%button.navbar-toggle{:type => \"button\", \"data-toggle\" => \"collapse\", \"data-target\" => \".nav-collapse\"}\n\t\t\t\t%span.sr-only Toggle navigation\n\t\t\t\t%span.icon-bar\n\t\t\t\t%span.icon-bar\n\t\t\t\t%span.icon-bar\n\t\t\t%a.navbar-brand{:href => \"\/\"} Test Project\n\t\t.navbar-collapse.collapse\n\t\t\t%ul.nav.navbar-nav\n\t\t\t\t- for (item <- navbar) \n\t\t\t\t\t%li \n\t\t\t\t\t\t%a{:href => {item.url}} = item.displayName","old_contents":"- import models.Menu\n- import services.MenuService\n- val test = MenuService.getMenuJson(\"header\")\n\n- val navbar = List(Menu(\"About\", \"#about\"), Menu(\"Contact\", \"#contact\"), Menu(\"More\", \"#more\"))\n\n-# TODO: Use service at \/menu\/:menuName.json to get header menu\n\n.navbar.navbar-fixed-top.navbar-inverse{:role => \"navigation\"}\n\t.container\n\t\t\/ #{test}\n\t\t.navbar-header\n\t\t\t%button.navbar-toggle{:type => \"button\", \"data-toggle\" => \"collapse\", \"data-target\" => \".nav-collapse\"}\n\t\t\t\t%span.sr-only Toggle navigation\n\t\t\t\t%span.icon-bar\n\t\t\t\t%span.icon-bar\n\t\t\t\t%span.icon-bar\n\t\t\t%a.navbar-brand{:href => \"\/\"} Test Project\n\t\t.navbar-collapse.collapse\n\t\t\t%ul.nav.navbar-nav\n\t\t\t\t- for (item <- navbar) \n\t\t\t\t\t%li \n\t\t\t\t\t\t%a{:href => {item.url}} = item.displayName","returncode":0,"stderr":"","license":"mit","lang":"Scaml"} {"commit":"0a323fccb758a0c25f3d3cf6561b4fe68567b91b","subject":"Fix \"intended too shallow\" error.","message":"Fix \"intended too shallow\" error.\n","repos":"dozed\/scalatra,Alefas\/Scalatra,lloydmeta\/scalatra,Alefas\/Scalatra,lloydmeta\/scalatra,offner\/scalatra,seratch\/scalatra,lzpfmh\/scalatra,lightvector\/scalatra,dozed\/scalatra,lightvector\/scalatra,dozed\/scalatra,seratch\/scalatra,offner\/scalatra,lzpfmh\/scalatra,0xfaded\/scalatra,Alefas\/Scalatra,seratch\/scalatra,lzpfmh\/scalatra,offner\/scalatra,0xfaded\/scalatra,lightvector\/scalatra","old_file":"example\/templates\/index.scaml","new_file":"example\/templates\/index.scaml","new_contents":"%html{:xmlns => \"http:\/\/www.w3.org\/1999\/xhtml\", \"xml:lang\" => \"en\", :lang => \"en\"}\n\n-@ val content: String\n\n

#{content}<\/p>\n\n- for(i <- 1 to 3)\n %p= i\n","old_contents":"%html{:xmlns => \"http:\/\/www.w3.org\/1999\/xhtml\", \"xml:lang\" => \"en\", :lang => \"en\"}\n\n-@ val content: String\n\n

#{content}<\/p>\n\n- for(i <- 1 to 3)\n %p= i\n","returncode":0,"stderr":"","license":"bsd-2-clause","lang":"Scaml"} {"commit":"b64ed70e4dbe91ac5b7f97fa1d436f2fbe4153f0","subject":"removed bootstrap.css - now in main.css","message":"removed bootstrap.css - now in main.css","repos":"gregoryboucher\/resume-app,gregoryboucher\/resume-app","old_file":"src\/main\/webapp\/WEB-INF\/templates\/layouts\/default.scaml","new_file":"src\/main\/webapp\/WEB-INF\/templates\/layouts\/default.scaml","new_contents":"-@ var title: String = \"Defaul Title\"\n-@ var headline: String = title\n-@ var body: String\n-@ var zip: String = \"Home Zip\"\n\n!!!\n%html\n\t%head\n\t\t%title #{title}\n\t\t%meta{:charset => \"utf-8\"}\n\t\t%meta{\"http-equiv\" => \"X-UA-Compatible\", :content => \"IE=edge\"}\n\t\t%meta{:name => \"viewport\", :content => \"width=device-width, initial-scale=1.0\"}\n\t\t%link{:href => \"css\/compiled\/main.css\", :rel => \"stylesheet\"}\n\t\t%link{:href => \"css\/starter-template.css\", :rel => \"stylesheet\"}\n\t\t\/ HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries\n\t\t\/[if lt IE 9]\n\t\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/oss.maxcdn.com\/libs\/html5shiv\/3.7.0\/html5shiv.js\"}\n\t\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/oss.maxcdn.com\/libs\/respond.js\/1.3.0\/respond.min.js\"}\n\t%body\n\t\t- render(\"\/layouts\/navbar.scaml\") \n\t\t.container\n\t\t\t%header\n\t\t\t\t%h1\n\t\t\t\t\t#{headline}\n\t\t\t\t\t%span.glyphicon.glyphicon-glass\n\t\t\t%section\n\t\t\t\t!= body\n\t\t\t%footer #{zip}\n\t\t\/ jQuery (necessary for Bootstrap's JavaScript plugins)\n\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/code.jquery.com\/jquery.js\"}\n\t\t\/ Include all compiled plugins (below), or include individual files as needed\n\t\t%script{:type => \"text\/javascript\",:src => \"js\/compiled\/bootstrap.js\"}\n\t\t%script\n\t\t\t$('a').tooltip()","old_contents":"-@ var title: String = \"Defaul Title\"\n-@ var headline: String = title\n-@ var body: String\n-@ var zip: String = \"Home Zip\"\n\n!!!\n%html\n\t%head\n\t\t%title #{title}\n\t\t%meta{:charset => \"utf-8\"}\n\t\t%meta{\"http-equiv\" => \"X-UA-Compatible\", :content => \"IE=edge\"}\n\t\t%meta{:name => \"viewport\", :content => \"width=device-width, initial-scale=1.0\"}\n\t\t%link{:href => \"css\/compiled\/bootstrap.css\", :rel => \"stylesheet\"}\n\t\t%link{:href => \"css\/starter-template.css\", :rel => \"stylesheet\"}\n\t\t\/ HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries\n\t\t\/[if lt IE 9]\n\t\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/oss.maxcdn.com\/libs\/html5shiv\/3.7.0\/html5shiv.js\"}\n\t\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/oss.maxcdn.com\/libs\/respond.js\/1.3.0\/respond.min.js\"}\n\t%body\n\t\t- render(\"\/layouts\/navbar.scaml\") \n\t\t.container\n\t\t\t%header\n\t\t\t\t%h1\n\t\t\t\t\t#{headline}\n\t\t\t\t\t%span.glyphicon.glyphicon-glass\n\t\t\t%section\n\t\t\t\t!= body\n\t\t\t%footer #{zip}\n\t\t\/ jQuery (necessary for Bootstrap's JavaScript plugins)\n\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/code.jquery.com\/jquery.js\"}\n\t\t\/ Include all compiled plugins (below), or include individual files as needed\n\t\t%script{:type => \"text\/javascript\",:src => \"js\/compiled\/bootstrap.js\"}\n\t\t%script\n\t\t\t$('a').tooltip()","returncode":0,"stderr":"","license":"mit","lang":"Scaml"} {"commit":"31480f350d87d5640f7c41763dfc9561160b62ca","subject":"Started to add some html","message":"Started to add some html","repos":"gregoryboucher\/resume-app,gregoryboucher\/resume-app","old_file":"src\/main\/webapp\/WEB-INF\/templates\/views\/resume-layout.scaml","new_file":"src\/main\/webapp\/WEB-INF\/templates\/views\/resume-layout.scaml","new_contents":"- attributes(\"title\") = \"Gregory Boucher - Web: [Product, Engineering], Problem Solver, Project Specialist\"\n- attributes(\"headline\") = \"Gregory Boucher\"\n- attributes(\"tagline\") = \"Solving problems for users and companies\"\n\n%section.first\n %dl\n %dt Gregory Boucher (\\\u02c8gre-g(\u0259-)r\u0113\\ \\b\u00fc-\u02c8sh\u0101\\)\n %dd Adaptable...\n %dd Problem solver can ...\n %dd Engineer with experience in...\n %dd Cultural leader\n %dt ex of Gregory Boucher\n %dd I need to better understand the viability of this business line\n %dd I want someone who can come in and quickly get up to speed\n %dd I am looking for a utility player who can fill multiple roles.\n %dd I want to make sure the people we hire fit culturally\n\n.box\n - render(\"\/views\/show-table.scaml\")","old_contents":"- attributes(\"title\") = \"More Complex\"\n- attributes(\"headline\") = \"Calling another tempalte\"\n\n%a{:href => \"#\", :title => \"First Tooltip\", \"data-toggle\" => \"tooltip\"} Tooltip\n\n.box\n\t- render(\"\/views\/show-table.scaml\")","returncode":0,"stderr":"","license":"mit","lang":"Scaml"} {"commit":"cdd2ba7c070d7054812f66cba67a157bae9689d3","subject":"SAMZA-290; refreshing yarn am keeps page now","message":"SAMZA-290; refreshing yarn am keeps page now\n","repos":"bharathkk\/samza,smartpcr\/samza,TiVo\/samza,abhishekshivanna\/samza,zcan\/samza,pubnub\/samza,milinda\/samza,fredji97\/samza,milinda\/samza,zcan\/samza,vjagadish\/samza-clone,gustavoanatoly\/samza,abhishekshivanna\/samza,gustavoanatoly\/samza,nickpan47\/samza,quantiply-fork\/samza,bharathkk\/samza,Quantiply\/samza,quantiply-fork\/samza,InnovaCo\/samza,InnovaCo\/samza,abhishekshivanna\/samza,quantiply-fork\/samza,davidzchen\/samza,smartpcr\/samza,TiVo\/samza,abhishekshivanna\/samza,lhaiesp\/samza,abhishekshivanna\/samza,lhaiesp\/samza,guozhangwang\/samza,nickpan47\/samza,Quantiply\/samza,gyeh\/samza,guozhangwang\/samza,lhaiesp\/samza,guozhangwang\/samza,davidzchen\/samza,Quantiply\/samza,gustavoanatoly\/samza,milinda\/samza,smartpcr\/samza,pubnub\/samza,gustavoanatoly\/samza,prateekm\/samza,lhaiesp\/samza,prateekm\/samza,davidzchen\/samza,apache\/samza,zcan\/samza,fredji97\/samza,bharathkk\/samza,TiVo\/samza,hannesstockner\/samza,InnovaCo\/samza,YanjieGao\/samza,smartpcr\/samza,hannesstockner\/samza,milinda\/samza,prateekm\/samza,TiVo\/samza,savaki\/samza,apache\/samza,pubnub\/samza,gyeh\/samza,vjagadish\/samza-clone,pubnub\/samza,TiVo\/samza,lhaiesp\/samza,guozhangwang\/samza,savaki\/samza,savaki\/samza,nickpan47\/samza,Quantiply\/samza,YanjieGao\/samza,apache\/samza,YanjieGao\/samza,hannesstockner\/samza,fredji97\/samza,zcan\/samza,quantiply-fork\/samza,fredji97\/samza,YanjieGao\/samza,apache\/samza,savaki\/samza,vjagadish\/samza-clone,bharathkk\/samza,prateekm\/samza,hannesstockner\/samza,fredji97\/samza,prateekm\/samza,davidzchen\/samza,InnovaCo\/samza,nickpan47\/samza,gyeh\/samza,vjagadish\/samza-clone,gyeh\/samza,bharathkk\/samza,apache\/samza","old_file":"samza-yarn\/src\/main\/resources\/scalate\/WEB-INF\/views\/index.scaml","new_file":"samza-yarn\/src\/main\/resources\/scalate\/WEB-INF\/views\/index.scaml","new_contents":"-#\n Licensed to the Apache Software Foundation (ASF) under one\n or more contributor license agreements. See the NOTICE file\n distributed with this work for additional information\n regarding copyright ownership. The ASF licenses this file\n to you under the Apache License, Version 2.0 (the\n \"License\"); you may not use this file except in compliance\n with the License. You may obtain a copy of the License at\n\n http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing,\n software distributed under the License is distributed on an\n \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n KIND, either express or implied. See the License for the\n specific language governing permissions and limitations\n under the License.\n-@ val state: org.apache.samza.job.yarn.SamzaAppMasterState\n-@ val config: scala.collection.immutable.TreeMap[String, String]\n-@ val rmHttpAddress: String\n-@ val jobName: String = config.get(\"job.name\").getOrElse(\"MISSING JOB NAME\")\n-@ val username: String = org.apache.hadoop.security.UserGroupInformation.getCurrentUser.getShortUserName\n- attributes(\"title\") = jobName\n\n%div.col-xs-2.menu\n %ul.nav.nav-pills.nav-stacked\n %li.active\n %a(href=\"#application-master\" data-toggle=\"tab\") Application Master\n %li\n %a(href=\"#containers\" data-toggle=\"tab\") Containers\n %li\n %a(href=\"#task-groups\" data-toggle=\"tab\") Task Groups\n %li\n %a(href=\"#config\" data-toggle=\"tab\") Config\n\n%div.col-xs-10\n %div.page-header\n %h1= jobName\n\n %div.tab-content\n %div.tab-pane.active#application-master\n %h2 Application Master\n %table.table.table-striped.table-bordered\n %tbody\n %tr\n %td.key Hostname\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{state.nodeHost}:#{state.nodeHttpPort.toString}\")= state.nodeHost\n %tr\n %td.key User\n %td= username\n %tr\n %td.key Tracking port\n %td= state.trackingPort.toString\n %tr\n %td.key RPC port\n %td= state.rpcPort.toString\n %tr\n %td.key Attempt ID\n %td= state.appAttemptId\n %tr\n %td.key Application master task ID\n %td= state.taskId\n %tr\n %td.key Application master container\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{state.nodeHost}:#{state.nodeHttpPort.toString}\/node\/containerlogs\/#{state.containerId.toString}\/#{username}\")= state.containerId.toString\n\n %div.tab-pane#containers\n %h2 Containers\n %table.table.table-bordered.table-striped\n %tr\n %tr\n %td.key Completed\n %td= state.completedTasks.toString\n %tr\n %td.key Needed\n %td= state.neededContainers.toString\n %tr\n %td.key Failed\n %td= state.failedContainers.toString\n %tr\n %td.key Released\n %td= state.releasedContainers.toString\n\n %h2 Running Containers\n %table.table.table-striped.table-bordered.tablesorter#containers-table\n %thead\n %tr\n %th Task Group\n %th Container\n %th Node\n %th Start Time\n %th Up Time\n %tbody\n - for((taskId, container) <- state.runningTasks)\n %tr\n %td #{taskId.toString}\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{container.nodeHttpAddress}\/node\/containerlogs\/#{container.id.toString}\/#{username}\")= container.id.toString\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{container.nodeHttpAddress}\")= container.nodeHttpAddress\n %td\n Start time: #{container.startTimeStr()}\n %td\n Up time: #{container.upTimeStr()}\n\n %div.tab-pane#task-groups\n %h2 Task Groups\n %table.table.table-striped.table-bordered\n %tbody\n %tr\n %td.key Total\n %td= state.taskCount.toString\n %tr\n %td.key Unclaimed\n %td= state.unclaimedTasks.size.toString\n %tr\n %td.key Finished\n %td= state.finishedTasks.size.toString\n\n %h3 TaskName Assignment\n %table.table.table-striped.table-bordered.tablesorter#taskids-table\n %thead\n %tr\n %th Task ID\n %th TaskName\n %th SystemStreamPartitions\n %th Container\n %tbody\n - for((taskId, taskNames) <- state.taskToTaskNames)\n - for((taskName, ssps) <- taskNames)\n %tr\n %td= taskId\n %td= taskName\n %td= ssps.map(_.toString).toList.sorted.mkString(\", \")\n %td\n - val container = state.runningTasks(taskId)\n %a(target=\"_blank\" href=\"http:\/\/#{container.nodeHttpAddress}\/node\/containerlogs\/#{container.id.toString}\/#{username}\")= container.id.toString\n\n %div.tab-pane#config\n %h2 Config\n %div.panel.panel-default\n %div.panel-heading\n %input.form-control#config-table-filter(type=\"text\" placeholder=\"Type '\/' to search\")\n %table.table.table-striped.table-bordered.tablesorter#config-table\n %thead\n %tr\n %th Key\n %th Value\n %tbody.searchable\n - for(entrySet <- new java.util.TreeMap[String, String](config.asInstanceOf[Map[String, String]]).entrySet)\n %tr\n %td.key= entrySet.getKey\n %td= entrySet.getValue\n\n :javascript\n $(document).ready(function() {\n \/\/ Persist tabs.\n if (location.hash !== '') {\n $('a[href=\"' + location.hash + '\"]').tab('show');\n }\n $('a[data-toggle=\"tab\"]').on('shown.bs.tab', function(e) {\n return location.hash = $(e.target).attr('href').substr(1);\n });\n\n \/\/ Make tables sortable.\n $('#containers-table').tablesorter();\n $('#taskids-table').tablesorter();\n $('#config-table').tablesorter();\n\n \/\/ Type '\/' to search.\n $(document).keyup(function(e) {\n if (e.keyCode == 191 && $('#config').is(':visible')) {\n $('#config-table-filter').focus();\n }\n });\n\n \/\/ Make config table searchable.\n $('#config-table-filter').keyup(function(e) {\n \/\/ Press ESC to exit search box.\n if (e.keyCode == 27) {\n $('#config-table-filter').blur();\n }\n var regex = new RegExp($(this).val(), 'i');\n $('.searchable tr').hide();\n $('.searchable tr').filter(function() {\n return regex.test($(this).text());\n }).show();\n });\n });\n","old_contents":"-#\n Licensed to the Apache Software Foundation (ASF) under one\n or more contributor license agreements. See the NOTICE file\n distributed with this work for additional information\n regarding copyright ownership. The ASF licenses this file\n to you under the Apache License, Version 2.0 (the\n \"License\"); you may not use this file except in compliance\n with the License. You may obtain a copy of the License at\n\n http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing,\n software distributed under the License is distributed on an\n \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n KIND, either express or implied. See the License for the\n specific language governing permissions and limitations\n under the License.\n-@ val state: org.apache.samza.job.yarn.SamzaAppMasterState\n-@ val config: scala.collection.immutable.TreeMap[String, String]\n-@ val rmHttpAddress: String\n-@ val jobName: String = config.get(\"job.name\").getOrElse(\"MISSING JOB NAME\")\n-@ val username: String = org.apache.hadoop.security.UserGroupInformation.getCurrentUser.getShortUserName\n- attributes(\"title\") = jobName\n\n%div.col-xs-2.menu\n %ul.nav.nav-pills.nav-stacked\n %li.active\n %a(href=\"#application-master\" data-toggle=\"tab\") Application Master\n %li\n %a(href=\"#containers\" data-toggle=\"tab\") Containers\n %li\n %a(href=\"#task-groups\" data-toggle=\"tab\") Task Groups\n %li\n %a(href=\"#config\" data-toggle=\"tab\") Config\n\n%div.col-xs-10\n %div.page-header\n %h1= jobName\n\n %div.tab-content\n %div.tab-pane.active#application-master\n %h2 Application Master\n %table.table.table-striped.table-bordered\n %tbody\n %tr\n %td.key Hostname\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{state.nodeHost}:#{state.nodeHttpPort.toString}\")= state.nodeHost\n %tr\n %td.key User\n %td= username\n %tr\n %td.key Tracking port\n %td= state.trackingPort.toString\n %tr\n %td.key RPC port\n %td= state.rpcPort.toString\n %tr\n %td.key Attempt ID\n %td= state.appAttemptId\n %tr\n %td.key Application master task ID\n %td= state.taskId\n %tr\n %td.key Application master container\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{state.nodeHost}:#{state.nodeHttpPort.toString}\/node\/containerlogs\/#{state.containerId.toString}\/#{username}\")= state.containerId.toString\n\n %div.tab-pane#containers\n %h2 Containers\n %table.table.table-bordered.table-striped\n %tr\n %tr\n %td.key Completed\n %td= state.completedTasks.toString\n %tr\n %td.key Needed\n %td= state.neededContainers.toString\n %tr\n %td.key Failed\n %td= state.failedContainers.toString\n %tr\n %td.key Released\n %td= state.releasedContainers.toString\n\n %h2 Running Containers\n %table.table.table-striped.table-bordered.tablesorter#containers-table\n %thead\n %tr\n %th Task Group\n %th Container\n %th Node\n %th Start Time\n %th Up Time\n %tbody\n - for((taskId, container) <- state.runningTasks)\n %tr\n %td #{taskId.toString}\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{container.nodeHttpAddress}\/node\/containerlogs\/#{container.id.toString}\/#{username}\")= container.id.toString\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{container.nodeHttpAddress}\")= container.nodeHttpAddress\n %td\n Start time: #{container.startTimeStr()}\n %td\n Up time: #{container.upTimeStr()}\n\n %div.tab-pane#task-groups\n %h2 Task Groups\n %table.table.table-striped.table-bordered\n %tbody\n %tr\n %td.key Total\n %td= state.taskCount.toString\n %tr\n %td.key Unclaimed\n %td= state.unclaimedTasks.size.toString\n %tr\n %td.key Finished\n %td= state.finishedTasks.size.toString\n\n %h3 TaskName Assignment\n %table.table.table-striped.table-bordered.tablesorter#taskids-table\n %thead\n %tr\n %th Task ID\n %th TaskName\n %th SystemStreamPartitions\n %th Container\n %tbody\n - for((taskId, taskNames) <- state.taskToTaskNames)\n - for((taskName, ssps) <- taskNames)\n %tr\n %td= taskId\n %td= taskName\n %td= ssps.map(_.toString).toList.sorted.mkString(\", \")\n %td\n - val container = state.runningTasks(taskId)\n %a(target=\"_blank\" href=\"http:\/\/#{container.nodeHttpAddress}\/node\/containerlogs\/#{container.id.toString}\/#{username}\")= container.id.toString\n\n %div.tab-pane#config\n %h2 Config\n %div.panel.panel-default\n %div.panel-heading\n %input.form-control#config-table-filter(type=\"text\" placeholder=\"Type '\/' to search\")\n %table.table.table-striped.table-bordered.tablesorter#config-table\n %thead\n %tr\n %th Key\n %th Value\n %tbody.searchable\n - for(entrySet <- new java.util.TreeMap[String, String](config.asInstanceOf[Map[String, String]]).entrySet)\n %tr\n %td.key= entrySet.getKey\n %td= entrySet.getValue\n\n :javascript\n $(document).ready(function() {\n $('#containers-table').tablesorter();\n $('#taskids-table').tablesorter();\n $('#config-table').tablesorter();\n\n \/\/ Type '\/' to search.\n $(document).keyup(function(e) {\n if (e.keyCode == 191 && $('#config').is(':visible')) {\n $('#config-table-filter').focus();\n }\n });\n\n $('#config-table-filter').keyup(function(e) {\n \/\/ Press ESC to exit search box.\n if (e.keyCode == 27) {\n $('#config-table-filter').blur();\n }\n var regex = new RegExp($(this).val(), 'i');\n $('.searchable tr').hide();\n $('.searchable tr').filter(function() {\n return regex.test($(this).text());\n }).show();\n });\n });\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"Scaml"} {"commit":"e07a9f1e9a45e0782d1cf668457e12ca7b45c283","subject":"Fix layout","message":"Fix layout\n","repos":"xitrum-framework\/xitrum,georgeOsdDev\/xitrum,caiiiycuk\/xitrum","old_file":"src\/main\/resources\/view\/layouts\/application.scaml","new_file":"src\/main\/resources\/view\/layouts\/application.scaml","new_contents":"!!!\n%html(xmlns=\"http:\/\/www.w3.org\/1999\/xhtml\" xml:lang=\"en\" lang=\"en\")\n %head\n %meta(content=\"text\/html; charset=utf-8\" http-equiv=\"content-type\")\n\n %title= at(\"title\")\n\n %link(type=\"image\/vnd.microsoft.icon\" rel=\"shortcut icon\" href=\"\/static\/img\/favicon.ico\")\n\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/960\/reset.css\")\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/960\/text.css\")\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/960\/960.css\")\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/application.css\")\n\n %script(type=\"text\/javascript\" src=\"\/static\/js\/jquery-1.4.2.min.js\")\n\n %body\n .container_12\n #header\n %h1 Colinh\n\n #content.grid_9\n != at(\"content_for_layout\")\n\n #menu.grid_3\n Menu goes here\n\n .clear\n\n #footer Powered by Colinh & Xitrum\n","old_contents":"!!!\n%html(xmlns=\"http:\/\/www.w3.org\/1999\/xhtml\" xml:lang=\"en\" lang=\"en\")\n %head\n %meta(content=\"text\/html; charset=utf-8\" http-equiv=\"content-type\")\n\n %title= at(\"title\")\n\n %link(type=\"image\/vnd.microsoft.icon\" rel=\"shortcut icon\" href=\"\/static\/img\/favicon.ico\")\n\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/960\/reset.css\")\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/960\/text.css\")\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/960\/960.css\")\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/application.css\")\n\n %script(type=\"text\/javascript\" src=\"\/static\/js\/jquery-1.4.2.min.js\")\n\n %body\n .container_12\n #header\n %h1 Colinh\n\n #content.container_9\n != at(\"content_for_layout\")\n\n #menu.container_3\n Menu goes here\n\n #footer Powered by Colinh & Xitrum\n","returncode":0,"stderr":"","license":"mit","lang":"Scaml"} {"commit":"5b253485c8e92e52a24dbd7721598c7604d9855a","subject":"SAMZA-396; add slash for search shortcut in AM UI","message":"SAMZA-396; add slash for search shortcut in AM UI\n","repos":"davidzchen\/samza,smartpcr\/samza,fredji97\/samza,fredji97\/samza,bharathkk\/samza,InnovaCo\/samza,vjagadish\/samza-clone,InnovaCo\/samza,YanjieGao\/samza,abhishekshivanna\/samza,Quantiply\/samza,bharathkk\/samza,apache\/samza,lhaiesp\/samza,smartpcr\/samza,zcan\/samza,savaki\/samza,nickpan47\/samza,bharathkk\/samza,Quantiply\/samza,InnovaCo\/samza,quantiply-fork\/samza,nickpan47\/samza,Quantiply\/samza,davidzchen\/samza,gustavoanatoly\/samza,gyeh\/samza,TiVo\/samza,nickpan47\/samza,YanjieGao\/samza,vjagadish\/samza-clone,hannesstockner\/samza,pubnub\/samza,abhishekshivanna\/samza,zcan\/samza,smartpcr\/samza,hannesstockner\/samza,YanjieGao\/samza,davidzchen\/samza,quantiply-fork\/samza,savaki\/samza,quantiply-fork\/samza,guozhangwang\/samza,apache\/samza,milinda\/samza,gyeh\/samza,lhaiesp\/samza,abhishekshivanna\/samza,hannesstockner\/samza,prateekm\/samza,abhishekshivanna\/samza,abhishekshivanna\/samza,gustavoanatoly\/samza,fredji97\/samza,TiVo\/samza,savaki\/samza,nickpan47\/samza,fredji97\/samza,zcan\/samza,zcan\/samza,guozhangwang\/samza,guozhangwang\/samza,milinda\/samza,davidzchen\/samza,apache\/samza,prateekm\/samza,milinda\/samza,bharathkk\/samza,pubnub\/samza,smartpcr\/samza,gyeh\/samza,TiVo\/samza,lhaiesp\/samza,guozhangwang\/samza,hannesstockner\/samza,pubnub\/samza,milinda\/samza,lhaiesp\/samza,TiVo\/samza,vjagadish\/samza-clone,vjagadish\/samza-clone,lhaiesp\/samza,apache\/samza,TiVo\/samza,gustavoanatoly\/samza,pubnub\/samza,prateekm\/samza,savaki\/samza,gustavoanatoly\/samza,prateekm\/samza,YanjieGao\/samza,fredji97\/samza,apache\/samza,InnovaCo\/samza,quantiply-fork\/samza,bharathkk\/samza,Quantiply\/samza,gyeh\/samza,prateekm\/samza","old_file":"samza-yarn\/src\/main\/resources\/scalate\/WEB-INF\/views\/index.scaml","new_file":"samza-yarn\/src\/main\/resources\/scalate\/WEB-INF\/views\/index.scaml","new_contents":"-#\n Licensed to the Apache Software Foundation (ASF) under one\n or more contributor license agreements. See the NOTICE file\n distributed with this work for additional information\n regarding copyright ownership. The ASF licenses this file\n to you under the Apache License, Version 2.0 (the\n \"License\"); you may not use this file except in compliance\n with the License. You may obtain a copy of the License at\n\n http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing,\n software distributed under the License is distributed on an\n \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n KIND, either express or implied. See the License for the\n specific language governing permissions and limitations\n under the License.\n-@ val state: org.apache.samza.job.yarn.SamzaAppMasterState\n-@ val config: scala.collection.immutable.TreeMap[String, String]\n-@ val rmHttpAddress: String\n-@ val jobName: String = config.get(\"job.name\").getOrElse(\"MISSING JOB NAME\")\n-@ val username: String = org.apache.hadoop.security.UserGroupInformation.getCurrentUser.getShortUserName\n- attributes(\"title\") = jobName\n\n%div.col-xs-2.menu\n %ul.nav.nav-pills.nav-stacked\n %li.active\n %a(href=\"#application-master\" data-toggle=\"tab\") Application Master\n %li\n %a(href=\"#containers\" data-toggle=\"tab\") Containers\n %li\n %a(href=\"#task-groups\" data-toggle=\"tab\") Task Groups\n %li\n %a(href=\"#config\" data-toggle=\"tab\") Config\n\n%div.col-xs-10\n %div.page-header\n %h1= jobName\n\n %div.tab-content\n %div.tab-pane.active#application-master\n %h2 Application Master\n %table.table.table-striped.table-bordered\n %tbody\n %tr\n %td.key Hostname\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{state.nodeHost}:#{state.nodeHttpPort.toString}\")= state.nodeHost\n %tr\n %td.key User\n %td= username\n %tr\n %td.key Tracking port\n %td= state.trackingPort.toString\n %tr\n %td.key RPC port\n %td= state.rpcPort.toString\n %tr\n %td.key Attempt ID\n %td= state.appAttemptId\n %tr\n %td.key Application master task ID\n %td= state.taskId\n %tr\n %td.key Application master container\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{state.nodeHost}:#{state.nodeHttpPort.toString}\/node\/containerlogs\/#{state.containerId.toString}\/#{username}\")= state.containerId.toString\n\n %div.tab-pane#containers\n %h2 Containers\n %table.table.table-bordered.table-striped\n %tr\n %tr\n %td.key Completed\n %td= state.completedTasks.toString\n %tr\n %td.key Needed\n %td= state.neededContainers.toString\n %tr\n %td.key Failed\n %td= state.failedContainers.toString\n %tr\n %td.key Released\n %td= state.releasedContainers.toString\n\n %h2 Running Containers\n %table.table.table-striped.table-bordered.tablesorter#containers-table\n %thead\n %tr\n %th Task Group\n %th Container\n %th Node\n %th Start Time\n %th Up Time\n %tbody\n - for((taskId, container) <- state.runningTasks)\n %tr\n %td #{taskId.toString}\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{container.nodeHttpAddress}\/node\/containerlogs\/#{container.id.toString}\/#{username}\")= container.id.toString\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{container.nodeHttpAddress}\")= container.nodeHttpAddress\n %td\n Start time: #{container.startTimeStr()}\n %td\n Up time: #{container.upTimeStr()}\n\n %div.tab-pane#task-groups\n %h2 Task Groups\n %table.table.table-striped.table-bordered\n %tbody\n %tr\n %td.key Total\n %td= state.taskCount.toString\n %tr\n %td.key Unclaimed\n %td= state.unclaimedTasks.size.toString\n %tr\n %td.key Finished\n %td= state.finishedTasks.size.toString\n\n %h3 TaskName Assignment\n %table.table.table-striped.table-bordered.tablesorter#taskids-table\n %thead\n %tr\n %th Task ID\n %th TaskName\n %th SystemStreamPartitions\n %th Container\n %tbody\n - for((taskId, taskNames) <- state.taskToTaskNames)\n - for((taskName, ssps) <- taskNames)\n %tr\n %td= taskId\n %td= taskName\n %td= ssps.map(_.toString).toList.sorted.mkString(\", \")\n %td\n - val container = state.runningTasks(taskId)\n %a(target=\"_blank\" href=\"http:\/\/#{container.nodeHttpAddress}\/node\/containerlogs\/#{container.id.toString}\/#{username}\")= container.id.toString\n\n %div.tab-pane#config\n %h2 Config\n %div.panel.panel-default\n %div.panel-heading\n %input.form-control#config-table-filter(type=\"text\" placeholder=\"Type '\/' to search\")\n %table.table.table-striped.table-bordered.tablesorter#config-table\n %thead\n %tr\n %th Key\n %th Value\n %tbody.searchable\n - for(entrySet <- new java.util.TreeMap[String, String](config.asInstanceOf[Map[String, String]]).entrySet)\n %tr\n %td.key= entrySet.getKey\n %td= entrySet.getValue\n\n :javascript\n $(document).ready(function() {\n $('#containers-table').tablesorter();\n $('#taskids-table').tablesorter();\n $('#config-table').tablesorter();\n\n \/\/ Type '\/' to search.\n $(document).keyup(function(e) {\n if (e.keyCode == 191 && $('#config').is(':visible')) {\n $('#config-table-filter').focus();\n }\n });\n\n $('#config-table-filter').keyup(function(e) {\n \/\/ Press ESC to exit search box.\n if (e.keyCode == 27) {\n $('#config-table-filter').blur();\n }\n var regex = new RegExp($(this).val(), 'i');\n $('.searchable tr').hide();\n $('.searchable tr').filter(function() {\n return regex.test($(this).text());\n }).show();\n });\n });\n","old_contents":"-#\n Licensed to the Apache Software Foundation (ASF) under one\n or more contributor license agreements. See the NOTICE file\n distributed with this work for additional information\n regarding copyright ownership. The ASF licenses this file\n to you under the Apache License, Version 2.0 (the\n \"License\"); you may not use this file except in compliance\n with the License. You may obtain a copy of the License at\n\n http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing,\n software distributed under the License is distributed on an\n \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n KIND, either express or implied. See the License for the\n specific language governing permissions and limitations\n under the License.\n-@ val state: org.apache.samza.job.yarn.SamzaAppMasterState\n-@ val config: scala.collection.immutable.TreeMap[String, String]\n-@ val rmHttpAddress: String\n-@ val jobName: String = config.get(\"job.name\").getOrElse(\"MISSING JOB NAME\")\n-@ val username: String = org.apache.hadoop.security.UserGroupInformation.getCurrentUser.getShortUserName\n- attributes(\"title\") = jobName\n\n%div.col-xs-2.menu\n %ul.nav.nav-pills.nav-stacked\n %li.active\n %a(href=\"#application-master\" data-toggle=\"tab\") Application Master\n %li\n %a(href=\"#containers\" data-toggle=\"tab\") Containers\n %li\n %a(href=\"#task-groups\" data-toggle=\"tab\") Task Groups\n %li\n %a(href=\"#config\" data-toggle=\"tab\") Config\n\n%div.col-xs-10\n %div.page-header\n %h1= jobName\n\n %div.tab-content\n %div.tab-pane.active#application-master\n %h2 Application Master\n %table.table.table-striped.table-bordered\n %tbody\n %tr\n %td.key Hostname\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{state.nodeHost}:#{state.nodeHttpPort.toString}\")= state.nodeHost\n %tr\n %td.key User\n %td= username\n %tr\n %td.key Tracking port\n %td= state.trackingPort.toString\n %tr\n %td.key RPC port\n %td= state.rpcPort.toString\n %tr\n %td.key Attempt ID\n %td= state.appAttemptId\n %tr\n %td.key Application master task ID\n %td= state.taskId\n %tr\n %td.key Application master container\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{state.nodeHost}:#{state.nodeHttpPort.toString}\/node\/containerlogs\/#{state.containerId.toString}\/#{username}\")= state.containerId.toString\n\n %div.tab-pane#containers\n %h2 Containers\n %table.table.table-bordered.table-striped\n %tr\n %tr\n %td.key Completed\n %td= state.completedTasks.toString\n %tr\n %td.key Needed\n %td= state.neededContainers.toString\n %tr\n %td.key Failed\n %td= state.failedContainers.toString\n %tr\n %td.key Released\n %td= state.releasedContainers.toString\n\n %h2 Running Containers\n %table.table.table-striped.table-bordered.tablesorter#containers-table\n %thead\n %tr\n %th Task Group\n %th Container\n %th Node\n %th Start Time\n %th Up Time\n %tbody\n - for((taskId, container) <- state.runningTasks)\n %tr\n %td #{taskId.toString}\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{container.nodeHttpAddress}\/node\/containerlogs\/#{container.id.toString}\/#{username}\")= container.id.toString\n %td\n %a(target=\"_blank\" href=\"http:\/\/#{container.nodeHttpAddress}\")= container.nodeHttpAddress\n %td\n Start time: #{container.startTimeStr()}\n %td\n Up time: #{container.upTimeStr()}\n\n %div.tab-pane#task-groups\n %h2 Task Groups\n %table.table.table-striped.table-bordered\n %tbody\n %tr\n %td.key Total\n %td= state.taskCount.toString\n %tr\n %td.key Unclaimed\n %td= state.unclaimedTasks.size.toString\n %tr\n %td.key Finished\n %td= state.finishedTasks.size.toString\n\n %h3 TaskName Assignment\n %table.table.table-striped.table-bordered.tablesorter#taskids-table\n %thead\n %tr\n %th Task ID\n %th TaskName\n %th SystemStreamPartitions\n %th Container\n %tbody\n - for((taskId, taskNames) <- state.taskToTaskNames)\n - for((taskName, ssps) <- taskNames)\n %tr\n %td= taskId\n %td= taskName\n %td= ssps.map(_.toString).toList.sorted.mkString(\", \")\n %td\n - val container = state.runningTasks(taskId)\n %a(target=\"_blank\" href=\"http:\/\/#{container.nodeHttpAddress}\/node\/containerlogs\/#{container.id.toString}\/#{username}\")= container.id.toString\n\n %div.tab-pane#config\n %h2 Config\n %div.panel.panel-default\n %div.panel-heading\n %input.form-control#config-table-filter(type=\"text\" placeholder=\"Filter\")\n %table.table.table-striped.table-bordered.tablesorter#config-table\n %thead\n %tr\n %th Key\n %th Value\n %tbody.searchable\n - for(entrySet <- new java.util.TreeMap[String, String](config.asInstanceOf[Map[String, String]]).entrySet)\n %tr\n %td.key= entrySet.getKey\n %td= entrySet.getValue\n\n :javascript\n $(document).ready(function() {\n $(\"#containers-table\").tablesorter();\n $(\"#taskids-table\").tablesorter();\n $(\"#config-table\").tablesorter();\n $(\"#config-table-filter\").keyup(function() {\n var regex = new RegExp($(this).val(), 'i');\n $('.searchable tr').hide();\n $('.searchable tr').filter(function() {\n return regex.test($(this).text());\n }).show();\n });\n });\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"Scaml"} {"commit":"04c9fe1a03079194d5439aef6d87e6e2b5f96497","subject":"tooltip test","message":"tooltip test\n","repos":"gregoryboucher\/resume-app,gregoryboucher\/resume-app","old_file":"src\/main\/webapp\/WEB-INF\/templates\/views\/resume-layout.scaml","new_file":"src\/main\/webapp\/WEB-INF\/templates\/views\/resume-layout.scaml","new_contents":"- attributes(\"title\") = \"More Complex\"\n- attributes(\"headline\") = \"Calling another tempalte\"\n\n%a{:href => \"#\", :title => \"First Tooltip\", \"data-toggle\" => \"tooltip\"} Tooltip\n\n.box\n\t- render(\"\/views\/show-table.scaml\")","old_contents":"- attributes(\"title\") = \"More Complex\"\n- attributes(\"headline\") = \"Calling another tempalte\"\n\n%p\n\tThe Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque at est erat. Fusce ut justo sit amet ante hendrerit adipiscing. Duis lobortis urna nec \tluctus pharetra. Fusce ac odio vel lorem rutrum mattis. Sed id odio et nisl placerat hendrerit ac non risus. Phasellus tincidunt massa ut ullamcorper \tconvallis. Nulla facilisi.\n%p\t\n\tSed facilisis id dui ac tempor. Nunc malesuada commodo elit, lacinia ullamcorper lorem ornare ut. Praesent nec condimentum velit. Sed faucibus mauris \tjusto, vel euismod lectus dapibus in. Etiam tincidunt ullamcorper ligula, vel laoreet tellus rutrum ac. Duis sed feugiat erat, a hendrerit ipsum. Aenean \tmassa tellus, tristique ac arcu vitae, lobortis vulputate urna. Nulla ullamcorper velit in dolor hendrerit lacinia. Ut ut turpis eros. In rhoncus \tcondimentum sem. Aenean non risus vel leo semper tempor non a quam. Maecenas molestie fringilla tempor. Nullam adipiscing lacus id velit vehicula, nec \trutrum lacus consectetur. Sed eu malesuada mi.\n%p\n\tInteger vitae massa eu quam tincidunt accumsan. Cras tristique fermentum blandit. Cras ultricies egestas pharetra. Nunc eget tincidunt nulla. Cras ac \tlectus quis mi luctus consectetur. Mauris id libero in eros cursus tincidunt eu quis felis. Vestibulum a vestibulum mi. Praesent id tincidunt lacus. \tNunc elit nisi, commodo ut mattis vitae, posuere nec est. Etiam dapibus orci in cursus pellentesque. Phasellus vitae felis scelerisque, accumsan erat \tsed, egestas magna. Aliquam condimentum, ipsum in commodo sagittis, sapien leo faucibus magna, vel ultrices tellus enim et mauris. Fusce rutrum sit amet \trisus at consequat. Cras non varius arcu. Suspendisse dictum, sem in dignissim lobortis, neque enim accumsan justo, eu commodo lacus lorem ut turpis.\n%p\n\tSed est diam, commodo vitae venenatis non, commodo eget libero. Pellentesque sodales consectetur faucibus. Duis tincidunt sodales velit eget venenatis. \tIn magna purus, dapibus sed enim auctor, facilisis porta orci. Donec nec velit eget dui dapibus fermentum. Nulla vitae dolor urna. Maecenas ultricies \tsem congue mauris commodo vehicula. Sed mollis adipiscing augue, a laoreet elit feugiat non. Vivamus bibendum vestibulum est sit amet sagittis. Maecenas \tvestibulum tellus ac eros luctus, quis vulputate neque viverra. Nulla sed lacus condimentum, euismod neque ac, egestas magna. Aliquam venenatis ornare leo, vestibulum eleifend enim sagittis eget. Sed sagittis massa in scelerisque lacinia. Donec nec mattis lorem.\n%p\t\n\tSed facilisis id dui ac tempor. Nunc malesuada commodo elit, lacinia ullamcorper lorem ornare ut. Praesent nec condimentum velit. Sed faucibus mauris \tjusto, vel euismod lectus dapibus in. Etiam tincidunt ullamcorper ligula, vel laoreet tellus rutrum ac. Duis sed feugiat erat, a hendrerit ipsum. Aenean \tmassa tellus, tristique ac arcu vitae, lobortis vulputate urna. Nulla ullamcorper velit in dolor hendrerit lacinia. Ut ut turpis eros. In rhoncus \tcondimentum sem. Aenean non risus vel leo semper tempor non a quam. Maecenas molestie fringilla tempor. Nullam adipiscing lacus id velit vehicula, nec \trutrum lacus consectetur. Sed eu malesuada mi.\n%p\n\tInteger vitae massa eu quam tincidunt accumsan. Cras tristique fermentum blandit. Cras ultricies egestas pharetra. Nunc eget tincidunt nulla. Cras ac \tlectus quis mi luctus consectetur. Mauris id libero in eros cursus tincidunt eu quis felis. Vestibulum a vestibulum mi. Praesent id tincidunt lacus. \tNunc elit nisi, commodo ut mattis vitae, posuere nec est. Etiam dapibus orci in cursus pellentesque. Phasellus vitae felis scelerisque, accumsan erat \tsed, egestas magna. Aliquam condimentum, ipsum in commodo sagittis, sapien leo faucibus magna, vel ultrices tellus enim et mauris. Fusce rutrum sit amet \trisus at consequat. Cras non varius arcu. Suspendisse dictum, sem in dignissim lobortis, neque enim accumsan justo, eu commodo lacus lorem ut turpis.\n%p\n\tSed est diam, commodo vitae venenatis non, commodo eget libero. Pellentesque sodales consectetur faucibus. Duis tincidunt sodales velit eget venenatis. \tIn magna purus, dapibus sed enim auctor, facilisis porta orci. Donec nec velit eget dui dapibus fermentum. Nulla vitae dolor urna. Maecenas ultricies \tsem congue mauris commodo vehicula. Sed mollis adipiscing augue, a laoreet elit feugiat non. Vivamus bibendum vestibulum est sit amet sagittis. Maecenas \tvestibulum tellus ac eros luctus, quis vulputate neque viverra. Nulla sed lacus condimentum, euismod neque ac, egestas magna. Aliquam venenatis ornare leo, vestibulum eleifend enim sagittis eget. Sed sagittis massa in scelerisque lacinia. Donec nec mattis lorem.\n.box\n\t- render(\"\/views\/show-table.scaml\")","returncode":0,"stderr":"","license":"mit","lang":"Scaml"} {"commit":"ad5e2f22fdbf3a1db4f84785b440ec1250355970","subject":"CAMEL-3991. Fix for href generation","message":"CAMEL-3991. Fix for href generation\n\ngit-svn-id: 11f3c9e1d08a13a4be44fe98a6d63a9c00f6ab23@1124497 13f79535-47bb-0310-9956-ffa450edef68\n","repos":"jmandawg\/camel,neoramon\/camel,josefkarasek\/camel,pmoerenhout\/camel,skinzer\/camel,mzapletal\/camel,pax95\/camel,anoordover\/camel,chirino\/camel,logzio\/camel,gnodet\/camel,grange74\/camel,rmarting\/camel,satishgummadelli\/camel,davidkarlsen\/camel,gautric\/camel,jpav\/camel,w4tson\/camel,mgyongyosi\/camel,haku\/camel,RohanHart\/camel,CandleCandle\/camel,lburgazzoli\/camel,davidwilliams1978\/camel,mzapletal\/camel,josefkarasek\/camel,duro1\/camel,cunningt\/camel,rmarting\/camel,JYBESSON\/camel,mohanaraosv\/camel,tkopczynski\/camel,ekprayas\/camel,nikvaessen\/camel,lburgazzoli\/camel,satishgummadelli\/camel,Thopap\/camel,jarst\/camel,w4tson\/camel,dvankleef\/camel,stravag\/camel,lburgazzoli\/apache-camel,akhettar\/camel,koscejev\/camel,tdiesler\/camel,davidwilliams1978\/camel,NetNow\/camel,coderczp\/camel,gnodet\/camel,rparree\/camel,arnaud-deprez\/camel,royopa\/camel,snurmine\/camel,eformat\/camel,oalles\/camel,duro1\/camel,jlpedrosa\/camel,yuruki\/camel,tadayosi\/camel,allancth\/camel,JYBESSON\/camel,CandleCandle\/camel,scranton\/camel,bgaudaen\/camel,nicolaferraro\/camel,dvankleef\/camel,kevinearls\/camel,mohanaraosv\/camel,dmvolod\/camel,grgrzybek\/camel,ullgren\/camel,borcsokj\/camel,woj-i\/camel,allancth\/camel,bgaudaen\/camel,oscerd\/camel,MrCoder\/camel,jollygeorge\/camel,neoramon\/camel,gilfernandes\/camel,chirino\/camel,drsquidop\/camel,lowwool\/camel,dvankleef\/camel,sverkera\/camel,qst-jdc-labs\/camel,trohovsky\/camel,dpocock\/camel,dsimansk\/camel,sverkera\/camel,YMartsynkevych\/camel,sebi-hgdata\/camel,allancth\/camel,hqstevenson\/camel,ramonmaruko\/camel,dpocock\/camel,yogamaha\/camel,adessaigne\/camel,MohammedHammam\/camel,bhaveshdt\/camel,lburgazzoli\/apache-camel,rparree\/camel,borcsokj\/camel,CandleCandle\/camel,logzio\/camel,jarst\/camel,nboukhed\/camel,jlpedrosa\/camel,pkletsko\/camel,stalet\/camel,woj-i\/camel,engagepoint\/camel,yury-vashchyla\/camel,sirlatrom\/camel,trohovsky\/camel,scranton\/camel,askannon\/camel,kevinearls\/camel,dpocock\/camel,tadayosi\/camel,iweiss\/camel,davidwilliams1978\/camel,bgaudaen\/camel,akhettar\/camel,royopa\/camel,tlehoux\/camel,cunningt\/camel,YoshikiHigo\/camel,grgrzybek\/camel,YoshikiHigo\/camel,grange74\/camel,satishgummadelli\/camel,tdiesler\/camel,josefkarasek\/camel,royopa\/camel,ekprayas\/camel,mike-kukla\/camel,chanakaudaya\/camel,gautric\/camel,CandleCandle\/camel,woj-i\/camel,davidkarlsen\/camel,DariusX\/camel,bfitzpat\/camel,sirlatrom\/camel,Fabryprog\/camel,anton-k11\/camel,dvankleef\/camel,mnki\/camel,eformat\/camel,noelo\/camel,arnaud-deprez\/camel,haku\/camel,ssharma\/camel,nboukhed\/camel,mnki\/camel,lburgazzoli\/camel,driseley\/camel,jollygeorge\/camel,MohammedHammam\/camel,nicolaferraro\/camel,mike-kukla\/camel,lowwool\/camel,driseley\/camel,YMartsynkevych\/camel,adessaigne\/camel,jameszkw\/camel,grange74\/camel,snadakuduru\/camel,pkletsko\/camel,prashant2402\/camel,igarashitm\/camel,sebi-hgdata\/camel,joakibj\/camel,stalet\/camel,chanakaudaya\/camel,lburgazzoli\/camel,tarilabs\/camel,sabre1041\/camel,jpav\/camel,gilfernandes\/camel,gyc567\/camel,veithen\/camel,sebi-hgdata\/camel,veithen\/camel,snadakuduru\/camel,ullgren\/camel,partis\/camel,yuruki\/camel,erwelch\/camel,neoramon\/camel,duro1\/camel,ekprayas\/camel,logzio\/camel,snurmine\/camel,chirino\/camel,snadakuduru\/camel,oalles\/camel,lowwool\/camel,satishgummadelli\/camel,adessaigne\/camel,brreitme\/camel,grange74\/camel,gilfernandes\/camel,jarst\/camel,oscerd\/camel,aaronwalker\/camel,jmandawg\/camel,nboukhed\/camel,lasombra\/camel,mgyongyosi\/camel,grange74\/camel,Thopap\/camel,jlpedrosa\/camel,ge0ffrey\/camel,scranton\/camel,chanakaudaya\/camel,acartapanis\/camel,DariusX\/camel,acartapanis\/camel,nikhilvibhav\/camel,atoulme\/camel,jmandawg\/camel,tdiesler\/camel,dsimansk\/camel,aaronwalker\/camel,alvinkwekel\/camel,YMartsynkevych\/camel,mzapletal\/camel,mcollovati\/camel,engagepoint\/camel,davidwilliams1978\/camel,sabre1041\/camel,partis\/camel,hqstevenson\/camel,gyc567\/camel,isavin\/camel,satishgummadelli\/camel,driseley\/camel,prashant2402\/camel,ge0ffrey\/camel,nikhilvibhav\/camel,isururanawaka\/camel,gnodet\/camel,eformat\/camel,coderczp\/camel,nikvaessen\/camel,tlehoux\/camel,logzio\/camel,jmandawg\/camel,mgyongyosi\/camel,salikjan\/camel,engagepoint\/camel,brreitme\/camel,ramonmaruko\/camel,objectiser\/camel,isavin\/camel,brreitme\/camel,christophd\/camel,bgaudaen\/camel,driseley\/camel,veithen\/camel,mike-kukla\/camel,lowwool\/camel,kevinearls\/camel,kevinearls\/camel,hqstevenson\/camel,stalet\/camel,JYBESSON\/camel,askannon\/camel,FingolfinTEK\/camel,FingolfinTEK\/camel,sverkera\/camel,rparree\/camel,jpav\/camel,arnaud-deprez\/camel,tadayosi\/camel,pax95\/camel,hqstevenson\/camel,scranton\/camel,yuruki\/camel,lasombra\/camel,tlehoux\/camel,oscerd\/camel,jlpedrosa\/camel,salikjan\/camel,rparree\/camel,dvankleef\/camel,objectiser\/camel,coderczp\/camel,manuelh9r\/camel,acartapanis\/camel,rmarting\/camel,scranton\/camel,ssharma\/camel,jlpedrosa\/camel,Fabryprog\/camel,sirlatrom\/camel,allancth\/camel,brreitme\/camel,zregvart\/camel,veithen\/camel,stravag\/camel,anton-k11\/camel,edigrid\/camel,bfitzpat\/camel,jollygeorge\/camel,yury-vashchyla\/camel,askannon\/camel,objectiser\/camel,acartapanis\/camel,tkopczynski\/camel,iweiss\/camel,JYBESSON\/camel,royopa\/camel,MrCoder\/camel,satishgummadelli\/camel,bfitzpat\/camel,mcollovati\/camel,apache\/camel,gilfernandes\/camel,manuelh9r\/camel,JYBESSON\/camel,duro1\/camel,pplatek\/camel,coderczp\/camel,pplatek\/camel,apache\/camel,engagepoint\/camel,DariusX\/camel,mnki\/camel,lburgazzoli\/apache-camel,nboukhed\/camel,RohanHart\/camel,tarilabs\/camel,CandleCandle\/camel,duro1\/camel,curso007\/camel,eformat\/camel,bdecoste\/camel,bfitzpat\/camel,manuelh9r\/camel,Thopap\/camel,chirino\/camel,atoulme\/camel,bdecoste\/camel,askannon\/camel,rparree\/camel,maschmid\/camel,jameszkw\/camel,RohanHart\/camel,pplatek\/camel,curso007\/camel,Fabryprog\/camel,edigrid\/camel,trohovsky\/camel,RohanHart\/camel,allancth\/camel,manuelh9r\/camel,davidwilliams1978\/camel,adessaigne\/camel,tkopczynski\/camel,zregvart\/camel,sverkera\/camel,bdecoste\/camel,dpocock\/camel,pmoerenhout\/camel,grgrzybek\/camel,jonmcewen\/camel,arnaud-deprez\/camel,gautric\/camel,sabre1041\/camel,eformat\/camel,yogamaha\/camel,cunningt\/camel,pkletsko\/camel,curso007\/camel,sirlatrom\/camel,noelo\/camel,ramonmaruko\/camel,snurmine\/camel,logzio\/camel,isururanawaka\/camel,cunningt\/camel,tadayosi\/camel,lasombra\/camel,FingolfinTEK\/camel,adessaigne\/camel,mzapletal\/camel,woj-i\/camel,oscerd\/camel,tdiesler\/camel,grgrzybek\/camel,koscejev\/camel,ssharma\/camel,skinzer\/camel,noelo\/camel,tarilabs\/camel,jkorab\/camel,gyc567\/camel,dkhanolkar\/camel,NetNow\/camel,YMartsynkevych\/camel,mnki\/camel,tarilabs\/camel,bhaveshdt\/camel,curso007\/camel,skinzer\/camel,lburgazzoli\/apache-camel,tarilabs\/camel,bgaudaen\/camel,CodeSmell\/camel,oscerd\/camel,joakibj\/camel,haku\/camel,ssharma\/camel,jamesnetherton\/camel,YoshikiHigo\/camel,tkopczynski\/camel,gyc567\/camel,lburgazzoli\/apache-camel,jkorab\/camel,trohovsky\/camel,CodeSmell\/camel,driseley\/camel,isururanawaka\/camel,NetNow\/camel,arnaud-deprez\/camel,ekprayas\/camel,bdecoste\/camel,MrCoder\/camel,lowwool\/camel,borcsokj\/camel,onders86\/camel,nikvaessen\/camel,FingolfinTEK\/camel,yuruki\/camel,MrCoder\/camel,ge0ffrey\/camel,jonmcewen\/camel,dpocock\/camel,prashant2402\/camel,neoramon\/camel,adessaigne\/camel,joakibj\/camel,NickCis\/camel,mohanaraosv\/camel,cunningt\/camel,askannon\/camel,mike-kukla\/camel,gautric\/camel,jpav\/camel,drsquidop\/camel,onders86\/camel,noelo\/camel,iweiss\/camel,dvankleef\/camel,aaronwalker\/camel,edigrid\/camel,nikvaessen\/camel,gilfernandes\/camel,jamesnetherton\/camel,borcsokj\/camel,pplatek\/camel,jameszkw\/camel,punkhorn\/camel-upstream,oalles\/camel,RohanHart\/camel,stravag\/camel,nikvaessen\/camel,koscejev\/camel,drsquidop\/camel,grange74\/camel,stalet\/camel,engagepoint\/camel,jamesnetherton\/camel,pplatek\/camel,zregvart\/camel,anoordover\/camel,maschmid\/camel,igarashitm\/camel,snurmine\/camel,maschmid\/camel,jonmcewen\/camel,alvinkwekel\/camel,aaronwalker\/camel,christophd\/camel,brreitme\/camel,tdiesler\/camel,jpav\/camel,jameszkw\/camel,YoshikiHigo\/camel,yogamaha\/camel,apache\/camel,ssharma\/camel,NickCis\/camel,dkhanolkar\/camel,scranton\/camel,rmarting\/camel,partis\/camel,ekprayas\/camel,neoramon\/camel,jkorab\/camel,bfitzpat\/camel,stravag\/camel,acartapanis\/camel,mzapletal\/camel,drsquidop\/camel,woj-i\/camel,atoulme\/camel,duro1\/camel,jarst\/camel,isavin\/camel,trohovsky\/camel,ekprayas\/camel,gyc567\/camel,igarashitm\/camel,zregvart\/camel,anoordover\/camel,sverkera\/camel,lburgazzoli\/camel,qst-jdc-labs\/camel,maschmid\/camel,bhaveshdt\/camel,igarashitm\/camel,sabre1041\/camel,joakibj\/camel,anton-k11\/camel,rmarting\/camel,royopa\/camel,chanakaudaya\/camel,Thopap\/camel,ge0ffrey\/camel,skinzer\/camel,pkletsko\/camel,tlehoux\/camel,snurmine\/camel,NetNow\/camel,yuruki\/camel,tadayosi\/camel,jpav\/camel,pax95\/camel,tlehoux\/camel,objectiser\/camel,dsimansk\/camel,hqstevenson\/camel,mgyongyosi\/camel,RohanHart\/camel,onders86\/camel,jarst\/camel,erwelch\/camel,anton-k11\/camel,anoordover\/camel,davidkarlsen\/camel,curso007\/camel,gautric\/camel,MohammedHammam\/camel,snadakuduru\/camel,sirlatrom\/camel,dsimansk\/camel,alvinkwekel\/camel,gnodet\/camel,tkopczynski\/camel,brreitme\/camel,akhettar\/camel,jonmcewen\/camel,partis\/camel,mcollovati\/camel,sebi-hgdata\/camel,pmoerenhout\/camel,MrCoder\/camel,chirino\/camel,DariusX\/camel,YMartsynkevych\/camel,grgrzybek\/camel,onders86\/camel,stalet\/camel,bgaudaen\/camel,mike-kukla\/camel,w4tson\/camel,mzapletal\/camel,bhaveshdt\/camel,coderczp\/camel,johnpoth\/camel,Thopap\/camel,FingolfinTEK\/camel,joakibj\/camel,CodeSmell\/camel,yury-vashchyla\/camel,pmoerenhout\/camel,sabre1041\/camel,nboukhed\/camel,partis\/camel,skinzer\/camel,neoramon\/camel,jamesnetherton\/camel,isururanawaka\/camel,johnpoth\/camel,jonmcewen\/camel,gilfernandes\/camel,maschmid\/camel,punkhorn\/camel-upstream,jmandawg\/camel,stravag\/camel,hqstevenson\/camel,mohanaraosv\/camel,cunningt\/camel,davidkarlsen\/camel,veithen\/camel,kevinearls\/camel,mike-kukla\/camel,joakibj\/camel,haku\/camel,aaronwalker\/camel,lburgazzoli\/apache-camel,dmvolod\/camel,dkhanolkar\/camel,christophd\/camel,erwelch\/camel,snadakuduru\/camel,MohammedHammam\/camel,drsquidop\/camel,tlehoux\/camel,lasombra\/camel,kevinearls\/camel,haku\/camel,acartapanis\/camel,MohammedHammam\/camel,ullgren\/camel,dsimansk\/camel,sverkera\/camel,atoulme\/camel,apache\/camel,pax95\/camel,christophd\/camel,pplatek\/camel,driseley\/camel,nikvaessen\/camel,snurmine\/camel,sabre1041\/camel,koscejev\/camel,erwelch\/camel,bdecoste\/camel,dmvolod\/camel,igarashitm\/camel,royopa\/camel,logzio\/camel,pkletsko\/camel,MrCoder\/camel,atoulme\/camel,jollygeorge\/camel,jamesnetherton\/camel,woj-i\/camel,veithen\/camel,w4tson\/camel,rparree\/camel,dsimansk\/camel,qst-jdc-labs\/camel,grgrzybek\/camel,jkorab\/camel,dkhanolkar\/camel,NetNow\/camel,dmvolod\/camel,stravag\/camel,ramonmaruko\/camel,koscejev\/camel,Fabryprog\/camel,atoulme\/camel,maschmid\/camel,davidwilliams1978\/camel,dmvolod\/camel,mcollovati\/camel,anton-k11\/camel,w4tson\/camel,oalles\/camel,iweiss\/camel,allancth\/camel,jkorab\/camel,tdiesler\/camel,haku\/camel,punkhorn\/camel-upstream,nicolaferraro\/camel,jmandawg\/camel,christophd\/camel,bhaveshdt\/camel,isururanawaka\/camel,johnpoth\/camel,oalles\/camel,arnaud-deprez\/camel,chirino\/camel,dmvolod\/camel,iweiss\/camel,YoshikiHigo\/camel,lowwool\/camel,onders86\/camel,sebi-hgdata\/camel,jollygeorge\/camel,yury-vashchyla\/camel,rmarting\/camel,dkhanolkar\/camel,FingolfinTEK\/camel,bdecoste\/camel,josefkarasek\/camel,ge0ffrey\/camel,johnpoth\/camel,coderczp\/camel,qst-jdc-labs\/camel,prashant2402\/camel,oscerd\/camel,anton-k11\/camel,chanakaudaya\/camel,JYBESSON\/camel,drsquidop\/camel,manuelh9r\/camel,lburgazzoli\/camel,gyc567\/camel,logzio\/camel,nboukhed\/camel,edigrid\/camel,dkhanolkar\/camel,borcsokj\/camel,snadakuduru\/camel,pmoerenhout\/camel,yogamaha\/camel,MohammedHammam\/camel,eformat\/camel,YoshikiHigo\/camel,dpocock\/camel,askannon\/camel,yuruki\/camel,mgyongyosi\/camel,yury-vashchyla\/camel,christophd\/camel,jarst\/camel,mnki\/camel,chanakaudaya\/camel,ramonmaruko\/camel,josefkarasek\/camel,bfitzpat\/camel,prashant2402\/camel,anoordover\/camel,punkhorn\/camel-upstream,pax95\/camel,NetNow\/camel,qst-jdc-labs\/camel,akhettar\/camel,prashant2402\/camel,noelo\/camel,mohanaraosv\/camel,curso007\/camel,anoordover\/camel,NickCis\/camel,manuelh9r\/camel,pmoerenhout\/camel,trohovsky\/camel,qst-jdc-labs\/camel,w4tson\/camel,mnki\/camel,gnodet\/camel,CandleCandle\/camel,alvinkwekel\/camel,sirlatrom\/camel,sebi-hgdata\/camel,onders86\/camel,bhaveshdt\/camel,jameszkw\/camel,Thopap\/camel,yury-vashchyla\/camel,nikhilvibhav\/camel,lasombra\/camel,tadayosi\/camel,skinzer\/camel,koscejev\/camel,lasombra\/camel,stalet\/camel,akhettar\/camel,NickCis\/camel,gautric\/camel,jonmcewen\/camel,borcsokj\/camel,partis\/camel,ramonmaruko\/camel,johnpoth\/camel,jamesnetherton\/camel,yogamaha\/camel,mohanaraosv\/camel,iweiss\/camel,pax95\/camel,pplatek\/camel,ullgren\/camel,CodeSmell\/camel,erwelch\/camel,igarashitm\/camel,erwelch\/camel,josefkarasek\/camel,isavin\/camel,jkorab\/camel,aaronwalker\/camel,edigrid\/camel,apache\/camel,tkopczynski\/camel,yogamaha\/camel,tarilabs\/camel,noelo\/camel,jameszkw\/camel,isavin\/camel,edigrid\/camel,nicolaferraro\/camel,isururanawaka\/camel,isavin\/camel,ge0ffrey\/camel,NickCis\/camel,akhettar\/camel,NickCis\/camel,johnpoth\/camel,apache\/camel,mgyongyosi\/camel,YMartsynkevych\/camel,ssharma\/camel,oalles\/camel,nikhilvibhav\/camel,pkletsko\/camel,jlpedrosa\/camel,jollygeorge\/camel","old_file":"components\/camel-web\/src\/main\/webapp\/WEB-INF\/scalate\/layouts\/default.scaml","new_file":"components\/camel-web\/src\/main\/webapp\/WEB-INF\/scalate\/layouts\/default.scaml","new_contents":"-#\n-# Copyright (C) 2009-2010 the original author or authors.\n-# See the notice.md file distributed with this work for additional\n-# information regarding copyright ownership.\n-#\n-# Licensed under the Apache License, Version 2.0 (the \"License\");\n-# you may not use this file except in compliance with the License.\n-# You may obtain a copy of the License at\n-#\n-# http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n-#\n-# Unless required by applicable law or agreed to in writing, software\n-# distributed under the License is distributed on an \"AS IS\" BASIS,\n-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n-# See the License for the specific language governing permissions and\n-# limitations under the License.\n-#\n\n!!! Basic\n-@ var body: String\n-@ var title : String = \"Camel Web Console\"\n- response.setContentType(\"text\/html\") \n%html(lang=\"en\")\n %head\n %meta(http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\")\n %meta(name=\"description\" content=\"Apache Camel Console\")\n %meta(name=\"keywords\" content=\"camel,eip,web\")\n\n = include(\"\/org\/fusesource\/scalate\/console\/console_head.scaml\")\n\n %link(href={uri(\"\/css\/site.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href={uri(\"\/css\/scalate\/console.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href={uri(\"\/css\/sorttable.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href={uri(\"\/css\/type-settings.css\")} rel=\"stylesheet\" type=\"text\/css\")\n\n\n - if (attributes.get(\"noJavaScript\").isEmpty)\n %script(src={uri(\"\/js\/common.js\")} type=\"text\/javascript\")\n %script(src={uri(\"\/js\/css.js\")} type=\"text\/javascript\")\n %script(src={uri(\"\/js\/standardista-table-sorting.js\")} type=\"text\/javascript\")\n\n %title\n = title\n \n %body\n .white_box\n .header\n .header_l\n .header_r\n .content\n .content_l\n .content_r\n %div\n \/ Banner\n #asf_logo\n #activemq_logo\n %a{:href => \"http:\/\/camel.apache.org\/\", :style => \"float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;\", :title => \"a powerful open source integration framework based on known Enterprise Integration Patterns with powerful Bean Integration\"} Camel\n %a{:href => \"http:\/\/www.apache.org\/\", :style => \"float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;\", :title => \"The Apache Software Foundation\"} ASF\n .top_red_bar\n #site-breadcrumbs\n - if (requestUri.startsWith(\"\/index\"))\n %span Home\n - else\n %a{:href => {uri(\"\/index\")}, :title => \"Home\"} Home\n |\n %a{:href => {uri(\"\/endpoints\")}, :title => \"View current endpoints or create new ones\"} Endpoints\n |\n %a{:href => {uri(\"\/routes\")}, :title => \"View current routes\"} Routes\n #site-quicklinks\n %P\n %a{:href => \"http:\/\/camel.apache.org\/support.html\", :title => \"Get help and support using Apache Camel\"} Support\n\n %table{:border => \"0\"}\n %tbody\n %tr\n %td{:style => \"overflow:hidden;\", :valign => \"top\", :width => \"100%\"}\n .body-content\n !~~ body\n %td{:valign => \"top\"}\n .navigation\n .navigation_bottomon_top\n .navigation_bottom\n %H3 Useful Links\n %ul.alternate{:type => \"square\"}\n %li\n %a{:href => \"http:\/\/camel.apache.org\/documentation.html\", :title => \"a powerful open source integration framework based on known Enterprise Integration Patterns with powerful Bean Integration\"} Documentation\n %li\n %a{:href => \"http:\/\/camel.apache.org\/web-console.html\", :title => \"more help on using the Web Console\"} Console Help\n %li\n %a{:href => \"http:\/\/camel.apache.org\/faq.html\"} FAQ\n %li\n %a{:href => {uri(\"\/api\")}, :title => \"View the REST API details\"} API\n %li\n %a{:href => \"http:\/\/camel.apache.org\/download.html\"} Downloads\n %li\n %a{:href => \"http:\/\/camel.apache.org\/discussion-forums.html\"} Forums\n .bottom_red_bar\n .black_box\n .footer\n .footer_l\n .footer_r\n %div\n Copyright 2005-2011 The Apache Software Foundation.\n (\n %a{:href => \"?printable=true\"}> printable version\n )\n = include(\"\/org\/fusesource\/scalate\/console\/console.scaml\")\n\n .design_attribution\n %a{:href => \"http:\/\/hiramchirino.com\/\"} Graphic Design By Hiram ","old_contents":"-#\n-# Copyright (C) 2009-2010 the original author or authors.\n-# See the notice.md file distributed with this work for additional\n-# information regarding copyright ownership.\n-#\n-# Licensed under the Apache License, Version 2.0 (the \"License\");\n-# you may not use this file except in compliance with the License.\n-# You may obtain a copy of the License at\n-#\n-# http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n-#\n-# Unless required by applicable law or agreed to in writing, software\n-# distributed under the License is distributed on an \"AS IS\" BASIS,\n-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n-# See the License for the specific language governing permissions and\n-# limitations under the License.\n-#\n\n!!! Basic\n-@ var body: String\n-@ var title : String = \"Camel Web Console\"\n- response.setContentType(\"text\/html\") \n%html(lang=\"en\")\n %head\n %meta(http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\")\n %meta(name=\"description\" content=\"Apache Camel Console\")\n %meta(name=\"keywords\" content=\"camel,eip,web\")\n\n = include(\"\/org\/fusesource\/scalate\/console\/console_head.scaml\")\n\n %link(href={uri(\"\/css\/site.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href={uri(\"\/css\/scalate\/console.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href={uri(\"\/css\/sorttable.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href={uri(\"\/css\/type-settings.css\")} rel=\"stylesheet\" type=\"text\/css\")\n\n\n - if (attributes.get(\"noJavaScript\").isEmpty)\n %script(src={uri(\"\/js\/common.js\")} type=\"text\/javascript\")\n %script(src={uri(\"\/js\/css.js\")} type=\"text\/javascript\")\n %script(src={uri(\"\/js\/standardista-table-sorting.js\")} type=\"text\/javascript\")\n\n %title\n = title\n \n %body\n .white_box\n .header\n .header_l\n .header_r\n .content\n .content_l\n .content_r\n %div\n \/ Banner\n #asf_logo\n #activemq_logo\n %a{:href => \"http:\/\/camel.apache.org\/\", :style => \"float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;\", :title => \"a powerful open source integration framework based on known Enterprise Integration Patterns with powerful Bean Integration\"} Camel\n %a{:href => \"http:\/\/www.apache.org\/\", :style => \"float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;\", :title => \"The Apache Software Foundation\"} ASF\n .top_red_bar\n #site-breadcrumbs\n - if (requestUri.startsWith(\"\/index\"))\n %span Home\n - else\n %a{:href => {uri(\"\/index\")}, title => \"Home\"} Home\n |\n %a{:href => {uri(\"\/endpoints\")}, :title => \"View current endpoints or create new ones\"} Endpoints\n |\n %a{:href => {uri(\"\/routes\")}, :title => \"View current routes\"} Routes\n #site-quicklinks\n %P\n %a{:href => \"http:\/\/camel.apache.org\/support.html\", :title => \"Get help and support using Apache Camel\"} Support\n\n %table{:border => \"0\"}\n %tbody\n %tr\n %td{:style => \"overflow:hidden;\", :valign => \"top\", :width => \"100%\"}\n .body-content\n !~~ body\n %td{:valign => \"top\"}\n .navigation\n .navigation_bottomon_top\n .navigation_bottom\n %H3 Useful Links\n %ul.alternate{:type => \"square\"}\n %li\n %a{:href => \"http:\/\/camel.apache.org\/documentation.html\", :title => \"a powerful open source integration framework based on known Enterprise Integration Patterns with powerful Bean Integration\"} Documentation\n %li\n %a{:href => \"http:\/\/camel.apache.org\/web-console.html\", :title => \"more help on using the Web Console\"} Console Help\n %li\n %a{:href => \"http:\/\/camel.apache.org\/faq.html\"} FAQ\n %li\n %a{:href => {uri(\"\/api\")}, :title => \"View the REST API details\"} API\n %li\n %a{:href => \"http:\/\/camel.apache.org\/download.html\"} Downloads\n %li\n %a{:href => \"http:\/\/camel.apache.org\/discussion-forums.html\"} Forums\n .bottom_red_bar\n .black_box\n .footer\n .footer_l\n .footer_r\n %div\n Copyright 2005-2011 The Apache Software Foundation.\n (\n %a{:href => \"?printable=true\"}> printable version\n )\n = include(\"\/org\/fusesource\/scalate\/console\/console.scaml\")\n\n .design_attribution\n %a{:href => \"http:\/\/hiramchirino.com\/\"} Graphic Design By Hiram ","returncode":0,"stderr":"","license":"apache-2.0","lang":"Scaml"} {"commit":"ab50a45a6993e20e1121586bf87f301a86008e02","subject":"few more things on the agent page","message":"few more things on the agent page\n","repos":"chirino\/cloudmix,chirino\/cloudmix","old_file":"org.fusesource.cloudmix.agent.mop.web\/src\/main\/webapp\/org\/fusesource\/cloudmix\/agent\/resources\/AgentResource.index.scaml","new_file":"org.fusesource.cloudmix.agent.mop.web\/src\/main\/webapp\/org\/fusesource\/cloudmix\/agent\/resources\/AgentResource.index.scaml","new_contents":"-@ import val it: AgentResource\n-@ import val helper: ViewHelper = new ViewHelper\n- attributes(\"title\") = \"Agent\"\n\n%h2\n Agent: #{agent.getAgentId}\n%table\n %tr\n %td Website\n %td\n %a.agentSite{:href => {details.getHref}}\n = details.getHref\n %tr\n %td Host Name\n %td\n = details.getHostname\n %tr\n %td PID\n %td\n = details.getPid\n %tr\n %td Profile\n %td\n %agent:profile\/\n %tr\n %td Operating System\n %td\n %agent:os\/\n %tr\n %td Container\n %td\n %agent:containerType\/\n %tr\n %td ID\n %td\n %agent:id\/\n %tr\n %td Maximum Features\n %td\n %agent:maximumFeatures\/\n %tr\n %td{:colspan => \"2\"}\n %table\n %tr\n %th System Property\n %th Value\n %agent:systemProperty\n %tr\n %td\n %systemProperty:name\/\n %td\n %systemProperty:value\/","old_contents":"-@ import val it: AgentResource\n-@ import val helper: ViewHelper = new ViewHelper\n- attributes(\"title\") = \"Agent\"\n\n%h2\n Agent: #{agent.getAgentId}\n%table\n %tr\n %td Website\n %td\n %a.agentSite{\"agent:siteLink\" => \"na\"}\n %agent:site\/\n %tr\n %td Host Name\n %td\n %agent:hostname\/\n %tr\n %td PID\n %td\n %agent:pid\/\n %tr\n %td Profile\n %td\n %agent:profile\/\n %tr\n %td Operating System\n %td\n %agent:os\/\n %tr\n %td Container\n %td\n %agent:containerType\/\n %tr\n %td ID\n %td\n %agent:id\/\n %tr\n %td Maximum Features\n %td\n %agent:maximumFeatures\/\n %tr\n %td{:colspan => \"2\"}\n %table\n %tr\n %th System Property\n %th Value\n %agent:systemProperty\n %tr\n %td\n %systemProperty:name\/\n %td\n %systemProperty:value\/","returncode":0,"stderr":"","license":"agpl-3.0","lang":"Scaml"} {"commit":"58b95a03d0cdffc22f000c07fc461a3aabe49c1f","subject":"fix for navbar toggle issue","message":"fix for navbar toggle issue","repos":"gregoryboucher\/resume-app,gregoryboucher\/resume-app","old_file":"src\/main\/webapp\/WEB-INF\/templates\/layouts\/navbar.scaml","new_file":"src\/main\/webapp\/WEB-INF\/templates\/layouts\/navbar.scaml","new_contents":"- import models.Menu\n- import services.MenuService\n- val test = MenuService.getMenuJson(\"header\")\n\n- val navbar = List(Menu(0,\"About\", \"#about\"), Menu(1,\"Contact\", \"#contact\"), Menu(2,\"More\", \"#more\"))\n\n-# TODO: Use service at \/menu\/:menuName.json to get header menu\n\n.navbar.navbar-fixed-top.navbar-inverse{:role => \"navigation\"}\n\t.container\n\t\t\/ #{test}\n\t\t.navbar-header\n\t\t\t%button.navbar-toggle{:type => \"button\", \"data-toggle\" => \"collapse\", \"data-target\" => \".navbar-collapse\"}\n\t\t\t\t%span.sr-only Toggle navigation\n\t\t\t\t%span.icon-bar\n\t\t\t\t%span.icon-bar\n\t\t\t\t%span.icon-bar\n\t\t\t%a.navbar-brand{:href => \"\/\"} Test Project\n\t\t.navbar-collapse.collapse\n\t\t\t%ul.nav.navbar-nav\n\t\t\t\t- for (item <- navbar) \n\t\t\t\t\t%li \n\t\t\t\t\t\t%a{:href => {item.url}} = item.displayName","old_contents":"- import models.Menu\n- import services.MenuService\n- val test = MenuService.getMenuJson(\"header\")\n\n- val navbar = List(Menu(0,\"About\", \"#about\"), Menu(1,\"Contact\", \"#contact\"), Menu(2,\"More\", \"#more\"))\n\n-# TODO: Use service at \/menu\/:menuName.json to get header menu\n\n.navbar.navbar-fixed-top.navbar-inverse{:role => \"navigation\"}\n\t.container\n\t\t\/ #{test}\n\t\t.navbar-header\n\t\t\t%button.navbar-toggle{:type => \"button\", \"data-toggle\" => \"collapse\", \"data-target\" => \".nav-collapse\"}\n\t\t\t\t%span.sr-only Toggle navigation\n\t\t\t\t%span.icon-bar\n\t\t\t\t%span.icon-bar\n\t\t\t\t%span.icon-bar\n\t\t\t%a.navbar-brand{:href => \"\/\"} Test Project\n\t\t.navbar-collapse.collapse\n\t\t\t%ul.nav.navbar-nav\n\t\t\t\t- for (item <- navbar) \n\t\t\t\t\t%li \n\t\t\t\t\t\t%a{:href => {item.url}} = item.displayName","returncode":0,"stderr":"","license":"mit","lang":"Scaml"} {"commit":"8c78c46ee176fa2f21002b8cdae242c633070e64","subject":"Scaml templates should use \\!~~ to include body parts","message":"Scaml templates should use \\!~~ to include body parts\n","repos":"janurag\/scalate,scalate\/scalate,maslovalex\/scalate,janurag\/scalate,maslovalex\/scalate,janurag\/scalate,janurag\/scalate,janurag\/scalate,maslovalex\/scalate,scalate\/scalate,maslovalex\/scalate,scalate\/scalate,scalate\/scalate,maslovalex\/scalate","old_file":"scalate-sample\/src\/main\/webapp\/WEB-INF\/layouts\/default.scaml","new_file":"scalate-sample\/src\/main\/webapp\/WEB-INF\/layouts\/default.scaml","new_contents":"!!! Basic\n-@ var body: String\n-@ var title : String = \"Scalate Sample\"\n- response.setContentType(\"text\/html\") \n%html(lang=\"en\")\n %head\n %meta(http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\")\n %meta(name=\"description\" content=\"description goes here\")\n %meta(name=\"keywords\" content=\"keywords,goes,here\")\n %meta(name=\"author\" content=\"Your Name\")\n\n = include(\"\/org\/fusesource\/scalate\/console\/console_head.scaml\")\n\n %link(href={uri(\"\/css\/style.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href={uri(\"\/css\/scalate\/console.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %title\n = title\n \n %body\n #navigation\n .wrapper\n %ul\n - if (requestURI.startsWith(\"\/index.\"))\n %li(class=\"webgen-menu-level1 webgen-menu-item-selected\")\n %span Home\n - else\n %li(class=\"webgen-menu-level1 webgen-menu-submenu\")\n %a(href={uri(\"\/\")}) \n Home\n %li(class=\"webgen-menu-level1 webgen-menu-submenu\")\n %a(href=\"http:\/\/scalate.fusesource.org\/\")\n Documentation\n\n #content\n .wrapper\n !~~ body\n \n #footer\n .wrapper\n %hr\n = include(\"\/org\/fusesource\/scalate\/console\/console.scaml\")\n ","old_contents":"!!! Basic\n-@ var body: String\n-@ var title : String = \"Scalate Sample\"\n- response.setContentType(\"text\/html\") \n%html(lang=\"en\")\n %head\n %meta(http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\")\n %meta(name=\"description\" content=\"description goes here\")\n %meta(name=\"keywords\" content=\"keywords,goes,here\")\n %meta(name=\"author\" content=\"Your Name\")\n\n = include(\"\/org\/fusesource\/scalate\/console\/console_head.scaml\")\n\n %link(href={uri(\"\/css\/style.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href={uri(\"\/css\/scalate\/console.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %title\n = title\n \n %body\n #navigation\n .wrapper\n %ul\n - if (requestURI.startsWith(\"\/index.\"))\n %li(class=\"webgen-menu-level1 webgen-menu-item-selected\")\n %span Home\n - else\n %li(class=\"webgen-menu-level1 webgen-menu-submenu\")\n %a(href={uri(\"\/\")}) \n Home\n %li(class=\"webgen-menu-level1 webgen-menu-submenu\")\n %a(href=\"http:\/\/scalate.fusesource.org\/\")\n Documentation\n\n #content\n .wrapper<\n ! #{\"\\n\"+body}\n \n #footer\n .wrapper\n %hr\n = include(\"\/org\/fusesource\/scalate\/console\/console.scaml\")\n ","returncode":0,"stderr":"","license":"apache-2.0","lang":"Scaml"} {"commit":"4f23273c47499b8c0a8aff9b565bf303020629df","subject":"Fixed repositories package name in templates.","message":"Fixed repositories package name in templates.\n","repos":"dozed\/fink,dozed\/fink","old_file":"fink-sample\/src\/main\/webapp\/WEB-INF\/themes\/simple\/layouts\/default.scaml","new_file":"fink-sample\/src\/main\/webapp\/WEB-INF\/themes\/simple\/layouts\/default.scaml","new_contents":"- import org.noorg.fink.admin.support.Theming._\n- response.setContentType(\"text\/html\")\n\n-@ var pages : org.noorg.fink.data.repositories.PageRepository\n-@ var media : org.noorg.fink.data.repositories.MediaRepository\n-@ var rootPage : org.noorg.fink.data.entities.Page\n\n-@ var body: String\n-@ var title : String = \"fink Sample Page\"\n\n!!! Basic\n%html(lang=\"en\")\n %head\n %meta(http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\")\n\n %meta(name=\"description\" content=\"description goes here\")\n %meta(name=\"keywords\" content=\"keywords,goes,here\")\n %meta(name=\"author\" content=\"Your Name\")\n\n %link(href={themeBase(\"\/css\/style.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href=\"http:\/\/fonts.googleapis.com\/css?family=Mako|Anton|News+Cycle|Nobile&v2\" rel=\"stylesheet\" type=\"text\/css\")\n \n %script(type=\"text\/javascript\" src={themeBase(\"\/js\/jquery-1.5.1.min.js\")})\n\n %title\n = title\n \n %body\n #navigation\n .wrapper\n %a(href={uri(\"\/\")})\n %img(src={themeBase(\"\/images\/fink.png\")})\n .menu\n .up\n %ul\n - for ( collection <- media.findCollections() )\n %li\n %a(href={uri(\"\/collections\/\" + collection.getShortlink())}) #{collection.getTitle()}\n .down\n %ul\n -for( page <- pages.findPagesByTag(\"sub-menu\") )\n %li\n %a(href={uri(\"\/pages\/\"+page.getShortlink)}) #{page.getTitle}\n %div(style=\"clear:both\")\n \n\n #content\n .wrapper\n !~~ body\n \n #footer\n .wrapper\n %br\n \n","old_contents":"- import org.noorg.fink.admin.support.Theming._\n- response.setContentType(\"text\/html\")\n\n-@ var pages : org.noorg.fink.data.repository.PageRepository\n-@ var media : org.noorg.fink.data.repository.MediaRepository\n-@ var rootPage : org.noorg.fink.data.entities.Page\n\n-@ var body: String\n-@ var title : String = \"fink Sample Page\"\n\n!!! Basic\n%html(lang=\"en\")\n %head\n %meta(http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\")\n\n %meta(name=\"description\" content=\"description goes here\")\n %meta(name=\"keywords\" content=\"keywords,goes,here\")\n %meta(name=\"author\" content=\"Your Name\")\n\n %link(href={themeBase(\"\/css\/style.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href=\"http:\/\/fonts.googleapis.com\/css?family=Mako|Anton|News+Cycle|Nobile&v2\" rel=\"stylesheet\" type=\"text\/css\")\n \n %script(type=\"text\/javascript\" src={themeBase(\"\/js\/jquery-1.5.1.min.js\")})\n\n %title\n = title\n \n %body\n #navigation\n .wrapper\n %a(href={uri(\"\/\")})\n %img(src={themeBase(\"\/images\/fink.png\")})\n .menu\n .up\n %ul\n - for ( collection <- media.findCollections() )\n %li\n %a(href={uri(\"\/collections\/\" + collection.getShortlink())}) #{collection.getTitle()}\n .down\n %ul\n -for( page <- pages.findPagesByTag(\"sub-menu\") )\n %li\n %a(href={uri(\"\/pages\/\"+page.getShortlink)}) #{page.getTitle}\n %div(style=\"clear:both\")\n \n\n #content\n .wrapper\n !~~ body\n \n #footer\n .wrapper\n %br\n \n","returncode":0,"stderr":"","license":"mit","lang":"Scaml"} {"commit":"43630fdca63c96e377db951522e280494403f731","subject":"added a link to the generated source error line\/col\/file when there is a scala compile error","message":"added a link to the generated source error line\/col\/file when there is a scala compile error\n","repos":"janurag\/scalate,janurag\/scalate,scalate\/scalate,janurag\/scalate,scalate\/scalate,maslovalex\/scalate,scalate\/scalate,janurag\/scalate,maslovalex\/scalate,maslovalex\/scalate,scalate\/scalate,maslovalex\/scalate,janurag\/scalate,maslovalex\/scalate","old_file":"scalate-sample\/src\/main\/webapp\/WEB-INF\/errors\/500.scaml","new_file":"scalate-sample\/src\/main\/webapp\/WEB-INF\/errors\/500.scaml","new_contents":"- import util.parsing.input.Position\n- import org.fusesource.scalate._\n- import org.fusesource.scalate.console._\n- val consoleHelper = new ConsoleHelper(context)\n- import consoleHelper._\n- val exception = attributes(\"javax.servlet.error.exception\")\n- val olderror = attributeOrElse(\"javax.servlet.error.olderror\", \"\")\n- val errorRequestUri = attributeOrElse(\"javax.servlet.error.request_uri\", \"\")\n- val errorCode = attributeOrElse(\"javax.servlet.error.status_code\", 500)\n\n%link(href={uri(\"\/css\/scalate\/errors.css\")} rel=\"stylesheet\" type=\"text\/css\")\n\n- def displayError(file:String, pos:Position, message:String)\n #header.block\n %h1\n = message\n\n #source.block\n %h2\n = editLink(file, pos.line, pos.column)\n in #{shorten(file)} near line #{pos.line} col #{pos.column}\n\n - for (s <- lines(file, pos))\n - val ss = s.style(pos.line)\n = editLink(file, s.line, (if (pos.line == s.line) pos.column else 1))\n %div(class=ss)\n %span.lineNumber\n = s.line\n - if (pos.line == s.line)\n - val (prefix, ch, postfix) = s.splitOnCharacter(pos.column - 1)\n - println(\"prefix: \" + prefix + \" ch: \" + ch + \" postfix: \" + postfix)\n %pre<\n &~ prefix\n %span.errorCol><\n &~ ch\n &~ postfix\n - else\n %pre<\n &~ s.source\n\n- exception match\n - case e:InvalidSyntaxException =>\n - displayError( e.template, e.pos, e.brief)\n\n - case e:CompilerException =>\n - for ( error <- e.errors )\n - displayError(error.file, error.pos, error.message)\n - val o = error.original\n - if (o != null)\n #source.block\n = editLink(o.file, o.pos.line, o.pos.column)\n from generated #{shorten(o.file)} near line #{o.pos.line} col #{o.pos.line}\n\n - case u =>\n #header.block\n %h1\n = olderror\n %p\n = u\n\n\n\n","old_contents":"- import util.parsing.input.Position\n- import org.fusesource.scalate._\n- import org.fusesource.scalate.console._\n- val consoleHelper = new ConsoleHelper(context)\n- import consoleHelper._\n- val exception = attributes(\"javax.servlet.error.exception\")\n- val olderror = attributeOrElse(\"javax.servlet.error.olderror\", \"\")\n- val errorRequestUri = attributeOrElse(\"javax.servlet.error.request_uri\", \"\")\n- val errorCode = attributeOrElse(\"javax.servlet.error.status_code\", 500)\n\n%link(href={uri(\"\/css\/scalate\/errors.css\")} rel=\"stylesheet\" type=\"text\/css\")\n\n- def displayError(file:String, pos:Position, message:String)\n #header.block\n %h1\n = message\n\n #source.block\n %h2\n = editLink(file, pos.line, pos.column)\n In #{shorten(file)} near line #{pos.line} col #{pos.column}\n\n - for (s <- lines(file, pos))\n - val ss = s.style(pos.line)\n = editLink(file, s.line, (if (pos.line == s.line) pos.column else 1))\n %div(class=ss)\n %span.lineNumber\n = s.line\n - if (pos.line == s.line)\n - val (prefix, ch, postfix) = s.splitOnCharacter(pos.column - 1)\n - println(\"prefix: \" + prefix + \" ch: \" + ch + \" postfix: \" + postfix)\n %pre<\n &~ prefix\n %span.errorCol><\n &~ ch\n &~ postfix\n - else\n %pre<\n &~ s.source\n\n- exception match\n - case e:InvalidSyntaxException =>\n - displayError( e.template, e.pos, e.brief)\n\n - case e:CompilerException =>\n - for ( error <- e.errors )\n - displayError(error.file, error.pos, error.message)\n\n - case u =>\n #header.block\n %h1\n = olderror\n %p\n = u\n\n\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"Scaml"} {"commit":"354db6b4cb4c3eab5ae177c1d0bcbce2dc54ea50","subject":"Fixed null pointer.","message":"Fixed null pointer.\n","repos":"dozed\/fink,dozed\/fink","old_file":"fink-admin\/src\/main\/webapp\/WEB-INF\/admin\/pages.edit.scaml","new_file":"fink-admin\/src\/main\/webapp\/WEB-INF\/admin\/pages.edit.scaml","new_contents":"","old_contents":"","returncode":0,"stderr":"unknown","license":"mit","lang":"Scaml"} {"commit":"b7183d13fcaee7a7c452324d3b4f010a48a2e747","subject":"added js needed for tooltip added glyphicon-glass to h1","message":"added js needed for tooltip\nadded glyphicon-glass to h1\n","repos":"gregoryboucher\/resume-app,gregoryboucher\/resume-app","old_file":"src\/main\/webapp\/WEB-INF\/templates\/layouts\/default.scaml","new_file":"src\/main\/webapp\/WEB-INF\/templates\/layouts\/default.scaml","new_contents":"-@ var title: String = \"Defaul Title\"\n-@ var headline: String = title\n-@ var body: String\n-@ var zip: String = \"Home Zip\"\n\n!!!\n%html\n\t%head\n\t\t%title #{title}\n\t\t%meta{:charset => \"utf-8\"}\n\t\t%meta{\"http-equiv\" => \"X-UA-Compatible\", :content => \"IE=edge\"}\n\t\t%meta{:name => \"viewport\", :content => \"width=device-width, initial-scale=1.0\"}\n\t\t%link{:href => \"css\/bootstrap.css\", :rel => \"stylesheet\"}\n\t\t%link{:href => \"css\/starter-template.css\", :rel => \"stylesheet\"}\n\t\t\/ HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries\n\t\t\/[if lt IE 9]\n\t\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/oss.maxcdn.com\/libs\/html5shiv\/3.7.0\/html5shiv.js\"}\n\t\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/oss.maxcdn.com\/libs\/respond.js\/1.3.0\/respond.min.js\"}\n\t%body\n\t\t- render(\"\/layouts\/navbar.scaml\") \n\t\t.container\n\t\t\t%header\n\t\t\t\t%h1\n\t\t\t\t\t#{headline}\n\t\t\t\t\t%span.glyphicon.glyphicon-glass\n\t\t\t%section\n\t\t\t\t!= body\n\t\t\t%footer #{zip}\n\t\t\/ jQuery (necessary for Bootstrap's JavaScript plugins)\n\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/code.jquery.com\/jquery.js\"}\n\t\t\/ Include all compiled plugins (below), or include individual files as needed\n\t\t%script{:type => \"text\/javascript\",:src => \"js\/compiled\/bootstrap.js\"}\n\t\t%script\n\t\t\t$('a').tooltip()","old_contents":"-@ var title: String = \"Defaul Title\"\n-@ var headline: String = title\n-@ var body: String\n-@ var zip: String = \"Home Zip\"\n\n!!!\n%html\n\t%head\n\t\t%title #{title}\n\t\t%meta{:charset => \"utf-8\"}\n\t\t%meta{\"http-equiv\" => \"X-UA-Compatible\", :content => \"IE=edge\"}\n\t\t%meta{:name => \"viewport\", :content => \"width=device-width, initial-scale=1.0\"}\n\t\t%link{:href => \"css\/bootstrap.css\", :rel => \"stylesheet\"}\n\t\t%link{:href => \"css\/starter-template.css\", :rel => \"stylesheet\"}\n\t\t\/ HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries\n\t\t\/[if lt IE 9]\n\t\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/oss.maxcdn.com\/libs\/html5shiv\/3.7.0\/html5shiv.js\"}\n\t\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/oss.maxcdn.com\/libs\/respond.js\/1.3.0\/respond.min.js\"}\n\t%body\n\t\t- render(\"\/layouts\/navbar.scaml\") \n\t\t.container\n\t\t\t%header\n\t\t\t\t%h1 #{headline}\n\t\t\t%section\n\t\t\t\t!= body\n\t\t\t%footer #{zip}\n\t\t\/ jQuery (necessary for Bootstrap's JavaScript plugins)\n\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/code.jquery.com\/jquery.js\"}\n\t\t\/ Include all compiled plugins (below), or include individual files as needed\n\t\t%script{:type => \"text\/javascript\",:src => \"js\/compiled\/bootstrap.js\"}","returncode":0,"stderr":"","license":"mit","lang":"Scaml"} {"commit":"fb1972bd6246664c013d4f4897b160f29b9bd8f7","subject":"Fixed some bugs in quickstart.","message":"Fixed some bugs in quickstart.\n","repos":"dozed\/fink,dozed\/fink","old_file":"website-quickstart\/src\/main\/resources\/archetype-resources\/src\/main\/webapp\/WEB-INF\/themes\/simple\/layouts\/default.scaml","new_file":"website-quickstart\/src\/main\/resources\/archetype-resources\/src\/main\/webapp\/WEB-INF\/themes\/simple\/layouts\/default.scaml","new_contents":"- import org.noorg.fink.admin.support.Theming._\n- response.setContentType(\"text\/html\")\n\n-@ var pages : org.noorg.fink.data.repository.PageRepository\n\n-@ var body: String\n-@ var title : String = \"fink quickstart\"\n\n!!! Basic\n%html(lang=\"en\")\n %head\n %meta(http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\")\n\n %meta(name=\"description\" content=\"description goes here\")\n %meta(name=\"keywords\" content=\"keywords,goes,here\")\n %meta(name=\"author\" content=\"Your Name\")\n\n %link(href={themeBase(\"\/css\/style.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href=\"http:\/\/fonts.googleapis.com\/css?family=Mako|Anton|News+Cycle|Nobile&v2\" rel=\"stylesheet\" type=\"text\/css\")\n \n %script(type=\"text\/javascript\" src={themeBase(\"\/js\/jquery-1.5.1.min.js\")})\n\n %title\n = title\n \n %body\n #navigation\n .wrapper\n %img(src={themeBase(\"\/images\/fink.png\")})\n .menu\n .up\n %ul\n %li\n %a(href={uri(\"\/\")}) Index\n %li\n %a(href={uri(\"\/fink-admin\/\")}) Admin\n .down\n %ul\n -for( page <- pages.findPagesByTag(\"sub-menu\") )\n %li\n %a(href={uri(\"\/pages\/\"+page.getShortlink)}) #{page.getTitle}\n %div(style=\"clear:both\")\n \n\n #content\n .wrapper\n !~~ body\n \n #footer\n .wrapper\n %br\n \n","old_contents":"- import org.noorg.fink.admin.support.Theming._\n- response.setContentType(\"text\/html\")\n\n-@ var pages : org.noorg.fink.data.repository.PageRepository\n-@ var rootPage : org.noorg.fink.data.entities.Page\n\n-@ var body: String\n-@ var title : String = \"fink Sample Page\"\n\n!!! Basic\n%html(lang=\"en\")\n %head\n %meta(http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\")\n\n %meta(name=\"description\" content=\"description goes here\")\n %meta(name=\"keywords\" content=\"keywords,goes,here\")\n %meta(name=\"author\" content=\"Your Name\")\n\n %link(href={themeBase(\"\/css\/style.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href=\"http:\/\/fonts.googleapis.com\/css?family=Mako|Anton|News+Cycle|Nobile&v2\" rel=\"stylesheet\" type=\"text\/css\")\n \n %script(type=\"text\/javascript\" src={themeBase(\"\/js\/jquery-1.5.1.min.js\")})\n\n %title\n = title\n \n %body\n #navigation\n .wrapper\n %img(src={themeBase(\"\/images\/fink.png\")})\n .menu\n .up\n %ul\n - if (requestUri.startsWith(\"\/index.\"))\n %li\n %span People\n - else\n %li\n %a(href={uri(\"\/collections\/nature\")}) Nature\n %li\n %a(href={uri(\"\/collections\/city\")}) City\n %li\n %a(href={uri(\"\/dates\")}) Dates\n %li\n %a(href={uri(\"\/posts\")}) Posts\n %li\n %a(href={uri(\"\/admin\/\")}) Admin\n .down\n %ul\n -for( page <- pages.findPagesByTag(\"sub-menu\") )\n %li\n %a(href={uri(\"\/pages\/\"+page.getShortlink)}) #{page.getTitle}\n %div(style=\"clear:both\")\n \n\n #content\n .wrapper\n !~~ body\n \n #footer\n .wrapper\n %br\n \n","returncode":0,"stderr":"","license":"mit","lang":"Scaml"} {"commit":"99b5fca257b63113baf1cfaeceabec1fe58df8ec","subject":"removed \/ prefix from view to look more consistent with other edit links","message":"removed \/ prefix from view to look more consistent with other edit links\n","repos":"maslovalex\/scalate,janurag\/scalate,scalate\/scalate,maslovalex\/scalate,maslovalex\/scalate,janurag\/scalate,maslovalex\/scalate,janurag\/scalate,janurag\/scalate,scalate\/scalate,janurag\/scalate,scalate\/scalate,maslovalex\/scalate,scalate\/scalate","old_file":"scalate-sample\/src\/main\/webapp\/org\/fusesource\/scalate\/console\/console.scaml","new_file":"scalate-sample\/src\/main\/webapp\/org\/fusesource\/scalate\/console\/console.scaml","new_contents":"-@ import val consoleHelper: ConsoleHelper = new ConsoleHelper(context) \n\n- if (optionEnabled(\"console\"))\n %h2 Scalate Console\n\n - if (newTemplateName.isDefined && resourceClassName.isDefined)\n - val newName = newTemplateName.get\n %h3 Create New Custom Template\n %p Create a new template called #{newName} from archetype\n %ul\n - for (a <- archetypes)\n %li\n %form(action={uri(\"\/scalate\/createTemplate\")} method=\"post\")\n %input(type=\"hidden\" name=\"archetype\" value={a.archetype})\n %input(type=\"hidden\" name=\"newTemplateName\" value={newName})\n %input(type=\"hidden\" name=\"resourceClass\" value={resourceClassName.get})\n %input(type=\"submit\" value={a.name})\n \n\n %table#templates \n %tr\n %td#name Resource\n %td\n - val sourceFile = resourceSourceFile\n - if (sourceFile.isDefined)\n - val file = resourceSourceFile.get\n %ul\n %li\n = editFileLink(file.getAbsolutePath)\n = file.getPath\n %tr\n %td#name Templates\n %td\n %ul\n - for (template <- templates)\n %li\n = editLink(template)\n = template.stripPrefix(\"\/\")\n %tr\n %td Layouts\n %td\n %ul\n - for (layout <- layouts)\n %li\n = editLink(layout)\n = layout.stripPrefix(\"\/\")\n\n %a(href={disableLink(\"console\")} title=\"Hide the Scalate Console\") \n Hide Scalate Console\n - if (optionEnabled(\"attributes\"))\n %a(href={disableLink(\"attributes\")} title=\"Hide the Attributes\") \n Hide Attributes\n %table#attributes\n %tr\n %th Attribute\n %th Value\n - for (k <- attributeKeys) \n %tr\n %td#name\n = k\n %td#value\n - if (k == \"body\")\n - if (optionEnabled(\"body\"))\n %a(href={disableLink(\"body\")} title=\"Hide the Body\") \n Hide Body\n = attributes(k)\n - else\n %a(href={enableLink(\"body\")} title=\"Show the Body\") \n Show Body\n - else\n = attributes(k)\n - else\n %a(href={enableLink(\"attributes\")} title=\"Show the Attributes\") \n Show Attributes\n \n- else\n %a(href={enableLink(\"console\")} title=\"Show the Scalate Console\") \n Show Scalate Console\n\n","old_contents":"-@ import val consoleHelper: ConsoleHelper = new ConsoleHelper(context) \n\n- if (optionEnabled(\"console\"))\n %h2 Scalate Console\n\n - if (newTemplateName.isDefined && resourceClassName.isDefined)\n - val newName = newTemplateName.get\n %h3 Create New Custom Template\n %p Create a new template called #{newName} from archetype\n %ul\n - for (a <- archetypes)\n %li\n %form(action={uri(\"\/scalate\/createTemplate\")} method=\"post\")\n %input(type=\"hidden\" name=\"archetype\" value={a.archetype})\n %input(type=\"hidden\" name=\"newTemplateName\" value={newName})\n %input(type=\"hidden\" name=\"resourceClass\" value={resourceClassName.get})\n %input(type=\"submit\" value={a.name})\n \n\n %table#templates \n %tr\n %td#name Resource\n %td\n - val sourceFile = resourceSourceFile\n - if (sourceFile.isDefined)\n - val file = resourceSourceFile.get\n %ul\n %li\n = editFileLink(file.getAbsolutePath)\n = file.getPath\n %tr\n %td#name Templates\n %td\n %ul\n - for (template <- templates)\n %li\n = editLink(template)\n = template\n %tr\n %td Layouts\n %td\n %ul\n - for (layout <- layouts)\n %li\n = editLink(layout)\n = layout\n\n %a(href={disableLink(\"console\")} title=\"Hide the Scalate Console\") \n Hide Scalate Console\n - if (optionEnabled(\"attributes\"))\n %a(href={disableLink(\"attributes\")} title=\"Hide the Attributes\") \n Hide Attributes\n %table#attributes\n %tr\n %th Attribute\n %th Value\n - for (k <- attributeKeys) \n %tr\n %td#name\n = k\n %td#value\n - if (k == \"body\")\n - if (optionEnabled(\"body\"))\n %a(href={disableLink(\"body\")} title=\"Hide the Body\") \n Hide Body\n = attributes(k)\n - else\n %a(href={enableLink(\"body\")} title=\"Show the Body\") \n Show Body\n - else\n = attributes(k)\n - else\n %a(href={enableLink(\"attributes\")} title=\"Show the Attributes\") \n Show Attributes\n \n- else\n %a(href={enableLink(\"console\")} title=\"Show the Scalate Console\") \n Show Scalate Console\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"Scaml"} {"commit":"16bdfa587bb61d504f200f121c80a5161840690a","subject":"Fixed compilation error","message":"Fixed compilation error\n\ngit-svn-id: 11f3c9e1d08a13a4be44fe98a6d63a9c00f6ab23@1003947 13f79535-47bb-0310-9956-ffa450edef68\n","repos":"gyc567\/camel,manuelh9r\/camel,isururanawaka\/camel,adessaigne\/camel,jlpedrosa\/camel,allancth\/camel,driseley\/camel,duro1\/camel,rparree\/camel,onders86\/camel,coderczp\/camel,mohanaraosv\/camel,davidkarlsen\/camel,sabre1041\/camel,erwelch\/camel,gnodet\/camel,jamesnetherton\/camel,JYBESSON\/camel,satishgummadelli\/camel,logzio\/camel,noelo\/camel,brreitme\/camel,lowwool\/camel,dvankleef\/camel,alvinkwekel\/camel,nikvaessen\/camel,lasombra\/camel,koscejev\/camel,isururanawaka\/camel,koscejev\/camel,prashant2402\/camel,mnki\/camel,rmarting\/camel,rmarting\/camel,mzapletal\/camel,isavin\/camel,nicolaferraro\/camel,YMartsynkevych\/camel,kevinearls\/camel,mgyongyosi\/camel,dsimansk\/camel,pplatek\/camel,driseley\/camel,manuelh9r\/camel,salikjan\/camel,scranton\/camel,anoordover\/camel,lasombra\/camel,nikvaessen\/camel,jmandawg\/camel,partis\/camel,nicolaferraro\/camel,borcsokj\/camel,curso007\/camel,dmvolod\/camel,FingolfinTEK\/camel,gnodet\/camel,JYBESSON\/camel,MohammedHammam\/camel,ge0ffrey\/camel,tdiesler\/camel,jollygeorge\/camel,MrCoder\/camel,scranton\/camel,zregvart\/camel,prashant2402\/camel,bhaveshdt\/camel,joakibj\/camel,MohammedHammam\/camel,dkhanolkar\/camel,skinzer\/camel,edigrid\/camel,apache\/camel,mike-kukla\/camel,anoordover\/camel,arnaud-deprez\/camel,salikjan\/camel,dvankleef\/camel,yuruki\/camel,hqstevenson\/camel,tadayosi\/camel,jameszkw\/camel,mike-kukla\/camel,josefkarasek\/camel,CodeSmell\/camel,lowwool\/camel,hqstevenson\/camel,satishgummadelli\/camel,lowwool\/camel,nboukhed\/camel,dkhanolkar\/camel,bfitzpat\/camel,Fabryprog\/camel,aaronwalker\/camel,tkopczynski\/camel,joakibj\/camel,igarashitm\/camel,anoordover\/camel,veithen\/camel,snurmine\/camel,gilfernandes\/camel,eformat\/camel,logzio\/camel,ramonmaruko\/camel,nicolaferraro\/camel,hqstevenson\/camel,jameszkw\/camel,davidwilliams1978\/camel,duro1\/camel,tlehoux\/camel,davidwilliams1978\/camel,pax95\/camel,logzio\/camel,nikhilvibhav\/camel,grgrzybek\/camel,jlpedrosa\/camel,JYBESSON\/camel,mike-kukla\/camel,haku\/camel,stalet\/camel,chirino\/camel,qst-jdc-labs\/camel,iweiss\/camel,NetNow\/camel,chirino\/camel,jollygeorge\/camel,drsquidop\/camel,acartapanis\/camel,tkopczynski\/camel,stravag\/camel,drsquidop\/camel,duro1\/camel,borcsokj\/camel,tarilabs\/camel,christophd\/camel,gyc567\/camel,grgrzybek\/camel,pmoerenhout\/camel,snadakuduru\/camel,kevinearls\/camel,grange74\/camel,brreitme\/camel,mohanaraosv\/camel,noelo\/camel,tadayosi\/camel,CandleCandle\/camel,sirlatrom\/camel,tarilabs\/camel,ramonmaruko\/camel,engagepoint\/camel,punkhorn\/camel-upstream,dsimansk\/camel,tarilabs\/camel,mgyongyosi\/camel,tadayosi\/camel,CandleCandle\/camel,FingolfinTEK\/camel,oscerd\/camel,pax95\/camel,sverkera\/camel,tkopczynski\/camel,ssharma\/camel,snadakuduru\/camel,nikvaessen\/camel,MrCoder\/camel,joakibj\/camel,YoshikiHigo\/camel,nboukhed\/camel,sebi-hgdata\/camel,aaronwalker\/camel,snadakuduru\/camel,MohammedHammam\/camel,punkhorn\/camel-upstream,iweiss\/camel,isavin\/camel,arnaud-deprez\/camel,punkhorn\/camel-upstream,askannon\/camel,mzapletal\/camel,stravag\/camel,anoordover\/camel,scranton\/camel,jameszkw\/camel,aaronwalker\/camel,lburgazzoli\/camel,cunningt\/camel,neoramon\/camel,pplatek\/camel,FingolfinTEK\/camel,yury-vashchyla\/camel,gautric\/camel,stravag\/camel,veithen\/camel,zregvart\/camel,lburgazzoli\/camel,anoordover\/camel,eformat\/camel,eformat\/camel,bhaveshdt\/camel,satishgummadelli\/camel,davidkarlsen\/camel,YoshikiHigo\/camel,ekprayas\/camel,atoulme\/camel,coderczp\/camel,bdecoste\/camel,YMartsynkevych\/camel,isururanawaka\/camel,JYBESSON\/camel,allancth\/camel,nboukhed\/camel,NetNow\/camel,jlpedrosa\/camel,w4tson\/camel,christophd\/camel,YoshikiHigo\/camel,ullgren\/camel,objectiser\/camel,manuelh9r\/camel,bhaveshdt\/camel,pax95\/camel,snurmine\/camel,yogamaha\/camel,NickCis\/camel,yuruki\/camel,joakibj\/camel,sirlatrom\/camel,engagepoint\/camel,YoshikiHigo\/camel,satishgummadelli\/camel,Thopap\/camel,arnaud-deprez\/camel,driseley\/camel,bdecoste\/camel,onders86\/camel,noelo\/camel,stravag\/camel,christophd\/camel,mgyongyosi\/camel,christophd\/camel,drsquidop\/camel,chanakaudaya\/camel,curso007\/camel,akhettar\/camel,lburgazzoli\/camel,NickCis\/camel,rmarting\/camel,anton-k11\/camel,gautric\/camel,pmoerenhout\/camel,jonmcewen\/camel,nicolaferraro\/camel,bdecoste\/camel,ge0ffrey\/camel,snadakuduru\/camel,rmarting\/camel,tdiesler\/camel,tadayosi\/camel,rparree\/camel,bhaveshdt\/camel,borcsokj\/camel,ssharma\/camel,akhettar\/camel,oalles\/camel,lburgazzoli\/apache-camel,sabre1041\/camel,mzapletal\/camel,mzapletal\/camel,adessaigne\/camel,chanakaudaya\/camel,Thopap\/camel,NickCis\/camel,erwelch\/camel,chanakaudaya\/camel,pmoerenhout\/camel,onders86\/camel,onders86\/camel,jarst\/camel,apache\/camel,dkhanolkar\/camel,akhettar\/camel,johnpoth\/camel,aaronwalker\/camel,veithen\/camel,gautric\/camel,scranton\/camel,grange74\/camel,sabre1041\/camel,jonmcewen\/camel,jamesnetherton\/camel,josefkarasek\/camel,royopa\/camel,CandleCandle\/camel,atoulme\/camel,skinzer\/camel,DariusX\/camel,chirino\/camel,yogamaha\/camel,manuelh9r\/camel,lasombra\/camel,yury-vashchyla\/camel,brreitme\/camel,josefkarasek\/camel,johnpoth\/camel,jarst\/camel,jmandawg\/camel,mike-kukla\/camel,trohovsky\/camel,bgaudaen\/camel,dvankleef\/camel,stalet\/camel,jollygeorge\/camel,kevinearls\/camel,tlehoux\/camel,oscerd\/camel,Thopap\/camel,grgrzybek\/camel,coderczp\/camel,apache\/camel,oscerd\/camel,jameszkw\/camel,dpocock\/camel,dpocock\/camel,davidkarlsen\/camel,tkopczynski\/camel,curso007\/camel,acartapanis\/camel,lowwool\/camel,jmandawg\/camel,lasombra\/camel,yuruki\/camel,jpav\/camel,partis\/camel,skinzer\/camel,pkletsko\/camel,sverkera\/camel,tdiesler\/camel,eformat\/camel,mnki\/camel,lowwool\/camel,dkhanolkar\/camel,cunningt\/camel,MohammedHammam\/camel,stravag\/camel,oalles\/camel,yogamaha\/camel,johnpoth\/camel,drsquidop\/camel,dpocock\/camel,brreitme\/camel,nboukhed\/camel,tdiesler\/camel,noelo\/camel,kevinearls\/camel,christophd\/camel,pmoerenhout\/camel,jollygeorge\/camel,dmvolod\/camel,edigrid\/camel,bhaveshdt\/camel,satishgummadelli\/camel,gyc567\/camel,jkorab\/camel,chirino\/camel,logzio\/camel,chirino\/camel,tadayosi\/camel,allancth\/camel,YoshikiHigo\/camel,FingolfinTEK\/camel,brreitme\/camel,royopa\/camel,johnpoth\/camel,pax95\/camel,jollygeorge\/camel,yogamaha\/camel,nikvaessen\/camel,grange74\/camel,anton-k11\/camel,askannon\/camel,grgrzybek\/camel,CandleCandle\/camel,drsquidop\/camel,dkhanolkar\/camel,ramonmaruko\/camel,grange74\/camel,askannon\/camel,dpocock\/camel,rmarting\/camel,sabre1041\/camel,josefkarasek\/camel,manuelh9r\/camel,skinzer\/camel,oalles\/camel,grange74\/camel,jlpedrosa\/camel,haku\/camel,mgyongyosi\/camel,jpav\/camel,DariusX\/camel,engagepoint\/camel,anton-k11\/camel,pplatek\/camel,veithen\/camel,NickCis\/camel,pplatek\/camel,igarashitm\/camel,YMartsynkevych\/camel,ge0ffrey\/camel,driseley\/camel,mcollovati\/camel,partis\/camel,FingolfinTEK\/camel,adessaigne\/camel,jamesnetherton\/camel,davidwilliams1978\/camel,JYBESSON\/camel,partis\/camel,w4tson\/camel,w4tson\/camel,woj-i\/camel,royopa\/camel,NetNow\/camel,JYBESSON\/camel,tlehoux\/camel,nikhilvibhav\/camel,jollygeorge\/camel,pmoerenhout\/camel,acartapanis\/camel,royopa\/camel,jlpedrosa\/camel,edigrid\/camel,apache\/camel,iweiss\/camel,acartapanis\/camel,mohanaraosv\/camel,yogamaha\/camel,pkletsko\/camel,isavin\/camel,sirlatrom\/camel,jpav\/camel,sebi-hgdata\/camel,aaronwalker\/camel,koscejev\/camel,pax95\/camel,mgyongyosi\/camel,rparree\/camel,YMartsynkevych\/camel,objectiser\/camel,hqstevenson\/camel,isavin\/camel,w4tson\/camel,arnaud-deprez\/camel,DariusX\/camel,NetNow\/camel,jkorab\/camel,NickCis\/camel,joakibj\/camel,allancth\/camel,w4tson\/camel,sabre1041\/camel,dmvolod\/camel,prashant2402\/camel,jarst\/camel,nboukhed\/camel,snurmine\/camel,onders86\/camel,mcollovati\/camel,prashant2402\/camel,dsimansk\/camel,maschmid\/camel,sverkera\/camel,anton-k11\/camel,allancth\/camel,aaronwalker\/camel,nikhilvibhav\/camel,anoordover\/camel,woj-i\/camel,chanakaudaya\/camel,akhettar\/camel,mnki\/camel,jpav\/camel,chanakaudaya\/camel,yogamaha\/camel,dvankleef\/camel,RohanHart\/camel,scranton\/camel,trohovsky\/camel,erwelch\/camel,lburgazzoli\/apache-camel,drsquidop\/camel,maschmid\/camel,dmvolod\/camel,coderczp\/camel,noelo\/camel,CodeSmell\/camel,ekprayas\/camel,MrCoder\/camel,neoramon\/camel,dsimansk\/camel,cunningt\/camel,logzio\/camel,gautric\/camel,manuelh9r\/camel,yuruki\/camel,mzapletal\/camel,grange74\/camel,bgaudaen\/camel,davidwilliams1978\/camel,skinzer\/camel,pmoerenhout\/camel,bfitzpat\/camel,josefkarasek\/camel,sabre1041\/camel,qst-jdc-labs\/camel,snurmine\/camel,gyc567\/camel,stalet\/camel,pkletsko\/camel,tarilabs\/camel,lburgazzoli\/camel,igarashitm\/camel,sirlatrom\/camel,ramonmaruko\/camel,jonmcewen\/camel,igarashitm\/camel,mike-kukla\/camel,curso007\/camel,erwelch\/camel,rparree\/camel,anton-k11\/camel,skinzer\/camel,isururanawaka\/camel,ullgren\/camel,jonmcewen\/camel,brreitme\/camel,bfitzpat\/camel,snadakuduru\/camel,trohovsky\/camel,haku\/camel,dsimansk\/camel,dvankleef\/camel,arnaud-deprez\/camel,mnki\/camel,logzio\/camel,MohammedHammam\/camel,sverkera\/camel,edigrid\/camel,MrCoder\/camel,objectiser\/camel,jmandawg\/camel,Thopap\/camel,yury-vashchyla\/camel,allancth\/camel,snadakuduru\/camel,logzio\/camel,bdecoste\/camel,gautric\/camel,gnodet\/camel,NetNow\/camel,igarashitm\/camel,apache\/camel,bfitzpat\/camel,scranton\/camel,tdiesler\/camel,YoshikiHigo\/camel,mcollovati\/camel,ge0ffrey\/camel,anton-k11\/camel,chirino\/camel,jonmcewen\/camel,bfitzpat\/camel,dpocock\/camel,jkorab\/camel,igarashitm\/camel,tarilabs\/camel,pplatek\/camel,iweiss\/camel,mike-kukla\/camel,iweiss\/camel,jarst\/camel,ekprayas\/camel,Thopap\/camel,jpav\/camel,erwelch\/camel,yury-vashchyla\/camel,kevinearls\/camel,haku\/camel,lasombra\/camel,MrCoder\/camel,adessaigne\/camel,coderczp\/camel,rparree\/camel,akhettar\/camel,gyc567\/camel,yuruki\/camel,RohanHart\/camel,coderczp\/camel,pplatek\/camel,mnki\/camel,mcollovati\/camel,mnki\/camel,eformat\/camel,isavin\/camel,pplatek\/camel,zregvart\/camel,borcsokj\/camel,tdiesler\/camel,ullgren\/camel,onders86\/camel,qst-jdc-labs\/camel,neoramon\/camel,engagepoint\/camel,mohanaraosv\/camel,bgaudaen\/camel,haku\/camel,YMartsynkevych\/camel,jamesnetherton\/camel,pkletsko\/camel,jpav\/camel,gilfernandes\/camel,cunningt\/camel,johnpoth\/camel,curso007\/camel,grgrzybek\/camel,christophd\/camel,yury-vashchyla\/camel,CodeSmell\/camel,ramonmaruko\/camel,sebi-hgdata\/camel,oscerd\/camel,lburgazzoli\/apache-camel,lburgazzoli\/apache-camel,tlehoux\/camel,trohovsky\/camel,atoulme\/camel,neoramon\/camel,dkhanolkar\/camel,prashant2402\/camel,RohanHart\/camel,koscejev\/camel,johnpoth\/camel,mgyongyosi\/camel,sirlatrom\/camel,jkorab\/camel,tlehoux\/camel,sverkera\/camel,askannon\/camel,arnaud-deprez\/camel,ekprayas\/camel,royopa\/camel,nikvaessen\/camel,maschmid\/camel,woj-i\/camel,koscejev\/camel,lburgazzoli\/camel,neoramon\/camel,veithen\/camel,RohanHart\/camel,bgaudaen\/camel,lburgazzoli\/apache-camel,ssharma\/camel,MohammedHammam\/camel,tkopczynski\/camel,punkhorn\/camel-upstream,duro1\/camel,jlpedrosa\/camel,gyc567\/camel,DariusX\/camel,koscejev\/camel,curso007\/camel,ekprayas\/camel,atoulme\/camel,veithen\/camel,tlehoux\/camel,jmandawg\/camel,oscerd\/camel,qst-jdc-labs\/camel,yury-vashchyla\/camel,lasombra\/camel,gnodet\/camel,alvinkwekel\/camel,lburgazzoli\/apache-camel,mohanaraosv\/camel,maschmid\/camel,dpocock\/camel,jamesnetherton\/camel,atoulme\/camel,zregvart\/camel,qst-jdc-labs\/camel,partis\/camel,oalles\/camel,davidwilliams1978\/camel,oscerd\/camel,isavin\/camel,driseley\/camel,trohovsky\/camel,oalles\/camel,Fabryprog\/camel,ge0ffrey\/camel,MrCoder\/camel,duro1\/camel,tkopczynski\/camel,hqstevenson\/camel,edigrid\/camel,ssharma\/camel,tarilabs\/camel,eformat\/camel,davidwilliams1978\/camel,stravag\/camel,cunningt\/camel,ssharma\/camel,grgrzybek\/camel,Fabryprog\/camel,hqstevenson\/camel,borcsokj\/camel,bhaveshdt\/camel,alvinkwekel\/camel,FingolfinTEK\/camel,noelo\/camel,cunningt\/camel,driseley\/camel,Fabryprog\/camel,woj-i\/camel,acartapanis\/camel,Thopap\/camel,trohovsky\/camel,yuruki\/camel,gilfernandes\/camel,ge0ffrey\/camel,mzapletal\/camel,kevinearls\/camel,borcsokj\/camel,erwelch\/camel,jkorab\/camel,chanakaudaya\/camel,gilfernandes\/camel,prashant2402\/camel,nikvaessen\/camel,snurmine\/camel,adessaigne\/camel,bfitzpat\/camel,jmandawg\/camel,ekprayas\/camel,sebi-hgdata\/camel,gilfernandes\/camel,CandleCandle\/camel,jameszkw\/camel,ramonmaruko\/camel,edigrid\/camel,gautric\/camel,nikhilvibhav\/camel,woj-i\/camel,neoramon\/camel,RohanHart\/camel,dmvolod\/camel,bgaudaen\/camel,atoulme\/camel,duro1\/camel,rparree\/camel,joakibj\/camel,tadayosi\/camel,RohanHart\/camel,jamesnetherton\/camel,mohanaraosv\/camel,bdecoste\/camel,sebi-hgdata\/camel,pax95\/camel,CandleCandle\/camel,jarst\/camel,NickCis\/camel,YMartsynkevych\/camel,w4tson\/camel,NetNow\/camel,pkletsko\/camel,oalles\/camel,askannon\/camel,josefkarasek\/camel,ullgren\/camel,jarst\/camel,dvankleef\/camel,lburgazzoli\/camel,acartapanis\/camel,stalet\/camel,pkletsko\/camel,jkorab\/camel,jameszkw\/camel,objectiser\/camel,dsimansk\/camel,dmvolod\/camel,stalet\/camel,qst-jdc-labs\/camel,sirlatrom\/camel,davidkarlsen\/camel,engagepoint\/camel,partis\/camel,nboukhed\/camel,apache\/camel,woj-i\/camel,CodeSmell\/camel,bdecoste\/camel,akhettar\/camel,stalet\/camel,ssharma\/camel,satishgummadelli\/camel,maschmid\/camel,lowwool\/camel,sverkera\/camel,jonmcewen\/camel,sebi-hgdata\/camel,royopa\/camel,alvinkwekel\/camel,isururanawaka\/camel,rmarting\/camel,snurmine\/camel,iweiss\/camel,gilfernandes\/camel,maschmid\/camel,bgaudaen\/camel,haku\/camel,isururanawaka\/camel,gnodet\/camel,adessaigne\/camel,askannon\/camel","old_file":"components\/camel-web\/src\/main\/webapp\/WEB-INF\/scalate\/layouts\/default.scaml","new_file":"components\/camel-web\/src\/main\/webapp\/WEB-INF\/scalate\/layouts\/default.scaml","new_contents":"-#\n-# Copyright (C) 2009-2010 the original author or authors.\n-# See the notice.md file distributed with this work for additional\n-# information regarding copyright ownership.\n-#\n-# Licensed under the Apache License, Version 2.0 (the \"License\");\n-# you may not use this file except in compliance with the License.\n-# You may obtain a copy of the License at\n-#\n-# http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n-#\n-# Unless required by applicable law or agreed to in writing, software\n-# distributed under the License is distributed on an \"AS IS\" BASIS,\n-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n-# See the License for the specific language governing permissions and\n-# limitations under the License.\n-#\n\n!!! Basic\n-@ var body: String\n-@ var title : String = \"Camel Web Console\"\n- response.setContentType(\"text\/html\") \n%html(lang=\"en\")\n %head\n %meta(http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\")\n %meta(name=\"description\" content=\"Apache Camel Console\")\n %meta(name=\"keywords\" content=\"camel,eip,web\")\n\n = include(\"\/org\/fusesource\/scalate\/console\/console_head.scaml\")\n\n %link(href={uri(\"\/css\/site.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href={uri(\"\/css\/scalate\/console.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href={uri(\"\/css\/sorttable.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href={uri(\"\/css\/type-settings.css\")} rel=\"stylesheet\" type=\"text\/css\")\n\n\n - if (attributes.get(\"noJavaScript\").isEmpty)\n %script(src={uri(\"\/js\/common.js\")} type=\"text\/javascript\")\n %script(src={uri(\"\/js\/css.js\")} type=\"text\/javascript\")\n %script(src={uri(\"\/js\/standardista-table-sorting.js\")} type=\"text\/javascript\")\n\n %title\n = title\n \n %body\n .white_box\n .header\n .header_l\n .header_r\n .content\n .content_l\n .content_r\n %div\n \/ Banner\n #asf_logo\n #activemq_logo\n %a{:href => \"http:\/\/camel.apache.org\/\", :style => \"float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;\", :title => \"a powerful open source integration framework based on known Enterprise Integration Patterns with powerful Bean Integration\"} Camel\n %a{:href => \"http:\/\/www.apache.org\/\", :style => \"float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;\", :title => \"The Apache Software Foundation\"} ASF\n .top_red_bar\n #site-breadcrumbs\n - if (requestUri.startsWith(\"\/index\"))\n %span Home\n - else\n %a{:href => {uri(\"\/index\")}, title => \"Home\"} Home\n |\n %a{:href => {uri(\"\/endpoints\")}, :title => \"View current endpoints or create new ones\"} Endpoints\n |\n %a{:href => {uri(\"\/routes\")}, :title => \"View current routes\"} Routes\n #site-quicklinks\n %P\n %a{:href => \"http:\/\/camel.apache.org\/support.html\", :title => \"Get help and support using Apache Camel\"} Support\n\n %table{:border => \"0\"}\n %tbody\n %tr\n %td{:style => \"overflow:hidden;\", :valign => \"top\", :width => \"100%\"}\n .body-content\n !~~ body\n %td{:valign => \"top\"}\n .navigation\n .navigation_bottomon_top\n .navigation_bottom\n %H3 Useful Links\n %ul.alternate{:type => \"square\"}\n %li\n %a{:href => \"http:\/\/camel.apache.org\/documentation.html\", :title => \"a powerful open source integration framework based on known Enterprise Integration Patterns with powerful Bean Integration\"} Documentation\n %li\n %a{:href => \"http:\/\/camel.apache.org\/web-console.html\", :title => \"more help on using the Web Console\"} Console Help\n %li\n %a{:href => \"http:\/\/camel.apache.org\/faq.html\"} FAQ\n %li\n %a{:href => {uri(\"\/api\")}, :title => \"View the REST API details\"} API\n %li\n %a{:href => \"http:\/\/camel.apache.org\/download.html\"} Downloads\n %li\n %a{:href => \"http:\/\/camel.apache.org\/discussion-forums.html\"} Forums\n .bottom_red_bar\n .black_box\n .footer\n .footer_l\n .footer_r\n %div\n Copyright 2005-2009 The Apache Software Foundation.\n (\n %a{:href => \"?printable=true\"}> printable version\n )\n = include(\"\/org\/fusesource\/scalate\/console\/console.scaml\")\n\n .design_attribution\n %a{:href => \"http:\/\/hiramchirino.com\/\"} Graphic Design By Hiram ","old_contents":"-#\n-# Copyright (C) 2009-2010 the original author or authors.\n-# See the notice.md file distributed with this work for additional\n-# information regarding copyright ownership.\n-#\n-# Licensed under the Apache License, Version 2.0 (the \"License\");\n-# you may not use this file except in compliance with the License.\n-# You may obtain a copy of the License at\n-#\n-# http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n-#\n-# Unless required by applicable law or agreed to in writing, software\n-# distributed under the License is distributed on an \"AS IS\" BASIS,\n-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n-# See the License for the specific language governing permissions and\n-# limitations under the License.\n-#\n\n!!! Basic\n-@ var body: String\n-@ var title : String = \"Camel Web Console\"\n- response.setContentType(\"text\/html\") \n%html(lang=\"en\")\n %head\n %meta(http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\")\n %meta(name=\"description\" content=\"Apache Camel Console\")\n %meta(name=\"keywords\" content=\"camel,eip,web\")\n\n = include(\"\/org\/fusesource\/scalate\/console\/console_head.scaml\")\n\n %link(href={uri(\"\/css\/site.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href={uri(\"\/css\/scalate\/console.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href={uri(\"\/css\/sorttable.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href={uri(\"\/css\/type-settings.css\")} rel=\"stylesheet\" type=\"text\/css\")\n\n\n - if (attributes.get(\"noJavaScript\").isEmpty)\n %script(src={uri(\"\/js\/common.js\")} type=\"text\/javascript\")\n %script(src={uri(\"\/js\/css.js\")} type=\"text\/javascript\")\n %script(src={uri(\"\/js\/standardista-table-sorting.js\")} type=\"text\/javascript\")\n\n %title\n = title\n \n %body\n .white_box\n .header\n .header_l\n .header_r\n .content\n .content_l\n .content_r\n %div\n \/ Banner\n #asf_logo\n #activemq_logo\n %a{:href => \"http:\/\/camel.apache.org\/\", :style => \"float:left; width:280px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:10px; margin-left:100px;\", :title => \"a powerful open source integration framework based on known Enterprise Integration Patterns with powerful Bean Integration\"} Camel\n %a{:href => \"http:\/\/www.apache.org\/\", :style => \"float:right; width:210px;display:block;text-indent:-5000px;text-decoration:none;line-height:60px; margin-top:15px; margin-right:10px;\", :title => \"The Apache Software Foundation\"} ASF\n .top_red_bar\n #site-breadcrumbs\n - if (requestURI.startsWith(\"\/index\"))\n %span Home\n - else\n %a{:href => {uri(\"\/index\")}, title => \"Home\"} Home\n |\n %a{:href => {uri(\"\/endpoints\")}, :title => \"View current endpoints or create new ones\"} Endpoints\n |\n %a{:href => {uri(\"\/routes\")}, :title => \"View current routes\"} Routes\n #site-quicklinks\n %P\n %a{:href => \"http:\/\/camel.apache.org\/support.html\", :title => \"Get help and support using Apache Camel\"} Support\n\n %table{:border => \"0\"}\n %tbody\n %tr\n %td{:style => \"overflow:hidden;\", :valign => \"top\", :width => \"100%\"}\n .body-content\n !~~ body\n %td{:valign => \"top\"}\n .navigation\n .navigation_bottomon_top\n .navigation_bottom\n %H3 Useful Links\n %ul.alternate{:type => \"square\"}\n %li\n %a{:href => \"http:\/\/camel.apache.org\/documentation.html\", :title => \"a powerful open source integration framework based on known Enterprise Integration Patterns with powerful Bean Integration\"} Documentation\n %li\n %a{:href => \"http:\/\/camel.apache.org\/web-console.html\", :title => \"more help on using the Web Console\"} Console Help\n %li\n %a{:href => \"http:\/\/camel.apache.org\/faq.html\"} FAQ\n %li\n %a{:href => {uri(\"\/api\")}, :title => \"View the REST API details\"} API\n %li\n %a{:href => \"http:\/\/camel.apache.org\/download.html\"} Downloads\n %li\n %a{:href => \"http:\/\/camel.apache.org\/discussion-forums.html\"} Forums\n .bottom_red_bar\n .black_box\n .footer\n .footer_l\n .footer_r\n %div\n Copyright 2005-2009 The Apache Software Foundation.\n (\n %a{:href => \"?printable=true\"}> printable version\n )\n = include(\"\/org\/fusesource\/scalate\/console\/console.scaml\")\n\n .design_attribution\n %a{:href => \"http:\/\/hiramchirino.com\/\"} Graphic Design By Hiram ","returncode":0,"stderr":"","license":"apache-2.0","lang":"Scaml"} {"commit":"724b85982e0b65c52ba81b023731a7d94a990d3b","subject":"added links to template \/ scala with errors","message":"added links to template \/ scala with errors\n","repos":"maslovalex\/scalate,maslovalex\/scalate,scalate\/scalate,janurag\/scalate,maslovalex\/scalate,scalate\/scalate,scalate\/scalate,maslovalex\/scalate,maslovalex\/scalate,janurag\/scalate,janurag\/scalate,janurag\/scalate,scalate\/scalate,janurag\/scalate","old_file":"scalate-sample\/src\/main\/webapp\/WEB-INF\/errors\/500.scaml","new_file":"scalate-sample\/src\/main\/webapp\/WEB-INF\/errors\/500.scaml","new_contents":"- import org.fusesource.scalate._\n- import org.fusesource.scalate.console._\n- val consoleHelper = new ConsoleHelper(context)\n- import consoleHelper._\n- val exception = attributes(\"javax.servlet.error.exception\")\n- val message = attributeOrElse(\"javax.servlet.error.message\", \"\")\n- val errorRequestUri = attributeOrElse(\"javax.servlet.error.request_uri\", \"\")\n- val errorCode = attributeOrElse(\"javax.servlet.error.status_code\", 500)\n\n%link(href={uri(\"\/css\/scalate\/errors.css\")} rel=\"stylesheet\" type=\"text\/css\")\n\n- exception match\n - case e:InvalidSyntaxException =>\n - val template = e.template\n - val pos = e.pos\n \n #header.block\n %h1\n = message\n \n #source.block \n %h2 \n = editLink(template, pos.line, pos.column)\n In #{template} near line #{pos.line} col #{pos.column}\n\n -# TODO show snippet of file here...\n\n - case e:CompilerException =>\n - val template = e.template\n -# - val pos = e.pos\n \n #header.block\n %h1\n = message\n \n #source.block \n %h2 \n = editLink(template)\n In #{template} \n\n -# TODO show snippet of file here...\n\n - case u =>\n #header.block\n %h1\n = message\n %p\n = u\n\n\n\n","old_contents":"- import org.fusesource.scalate._\n- import org.fusesource.scalate.console._\n- val consoleHelper = new ConsoleHelper(context)\n- import consoleHelper._\n- val exception = attributes(\"javax.servlet.error.exception\")\n- val message = attributeOrElse(\"javax.servlet.error.message\", \"\")\n- val errorRequestUri = attributeOrElse(\"javax.servlet.error.request_uri\", \"\")\n- val errorCode = attributeOrElse(\"javax.servlet.error.status_code\", 500)\n\n%link(href={uri(\"\/css\/scalate\/errors.css\")} rel=\"stylesheet\" type=\"text\/css\")\n\n- exception match\n - case e:InvalidSyntaxException =>\n - val template = \"\/scaml\/errors\/templateCompileError.scaml\"\n - val pos = e.pos\n \n #header.block\n %h1\n = message\n \n #source.block \n %h2 \n = editLink(template, pos.line, pos.column)\n In #{template} near line #{pos.line} col #{pos.column}\n\n -# TODO show snippet of file here...\n\n - case u =>\n #header.block\n %h1\n = message\n\n\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"Scaml"} {"commit":"0808142f98949a95b666b06fe3644c6fdc32cd8e","subject":"Manually escape & -> &","message":"Manually escape & -> &\n","repos":"caiiiycuk\/xitrum,xitrum-framework\/xitrum,georgeOsdDev\/xitrum","old_file":"src\/main\/resources\/colinh\/view\/layouts\/application.scaml","new_file":"src\/main\/resources\/colinh\/view\/layouts\/application.scaml","new_contents":"!!!\n%html(xmlns=\"http:\/\/www.w3.org\/1999\/xhtml\" xml:lang=\"en\" lang=\"en\")\n %head\n %meta(content=\"text\/html; charset=utf-8\" http-equiv=\"content-type\")\n\n %title Colinh - #{at(\"title\")}\n\n %link(type=\"image\/vnd.microsoft.icon\" rel=\"shortcut icon\" href=\"\/static\/img\/favicon.ico\")\n\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/960\/reset.css\")\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/960\/text.css\")\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/960\/960.css\")\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/application.css\")\n\n %script(type=\"text\/javascript\" src=\"\/static\/js\/jquery-1.4.2.min.js\")\n %script(type=\"text\/javascript\" src=\"\/static\/tinymce-3.3.8\/jquery.tinymce.js\")\n %script(type=\"text\/javascript\" src=\"\/static\/js\/application.js\")\n %body\n .container_12\n #header.grid_12\n %h1\n %a(href=\"\/\") Colinh\n\n #content.grid_9\n != at(\"content_for_layout\")\n #footer Powered by Colinh & Xitrum\n\n #sidebar.grid_3\n %a(href=\"\/articles\/make\") Create new article\n","old_contents":"!!!\n%html(xmlns=\"http:\/\/www.w3.org\/1999\/xhtml\" xml:lang=\"en\" lang=\"en\")\n %head\n %meta(content=\"text\/html; charset=utf-8\" http-equiv=\"content-type\")\n\n %title Colinh - #{at(\"title\")}\n\n %link(type=\"image\/vnd.microsoft.icon\" rel=\"shortcut icon\" href=\"\/static\/img\/favicon.ico\")\n\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/960\/reset.css\")\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/960\/text.css\")\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/960\/960.css\")\n %link(type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"\/static\/css\/application.css\")\n\n %script(type=\"text\/javascript\" src=\"\/static\/js\/jquery-1.4.2.min.js\")\n %script(type=\"text\/javascript\" src=\"\/static\/tinymce-3.3.8\/jquery.tinymce.js\")\n %script(type=\"text\/javascript\" src=\"\/static\/js\/application.js\")\n %body\n .container_12\n #header.grid_12\n %h1\n %a(href=\"\/\") Colinh\n\n #content.grid_9\n != at(\"content_for_layout\")\n #footer Powered by Colinh & Xitrum\n\n #sidebar.grid_3\n %a(href=\"\/articles\/make\") Create new article\n","returncode":0,"stderr":"","license":"mit","lang":"Scaml"} {"commit":"3a6875c89b4173a9cfcf386b8508d407c31c84bb","subject":"fixed up image URLs on the console so they work when inside a web application context","message":"fixed up image URLs on the console so they work when inside a web application context\n","repos":"janurag\/scalate,maslovalex\/scalate,maslovalex\/scalate,janurag\/scalate,maslovalex\/scalate,janurag\/scalate,scalate\/scalate,janurag\/scalate,maslovalex\/scalate,janurag\/scalate,scalate\/scalate,maslovalex\/scalate,scalate\/scalate,scalate\/scalate","old_file":"scalate-core\/src\/main\/resources\/org\/fusesource\/scalate\/console\/console.scaml","new_file":"scalate-core\/src\/main\/resources\/org\/fusesource\/scalate\/console\/console.scaml","new_contents":"-#\n-# Copyright (C) 2009-2010 the original author or authors.\n-# See the notice.md file distributed with this work for additional\n-# information regarding copyright ownership.\n-#\n-# Licensed under the Apache License, Version 2.0 (the \"License\");\n-# you may not use this file except in compliance with the License.\n-# You may obtain a copy of the License at\n-#\n-# http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n-#\n-# Unless required by applicable law or agreed to in writing, software\n-# distributed under the License is distributed on an \"AS IS\" BASIS,\n-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n-# See the License for the specific language governing permissions and\n-# limitations under the License.\n-#\n\n-@ import val consoleHelper: ConsoleHelper = new ConsoleHelper(context) \n- if (isDevelopmentMode)\n #scalate-console\n - if (!optionEnabled(\"console\"))\n .toggle.show\n %a(href={enableLink(\"console\")} class=\"consoleLink\" title=\"Show the Scalate Console\")\n %img(src={uri(\"\/images\/scalate\/project-icon-24x24.png\")})\n %img(src={uri(\"\/images\/scalate\/plus.png\")})\n - else\n .toggle.hide\n %a(href={disableLink(\"console\")} class=\"consoleLink hide\" title=\"Hide the Scalate Console\")\n %img(src={uri(\"\/images\/scalate\/project-icon-24x24.png\")})\n Scalate Console\n %img(src={uri(\"\/images\/scalate\/minus.png\")})\n\n .archetypes\n %p Create\n = render(\"\/WEB-INF\/scalate\/archetypes\/menu.scaml\")\n\n -#\n - if (newTemplateName.isDefined && resourceClassName.isDefined)\n - val newName = newTemplateName.get\n %h3 Create New Custom Template\n %p Create a new template called #{newName} from archetype\n %ul\n - for (a <- archetypes)\n %li\n %form(action={uri(\"\/scalate\/createTemplate\")} method=\"post\")\n %input(type=\"hidden\" name=\"archetype\" value={a.archetype})\n %input(type=\"hidden\" name=\"newTemplateName\" value={newName})\n %input(type=\"hidden\" name=\"resourceClass\" value={resourceClassName.get})\n %input(type=\"submit\" value={a.name})\n\n\n - val sourceFile = resourceSourceFile\n - if (sourceFile.isDefined)\n .resources\n %p Resources\n - val file = resourceSourceFile.get\n %ul\n %li\n - println(\"Found file: \" + file)\n = editFileLink(file.getAbsolutePath)\n = shorten(file)\n\n - if (!templates.isEmpty)\n .templates\n %p Templates\n %ul\n - for (template <- templates)\n - val link = editLink(template)\n = template.stripPrefix(\"\/\")\n - if (!link.isEmpty)\n %li\n = link\n\n - if (!layouts.isEmpty)\n .layouts\n %p Layouts\n %ul\n - for (layout <- layouts)\n %li\n = editLink(layout)\n = layout.stripPrefix(\"\/\")\n\n %form(action={uri(\"\/scalate\/invalidateCachedTemplates\")} method=\"post\")\n %input(type=\"submit\" value=\"Clear Cache\")\n\n - if (!optionEnabled(\"attributes\"))\n .toggle.show\n %a(href={enableLink(\"attributes\")} title=\"Show the Attributes\")\n Attributes\n %img(src={uri(\"\/images\/scalate\/plus.png\")})\n - else\n .toggle.hide\n %a(href={disableLink(\"attributes\")} title=\"Hide the Attributes\")\n Attributes\n %img(src={uri(\"\/images\/scalate\/minus.png\")})\n .attributes\n %table#attributes\n %tr\n %th Name\n %th Value\n - for (k <- attributeKeys)\n - if (k != \"body\")\n %tr\n %td#name\n = k\n %td#value\n = attributes(k)\n\n - if( attributes(\"body\")!=null )\n - if (!optionEnabled(\"body\"))\n .toggle.show\n %a(href={enableLink(\"body\")} title=\"Show the Body\")\n Body\n %img(src={uri(\"\/images\/scalate\/plus.png\")})\n - else\n .toggle.hide\n %a(href={disableLink(\"body\")} title=\"Hide the Body\")\n Body\n %img(src={uri(\"\/images\/scalate\/minus.png\")})\n .body\n %pre(class=\"brush: html\")<\n &~ attributes(\"body\")\n :javascript\n SyntaxHighlighter.all()\n\n - if (!optionEnabled(\"sysProp\"))\n .toggle.show\n %a(href={enableLink(\"sysProp\")} title=\"Show the System Properties\")\n System Properties\n %img(src={uri(\"\/images\/scalate\/plus.png\")})\n - else\n .toggle.hide\n %a(href={disableLink(\"sysProp\")} title=\"Hide the System Properties\")\n System Properties\n %img(src={uri(\"\/images\/scalate\/minus.png\")})\n .systemProperties\n %table#systemProperties\n %tr\n %th Name\n %th Value\n - for ((k,v) <- systemProperties)\n %tr\n %td#name\n = k\n %td#value\n = v\n\n","old_contents":"-#\n-# Copyright (C) 2009-2010 the original author or authors.\n-# See the notice.md file distributed with this work for additional\n-# information regarding copyright ownership.\n-#\n-# Licensed under the Apache License, Version 2.0 (the \"License\");\n-# you may not use this file except in compliance with the License.\n-# You may obtain a copy of the License at\n-#\n-# http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n-#\n-# Unless required by applicable law or agreed to in writing, software\n-# distributed under the License is distributed on an \"AS IS\" BASIS,\n-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n-# See the License for the specific language governing permissions and\n-# limitations under the License.\n-#\n\n-@ import val consoleHelper: ConsoleHelper = new ConsoleHelper(context) \n- if (isDevelopmentMode)\n #scalate-console\n - if (!optionEnabled(\"console\"))\n .toggle.show\n %a(href={enableLink(\"console\")} class=\"consoleLink\" title=\"Show the Scalate Console\")\n %img(src=\"\/images\/scalate\/project-icon-24x24.png\")\n %img(src=\"\/images\/scalate\/plus.png\")\n - else\n .toggle.hide\n %a(href={disableLink(\"console\")} class=\"consoleLink hide\" title=\"Hide the Scalate Console\")\n %img(src=\"\/images\/scalate\/project-icon-24x24.png\")\n Scalate Console\n %img(src=\"\/images\/scalate\/minus.png\")\n\n .archetypes\n %p Create\n = render(\"\/WEB-INF\/scalate\/archetypes\/menu.scaml\")\n\n -#\n - if (newTemplateName.isDefined && resourceClassName.isDefined)\n - val newName = newTemplateName.get\n %h3 Create New Custom Template\n %p Create a new template called #{newName} from archetype\n %ul\n - for (a <- archetypes)\n %li\n %form(action={uri(\"\/scalate\/createTemplate\")} method=\"post\")\n %input(type=\"hidden\" name=\"archetype\" value={a.archetype})\n %input(type=\"hidden\" name=\"newTemplateName\" value={newName})\n %input(type=\"hidden\" name=\"resourceClass\" value={resourceClassName.get})\n %input(type=\"submit\" value={a.name})\n\n\n - val sourceFile = resourceSourceFile\n - if (sourceFile.isDefined)\n .resources\n %p Resources\n - val file = resourceSourceFile.get\n %ul\n %li\n - println(\"Found file: \" + file)\n = editFileLink(file.getAbsolutePath)\n = shorten(file)\n\n - if (!templates.isEmpty)\n .templates\n %p Templates\n %ul\n - for (template <- templates)\n - val link = editLink(template)\n = template.stripPrefix(\"\/\")\n - if (!link.isEmpty)\n %li\n = link\n\n - if (!layouts.isEmpty)\n .layouts\n %p Layouts\n %ul\n - for (layout <- layouts)\n %li\n = editLink(layout)\n = layout.stripPrefix(\"\/\")\n\n %form(action={uri(\"\/scalate\/invalidateCachedTemplates\")} method=\"post\")\n %input(type=\"submit\" value=\"Clear Cache\")\n\n - if (!optionEnabled(\"attributes\"))\n .toggle.show\n %a(href={enableLink(\"attributes\")} title=\"Show the Attributes\")\n Attributes\n %img(src=\"\/images\/scalate\/plus.png\")\n - else\n .toggle.hide\n %a(href={disableLink(\"attributes\")} title=\"Hide the Attributes\")\n Attributes\n %img(src=\"\/images\/scalate\/minus.png\")\n .attributes\n %table#attributes\n %tr\n %th Name\n %th Value\n - for (k <- attributeKeys)\n - if (k != \"body\")\n %tr\n %td#name\n = k\n %td#value\n = attributes(k)\n\n - if( attributes(\"body\")!=null )\n - if (!optionEnabled(\"body\"))\n .toggle.show\n %a(href={enableLink(\"body\")} title=\"Show the Body\")\n Body\n %img(src=\"\/images\/scalate\/plus.png\")\n - else\n .toggle.hide\n %a(href={disableLink(\"body\")} title=\"Hide the Body\")\n Body\n %img(src=\"\/images\/scalate\/minus.png\")\n .body\n %pre(class=\"brush: html\")<\n &~ attributes(\"body\")\n :javascript\n SyntaxHighlighter.all()\n\n - if (!optionEnabled(\"sysProp\"))\n .toggle.show\n %a(href={enableLink(\"sysProp\")} title=\"Show the System Properties\")\n System Properties\n %img(src=\"\/images\/scalate\/plus.png\")\n - else\n .toggle.hide\n %a(href={disableLink(\"sysProp\")} title=\"Hide the System Properties\")\n System Properties\n %img(src=\"\/images\/scalate\/minus.png\")\n .systemProperties\n %table#systemProperties\n %tr\n %th Name\n %th Value\n - for ((k,v) <- systemProperties)\n %tr\n %td#name\n = k\n %td#value\n = v\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"Scaml"} {"commit":"c62b5651b880ff98072b3b22280b95dc4d46a307","subject":"Fixed the back link","message":"Fixed the back link\n\ngit-svn-id: 2e7d1941c9591a1d82c6889778b1870c4945235f@1031631 13f79535-47bb-0310-9956-ffa450edef68\n","repos":"chirino\/activemq-apollo,chirino\/activemq-apollo,chirino\/activemq-apollo,chirino\/activemq-apollo,chirino\/activemq-apollo,chirino\/activemq-apollo,chirino\/activemq-apollo,chirino\/activemq-apollo,chirino\/activemq-apollo","old_file":"apollo-web\/src\/main\/webapp\/WEB-INF\/org\/apache\/activemq\/apollo\/dto\/QueueStatusDTO.scaml","new_file":"apollo-web\/src\/main\/webapp\/WEB-INF\/org\/apache\/activemq\/apollo\/dto\/QueueStatusDTO.scaml","new_contents":"-# Licensed to the Apache Software Foundation (ASF) under one or more\n-# contributor license agreements. See the NOTICE file distributed with\n-# this work for additional information regarding copyright ownership.\n-# The ASF licenses this file to You under the Apache License, Version 2.0\n-# (the \"License\"); you may not use this file except in compliance with\n-# the License. You may obtain a copy of the License at\n-# \n-# http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n-# \n-# Unless required by applicable law or agreed to in writing, software\n-# distributed under the License is distributed on an \"AS IS\" BASIS,\n-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n-# See the License for the specific language governing permissions and\n-# limitations under the License.\n\n- import it._\n- val helper = new org.apache.activemq.apollo.web.resources.ViewHelper\n- import helper._\n\n.breadcumbs\n %a(href={strip_resolve(\"..\")}) Back\n\n%h1 Queue: #{label}\n\n%h2 Current Size\n\n%p queue size: #{queue_items} messages\n%p queue size: #{memory(queue_size)}\n- if( capacity > 0 )\n %p memory used: #{ \"%,.2f\".format(capacity_used.toFloat*100.0\/capacity) }% (#{memory(capacity_used)}\/#{memory(capacity)})\n- else\n %p memory used: #{ \"%,.2f\".format(0f) }% (#{memory(capacity_used)}\/#{memory(capacity)})\n\n%h2 Enqueue\/Deqeueue Counters\n\n%p enqueued: #{enqueue_item_counter} messages\n%p enqueued: #{memory(enqueue_size_counter)}\n\n%p dequeued: #{dequeue_item_counter} messages\n%p dequeued: #{memory(dequeue_size_counter)}\n\n%p nacked: #{nack_item_counter} messages\n%p nacked: #{memory(nack_size_counter)}\n\n%h2 Swap Status\n\n%p loading from the store: #{memory(loading_size)}\n%p flushing out of memory: #{memory(flushing_size)}\n%p holding : #{flushed_items} flushed message references\n\n%h3 Producers\n%ul\n - for( x <- producers )\n %li\n %a(href={ path(\"..\/..\/..\/..\/..\/..\/connections\/\"+x.id) }) #{x.label}\n\n%h3 Consumers\n%ul\n - for( x <- consumers )\n %li\n %a(href={ path(\"..\/..\/..\/..\/..\/..\/connections\/\"+x.id) }) #{x.label}\n\n\n- if ( entries.isEmpty )\n %h2\n Entries Dump\n %a(href={ id+\"?entries=true\" }) (Show)\n- else\n %h2\n Entries Dump\n %a(href={ id }) (Hide)\n %table.queue-entries\n %tr\n %th State\n %th Size\n %th consumers, prefetched\n %th position:count\n\n - for( x <- entries )\n %tr\n %td #{x.state}\n %td #{memory(x.size)}\n %td #{x.consumer_count}, #{x.prefetch_count}\n %td #{x.seq}:#{x.count}\n\n","old_contents":"-# Licensed to the Apache Software Foundation (ASF) under one or more\n-# contributor license agreements. See the NOTICE file distributed with\n-# this work for additional information regarding copyright ownership.\n-# The ASF licenses this file to You under the Apache License, Version 2.0\n-# (the \"License\"); you may not use this file except in compliance with\n-# the License. You may obtain a copy of the License at\n-# \n-# http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n-# \n-# Unless required by applicable law or agreed to in writing, software\n-# distributed under the License is distributed on an \"AS IS\" BASIS,\n-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n-# See the License for the specific language governing permissions and\n-# limitations under the License.\n\n- import it._\n- val helper = new org.apache.activemq.apollo.web.resources.ViewHelper\n- import helper._\n\n.breadcumbs\n %a(href={strip_resolve(\".\")}) Back\n\n%h1 Queue: #{label}\n\n%h2 Current Size\n\n%p queue size: #{queue_items} messages\n%p queue size: #{memory(queue_size)}\n- if( capacity > 0 )\n %p memory used: #{ \"%,.2f\".format(capacity_used.toFloat*100.0\/capacity) }% (#{memory(capacity_used)}\/#{memory(capacity)})\n- else\n %p memory used: #{ \"%,.2f\".format(0f) }% (#{memory(capacity_used)}\/#{memory(capacity)})\n\n%h2 Enqueue\/Deqeueue Counters\n\n%p enqueued: #{enqueue_item_counter} messages\n%p enqueued: #{memory(enqueue_size_counter)}\n\n%p dequeued: #{dequeue_item_counter} messages\n%p dequeued: #{memory(dequeue_size_counter)}\n\n%p nacked: #{nack_item_counter} messages\n%p nacked: #{memory(nack_size_counter)}\n\n%h2 Memory Mangement\n\n%p loading from the store: #{memory(loading_size)}\n%p flushing out of memory: #{memory(flushing_size)}\n%p holding : #{flushed_items} flushed message references\n\n%h3 Producers\n%ul\n - for( x <- producers )\n %li\n %a(href={ path(\"..\/..\/..\/..\/..\/..\/connections\/\"+x.id) }) #{x.label}\n\n%h3 Consumers\n%ul\n - for( x <- consumers )\n %li\n %a(href={ path(\"..\/..\/..\/..\/..\/..\/connections\/\"+x.id) }) #{x.label}\n\n\n- if ( entries.isEmpty )\n %h2\n Entries Dump\n %a(href={ id+\"?entries=true\" }) (Show)\n- else\n %h2\n Entries Dump\n %a(href={ id }) (Hide)\n %table.queue-entries\n %tr\n %th State\n %th Size\n %th consumers, prefetched\n %th position:count\n\n - for( x <- entries )\n %tr\n %td #{x.state}\n %td #{memory(x.size)}\n %td #{x.consumer_count}, #{x.prefetch_count}\n %td #{x.seq}:#{x.count}\n\n","returncode":0,"stderr":"","license":"apache-2.0","lang":"Scaml"} {"commit":"3ed456558975f6e1fb8f1b1cf4a5c82b70642d2b","subject":"move reference from static css to compiled css for twitter bootstrap","message":"move reference from static css to compiled css for twitter bootstrap","repos":"gregoryboucher\/resume-app,gregoryboucher\/resume-app","old_file":"src\/main\/webapp\/WEB-INF\/templates\/layouts\/default.scaml","new_file":"src\/main\/webapp\/WEB-INF\/templates\/layouts\/default.scaml","new_contents":"-@ var title: String = \"Defaul Title\"\n-@ var headline: String = title\n-@ var body: String\n-@ var zip: String = \"Home Zip\"\n\n!!!\n%html\n\t%head\n\t\t%title #{title}\n\t\t%meta{:charset => \"utf-8\"}\n\t\t%meta{\"http-equiv\" => \"X-UA-Compatible\", :content => \"IE=edge\"}\n\t\t%meta{:name => \"viewport\", :content => \"width=device-width, initial-scale=1.0\"}\n\t\t%link{:href => \"css\/compiled\/bootstrap.css\", :rel => \"stylesheet\"}\n\t\t%link{:href => \"css\/starter-template.css\", :rel => \"stylesheet\"}\n\t\t\/ HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries\n\t\t\/[if lt IE 9]\n\t\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/oss.maxcdn.com\/libs\/html5shiv\/3.7.0\/html5shiv.js\"}\n\t\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/oss.maxcdn.com\/libs\/respond.js\/1.3.0\/respond.min.js\"}\n\t%body\n\t\t- render(\"\/layouts\/navbar.scaml\") \n\t\t.container\n\t\t\t%header\n\t\t\t\t%h1\n\t\t\t\t\t#{headline}\n\t\t\t\t\t%span.glyphicon.glyphicon-glass\n\t\t\t%section\n\t\t\t\t!= body\n\t\t\t%footer #{zip}\n\t\t\/ jQuery (necessary for Bootstrap's JavaScript plugins)\n\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/code.jquery.com\/jquery.js\"}\n\t\t\/ Include all compiled plugins (below), or include individual files as needed\n\t\t%script{:type => \"text\/javascript\",:src => \"js\/compiled\/bootstrap.js\"}\n\t\t%script\n\t\t\t$('a').tooltip()","old_contents":"-@ var title: String = \"Defaul Title\"\n-@ var headline: String = title\n-@ var body: String\n-@ var zip: String = \"Home Zip\"\n\n!!!\n%html\n\t%head\n\t\t%title #{title}\n\t\t%meta{:charset => \"utf-8\"}\n\t\t%meta{\"http-equiv\" => \"X-UA-Compatible\", :content => \"IE=edge\"}\n\t\t%meta{:name => \"viewport\", :content => \"width=device-width, initial-scale=1.0\"}\n\t\t%link{:href => \"css\/bootstrap.css\", :rel => \"stylesheet\"}\n\t\t%link{:href => \"css\/starter-template.css\", :rel => \"stylesheet\"}\n\t\t\/ HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries\n\t\t\/[if lt IE 9]\n\t\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/oss.maxcdn.com\/libs\/html5shiv\/3.7.0\/html5shiv.js\"}\n\t\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/oss.maxcdn.com\/libs\/respond.js\/1.3.0\/respond.min.js\"}\n\t%body\n\t\t- render(\"\/layouts\/navbar.scaml\") \n\t\t.container\n\t\t\t%header\n\t\t\t\t%h1\n\t\t\t\t\t#{headline}\n\t\t\t\t\t%span.glyphicon.glyphicon-glass\n\t\t\t%section\n\t\t\t\t!= body\n\t\t\t%footer #{zip}\n\t\t\/ jQuery (necessary for Bootstrap's JavaScript plugins)\n\t\t%script{:type => \"text\/javascript\",:src => \"https:\/\/code.jquery.com\/jquery.js\"}\n\t\t\/ Include all compiled plugins (below), or include individual files as needed\n\t\t%script{:type => \"text\/javascript\",:src => \"js\/compiled\/bootstrap.js\"}\n\t\t%script\n\t\t\t$('a').tooltip()","returncode":0,"stderr":"","license":"mit","lang":"Scaml"} {"commit":"096935be72e84f96af9461d5fc75b6a48a4e5041","subject":"Fixed admin link.","message":"Fixed admin link.\n","repos":"dozed\/fink,dozed\/fink","old_file":"fink-sample\/src\/main\/webapp\/WEB-INF\/themes\/simple\/layouts\/default.scaml","new_file":"fink-sample\/src\/main\/webapp\/WEB-INF\/themes\/simple\/layouts\/default.scaml","new_contents":"- import org.noorg.fink.admin.support.Theming._\n- response.setContentType(\"text\/html\")\n\n-@ var pages : org.noorg.fink.data.repository.PageRepository\n-@ var rootPage : org.noorg.fink.data.entities.Page\n\n-@ var body: String\n-@ var title : String = \"fink Sample Page\"\n\n!!! Basic\n%html(lang=\"en\")\n %head\n %meta(http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\")\n\n %meta(name=\"description\" content=\"description goes here\")\n %meta(name=\"keywords\" content=\"keywords,goes,here\")\n %meta(name=\"author\" content=\"Your Name\")\n\n %link(href={themeBase(\"\/css\/style.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href=\"http:\/\/fonts.googleapis.com\/css?family=Mako|Anton|News+Cycle|Nobile&v2\" rel=\"stylesheet\" type=\"text\/css\")\n \n %script(type=\"text\/javascript\" src={themeBase(\"\/js\/jquery-1.5.1.min.js\")})\n\n %title\n = title\n \n %body\n #navigation\n .wrapper\n %img(src={themeBase(\"\/images\/fink.png\")})\n .menu\n .up\n %ul\n - if (requestUri.startsWith(\"\/index.\"))\n %li\n %span People\n - else\n %li\n %a(href={uri(\"\/collections\/nature\")}) Nature\n %li\n %a(href={uri(\"\/collections\/city\")}) City\n %li\n %a(href={uri(\"\/dates\")}) Dates\n %li\n %a(href={uri(\"\/posts\")}) Posts\n %li\n %a(href={uri(\"\/fink-admin\/\")}) Admin\n .down\n %ul\n -for( page <- pages.findPagesByTag(\"sub-menu\") )\n %li\n %a(href={uri(\"\/pages\/\"+page.getShortlink)}) #{page.getTitle}\n %div(style=\"clear:both\")\n \n\n #content\n .wrapper\n !~~ body\n \n #footer\n .wrapper\n %br\n \n","old_contents":"- import org.noorg.fink.admin.support.Theming._\n- response.setContentType(\"text\/html\")\n\n-@ var pages : org.noorg.fink.data.repository.PageRepository\n-@ var rootPage : org.noorg.fink.data.entities.Page\n\n-@ var body: String\n-@ var title : String = \"fink Sample Page\"\n\n!!! Basic\n%html(lang=\"en\")\n %head\n %meta(http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\")\n\n %meta(name=\"description\" content=\"description goes here\")\n %meta(name=\"keywords\" content=\"keywords,goes,here\")\n %meta(name=\"author\" content=\"Your Name\")\n\n %link(href={themeBase(\"\/css\/style.css\")} rel=\"stylesheet\" type=\"text\/css\")\n %link(href=\"http:\/\/fonts.googleapis.com\/css?family=Mako|Anton|News+Cycle|Nobile&v2\" rel=\"stylesheet\" type=\"text\/css\")\n \n %script(type=\"text\/javascript\" src={themeBase(\"\/js\/jquery-1.5.1.min.js\")})\n\n %title\n = title\n \n %body\n #navigation\n .wrapper\n %img(src={themeBase(\"\/images\/fink.png\")})\n .menu\n .up\n %ul\n - if (requestUri.startsWith(\"\/index.\"))\n %li\n %span People\n - else\n %li\n %a(href={uri(\"\/collections\/nature\")}) Nature\n %li\n %a(href={uri(\"\/collections\/city\")}) City\n %li\n %a(href={uri(\"\/dates\")}) Dates\n %li\n %a(href={uri(\"\/posts\")}) Posts\n %li\n %a(href={uri(\"\/admin\/\")}) Admin\n .down\n %ul\n -for( page <- pages.findPagesByTag(\"sub-menu\") )\n %li\n %a(href={uri(\"\/pages\/\"+page.getShortlink)}) #{page.getTitle}\n %div(style=\"clear:both\")\n \n\n #content\n .wrapper\n !~~ body\n \n #footer\n .wrapper\n %br\n \n","returncode":0,"stderr":"","license":"mit","lang":"Scaml"} {"commit":"ab76c7691630490f0e8400bf4ffe1eec3269c355","subject":"Add support for scaml templates with Jersey. Use Jersey 1.2-SNAPSHOT that has support for templates names with class name.","message":"Add support for scaml templates with Jersey.\nUse Jersey 1.2-SNAPSHOT that has support for templates names with class name.\n","repos":"maslovalex\/scalate,janurag\/scalate,janurag\/scalate,janurag\/scalate,scalate\/scalate,maslovalex\/scalate,maslovalex\/scalate,janurag\/scalate,scalate\/scalate,maslovalex\/scalate,scalate\/scalate,scalate\/scalate,maslovalex\/scalate,janurag\/scalate","old_file":"scalate-sample\/src\/main\/webapp\/org\/fusesource\/scalate\/sample\/resources\/FooResource.sub.scaml","new_file":"scalate-sample\/src\/main\/webapp\/org\/fusesource\/scalate\/sample\/resources\/FooResource.sub.scaml","new_contents":"-@ val it : FooResource\n%html\n %body\n %h1 FooResource sub page\n %p\n FooResource is #{it}","old_contents":"","returncode":1,"stderr":"error: pathspec 'scalate-sample\/src\/main\/webapp\/org\/fusesource\/scalate\/sample\/resources\/FooResource.sub.scaml' did not match any file(s) known to git\n","license":"apache-2.0","lang":"Scaml"} {"commit":"6a3929133c26917e4edcc6c3e69f49950c146300","subject":"features working","message":"features working\n","repos":"chirino\/cloudmix,chirino\/cloudmix","old_file":"org.fusesource.cloudmix.controller.webapp\/src\/main\/webapp\/org\/fusesource\/cloudmix\/controller\/resources\/FeatureResource.index.scaml","new_file":"org.fusesource.cloudmix.controller.webapp\/src\/main\/webapp\/org\/fusesource\/cloudmix\/controller\/resources\/FeatureResource.index.scaml","new_contents":"-@ import val it: FeatureResource\n-@ import val helper: ViewHelper = new ViewHelper\n- attributes(\"title\") = \"Feature\"\n\n%h2\n Feature: #{getFeatureDetails.getId}\n\n%table\n %tr\n %th Agents\n - for (agent <- getAgents)\n %tr\n %td\n %a.agent{:href => {agentFeatureLink(agent, getFeatureDetails.getId)}}\n = agent.getId ?: \"agent\"","old_contents":"","returncode":1,"stderr":"error: pathspec 'org.fusesource.cloudmix.controller.webapp\/src\/main\/webapp\/org\/fusesource\/cloudmix\/controller\/resources\/FeatureResource.index.scaml' did not match any file(s) known to git\n","license":"agpl-3.0","lang":"Scaml"} {"commit":"1dbf93157f53be9c3bcbd13305f07ef99c112716","subject":"added menu of archetypes","message":"added menu of archetypes\n","repos":"maslovalex\/scalate,scalate\/scalate,scalate\/scalate,janurag\/scalate,maslovalex\/scalate,janurag\/scalate,maslovalex\/scalate,janurag\/scalate,scalate\/scalate,janurag\/scalate,maslovalex\/scalate,maslovalex\/scalate,janurag\/scalate,scalate\/scalate","old_file":"scalate-sample\/src\/main\/webapp\/WEB-INF\/archetypes\/menu.scaml","new_file":"scalate-sample\/src\/main\/webapp\/WEB-INF\/archetypes\/menu.scaml","new_contents":"%ul\n %li\n %a(href={uri(\"\/scalate\/archetypes\/resources\/SimpleResource\")} title=\"Create Simple Resource\")\n Simple Resource","old_contents":"","returncode":1,"stderr":"error: pathspec 'scalate-sample\/src\/main\/webapp\/WEB-INF\/archetypes\/menu.scaml' did not match any file(s) known to git\n","license":"apache-2.0","lang":"Scaml"} {"commit":"95cc8300793f82973972aaf63f8424e06799883b","subject":"adding web template so that the BDBStoreStatusDTO get properly rendered","message":"adding web template so that the BDBStoreStatusDTO get properly rendered\n\ngit-svn-id: 2e7d1941c9591a1d82c6889778b1870c4945235f@992371 13f79535-47bb-0310-9956-ffa450edef68\n","repos":"chirino\/activemq-apollo,chirino\/activemq-apollo,chirino\/activemq-apollo,chirino\/activemq-apollo,chirino\/activemq-apollo,chirino\/activemq-apollo,chirino\/activemq-apollo,chirino\/activemq-apollo,chirino\/activemq-apollo","old_file":"apollo-bdb\/src\/main\/resources\/WEB-INF\/org\/apache\/activemq\/apollo\/store\/bdb\/dto\/BDBStoreStatusDTO.scaml","new_file":"apollo-bdb\/src\/main\/resources\/WEB-INF\/org\/apache\/activemq\/apollo\/store\/bdb\/dto\/BDBStoreStatusDTO.scaml","new_contents":"-# Licensed to the Apache Software Foundation (ASF) under one or more\n-# contributor license agreements. See the NOTICE file distributed with\n-# this work for additional information regarding copyright ownership.\n-# The ASF licenses this file to You under the Apache License, Version 2.0\n-# (the \"License\"); you may not use this file except in compliance with\n-# the License. You may obtain a copy of the License at\n-#\n-# http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n-#\n-# Unless required by applicable law or agreed to in writing, software\n-# distributed under the License is distributed on an \"AS IS\" BASIS,\n-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n-# See the License for the specific language governing permissions and\n-# limitations under the License.\n\n- import it._\n- import org.apache.activemq.apollo.dto._\n- val helper = new org.apache.activemq.apollo.web.resources.ViewHelper\n- import helper._\n- import java.util.concurrent.TimeUnit._\n\n%p state: #{state} for #{ uptime(state_since) }\n\n%h2 Cancel Stats\n%p canceled message stores: #{canceled_message_counter}\n%p canceled message enqueues: #{canceled_enqueue_counter}\n\n%h2 Flush Stats\n%p flushed message stores: #{flushed_message_counter}\n%p flushed message enqueues: #{flushed_enqueue_counter}\n\n%h2 Store Latency Stats\n\n- def show(name:String, value:TimeMetricDTO)\n %p #{name} : average #{value.avg(MILLISECONDS)} ms, min #{value.min(MILLISECONDS)} ms, max #{value.max(MILLISECONDS)} ms, #{value.count} events\n\n- show(\"Message load latency\", message_load_latency)\n- show(\"UOW flush latency\", flush_latency)\n","old_contents":"","returncode":1,"stderr":"error: pathspec 'apollo-bdb\/src\/main\/resources\/WEB-INF\/org\/apache\/activemq\/apollo\/store\/bdb\/dto\/BDBStoreStatusDTO.scaml' did not match any file(s) known to git\n","license":"apache-2.0","lang":"Scaml"}