Java Velocity
syntax highlight and snippets for velocity
Details
Installs
- Total 24K
- Win 14K
- Mac 6K
- Linux 4K
| Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 1 | 2 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 |
| Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 1 | 0 |
| Linux | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Installation
Via Package Control, search for “velocity”
Or paste the repo folder into the <SublimeText2Folder>/Packages
Snippets
-
for- foreach#foreach( $var in $!{colection} ) ... #end -
param- get url param$!{request.getParameter( 'someparameter' )} -
host- get host name$!{link.getHost()} -
if- if structure, without else#if(condition) ... #end -
ifel- if else structure#if(condition) ... #else ... #end -
ifparam- if some url param#if($!{request.getParameter( 'someparameter' )}) ... #end -
el- only an else#else -
set- set#set( $var = _value_ ) -
read- gets the content of file$_reader.read("path/to/file.ext") -
$- use variable$!{var} -
!- html comment “” -
vm- velocity head#!vm;utf-8 -
+- addition$math.add($number, $number) -
-- subtraction$math.sub($number, $number) -
*- multiplication$math.mul($number, $number) -
/- division$math.div($number, $number) -
debug- html output debug with parameter -
par- parse#parse("url") -
exist- return a boolean if file exists$include.exists("filepath") -
isweb- return a boolean if plataform is web$_userAgent.isWeb() -
issmart- return a boolean if plataform is smart$_userAgent.isSmart() -
isfeature- return a boolean if plataform is feature$_userAgent.isFeature() -
jsontos- velocity object to string$_json.toString(obj) -
request- return of the url requested$_json.request(url) -
ept- is empty?.isEmpty() -
dtformat- date format$date.format("pattern", $date.getSystemTime()) -
sysdate- system date$date.getSystemTime() -
count- Velocity counter, foreach index$velocityCount -
.up- Velocity toUpperCase.toUpperCase() -
.str- converts to string.toString() -
.ks- Object keys to Array.keySet() -
st- STOP!!! Hammer time!#stop -
ctype- set the content type of header's request$response.setContentType("type")