ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Clickability Velocity

by user004 ALL

No description provided

Details

Installs

  • Total 887
  • Win 611
  • Mac 182
  • Linux 94
Jun 12 Jun 11 Jun 10 Jun 9 Jun 8 Jun 7 Jun 6 Jun 5 Jun 4 Jun 3 Jun 2 Jun 1 May 31 May 30 May 29 May 28 May 27 May 26 May 25 May 24 May 23 May 22 May 21 May 20 May 19 May 18 May 17 May 16 May 15 May 14 May 13 May 12 May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Clickability Velocity

Based on jampow's Velocty package, but modified to use Clickability's custom functions and version of Velocity. Somewhat built using the Template Language Reference Guide.

Less/Greater than means <optional>

Snippets

ArrayLists

Shortcut Output
al $util.newArrayList
.. [ start .. end ]
.addAll .addAll( arrayList )
.add .add( <index, >object )
.clear .clear()
.contains .contains( object )
.get .get( index )
.indexOf .indexOf( object )
.isEmpty .isEmpty()
.remove .remove( index )
.set .set( index, object )
.subList .subList( start, end )

CMS

Shortcut Output
content $cms.content<( id )>
link $cms.link<( <name/path><, index> )>
links $cms.links<( <name/path><, index><, size> )>
flinks $cms.filteredLinks( type<, name/path><, index><, size> )
clinks $cms.categorizedLinks( categorization, 'name/path', index, size )
cat $cms.getCategorization( [ 'sets' ], [ 'categories' ]<, match all> )
wss $cms.websiteSection<( name/path/id )>
parent cms.parent<( name/path/object )>
template $cms.template( name )
include $cms.include( name )

Media

Shortcut Output
media $cms.media( name/id<, type> )
tag $util.tag( media<, show attributes><, extra info> )
linkedTag $util.linkedTag( media<, show attributes><, extra info> )
unlinkedTag $util.unlinkedTag( media<, show attributes><, extra info> )
resizeImageTag $util.resizeImageTag( media<, percent/width><, height><, show attributes><, extra info> )
unlinkedResizeImageTag $util.unlinkedResizeImageTag( media<, percent/width><, height><, show attributes><, extra info> )

Dates

  • newDate
  • Date
  • Add
  • Now
  • Tomorrow
  • Yesterday
  • compareDates
  • currentYear
  • difference
  • getDate
  • getDay
  • getHours
  • getMinutes
  • getMonth
  • getSeconds
  • getTime
  • getTimezoneOffset
  • getYear
  • inSameDay
  • inSameHour
  • inSameMonth
  • inSameYear
  • isAfter
  • isBefore
  • isBetween
  • isEqualDate
  • isEqualTime
  • parseDate
  • toDateTime
  • whenIs

Directives

Shortcut Output
set #set( $name = expression )
end #end##

for:

#foreach( item in itemList )##
    ## statement
#end##

if:

#if( condition )##
    ## statement
#end##

else:

#else<if( condition )>##
    ## statement

HashMaps

Shortcut Output
hm $util.newHashMap

Helpers

Shortcut Output
$ $<!>{variable}
vc $velocityCount

#*:

#* ============================================================================
Company Name
Copyright, Year
Title: Template Name
========================================================================== *###

Math

Shortcut Output
double $math.newDouble( number )
float $math.newFloat( number )
int $math.newInt( number )
% $math.mod( integer, integer )
* $math.multiply( number, number )
+ $math.add( number, number )
- $math.subtract( number, number )
/ $math.divide( number, number )
abs $math.abs( number )
pow $math.pow( number, number )
rand $math.random
round $math.round( number )
sqrt $math.sqrt( number )

Requests

Shortcut Output
param $req.param( parameter )

Strings

Shortcut Output
charAt $string.charAt( string, index )
endsWith $string.endsWith( string, suffix )
equals $string.equals<IgnoreCase>( string )
hashCode $string.hashCode( string )
indexOf $string.indexOf( string, substring<, start> )
lastIndexOf $string.lastIndexOf( string, substring<, start> )
length $string.length( string )
removeSpaces $string.removeSpaces( string )
replaceAll $string.replaceAll( string, find, replace )
replaceFirst $string.replaceFirst( string, find, replace )
splitOnRegex $string.splitOnRegex( string, separatorRegex<, trimResults><, omitEmptyStrings> )
splitString $string.splitString( string, separator<, trimResults><, omitEmptyStrings> )
startsWith $string.startsWith( string, prefix )
substring $string.substring( string, start, end )
toLowerCase $string.toLowerCase( string )
toUpperCase $string.toUpperCase( string )
trim $string.trim( string )

Utilities

Shortcut Output
obj $util.newObject
type $util.type( object )
className $util.className( object )
isNull $util.isNull( object )

Debugging

Shortcut Output
log $codeDebug.log( string )
watchpoint $codeDebug.watchpoint<( string/arrayList )>