I hereby claim:
- I am mcrider on github.
- I am mcrider (https://keybase.io/mcrider) on keybase.
- I have a public key ASAN5-1ClhVC8YxmW1oOMgCNXpAEP9KIoivznnEGnYPccgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| diff --git a/server/modules/core/Collections/Controller/Api.php b/server/modules/core/Collections/Controller/Api.php | |
| index 7c8c381..5fda5b3 100755 | |
| --- a/server/modules/core/Collections/Controller/Api.php | |
| +++ b/server/modules/core/Collections/Controller/Api.php | |
| @@ -104,6 +104,40 @@ public function duplicate(){ | |
| return false; | |
| } | |
| + public function duplicateEntry (){ | |
| + $collection = $this->param("collection", null); |
| var gulp = require('gulp'); | |
| var nodemon = require('gulp-nodemon'); | |
| var jshint = require('gulp-jshint'); | |
| var concat = require('gulp-concat'); | |
| var sass = require('gulp-sass'); | |
| var sourcemaps = require('gulp-sourcemaps'); | |
| var notifier = require('node-notifier'); | |
| var uglify = require('gulp-uglify'); | |
| var sequence = require('run-sequence'); | |
| var util = require('gulp-util'); |
| $z-index: ( | |
| modal : 200, | |
| navigation : 100, | |
| footer : 90, | |
| triangle : 60, | |
| navigation-rainbow : 50, | |
| share-type : 41, | |
| share : 40, | |
| ); |
| # This is essentially the same file as the block (cell) descriptor file. | |
| # Its purpose is to define custom content types and the fields they contain. | |
| # This file would live in the project's app/custom_modules/rcms/directory | |
| # Actual implementation may vary. | |
| custom_modules: | |
| - name: Doctor | |
| action: doctor | |
| description: A doctor custom content type | |
| settings: |
| function getURLParameter(name) { | |
| return decodeURI( | |
| (RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,null])[1] | |
| ); | |
| } | |
| document.ready( | |
| // assuming url like: foo.html?name="123" |
| # Add tab completion for SSH hostnames based on ~/.ssh/config, ignoring wildcards | |
| [ -e "$HOME/.ssh/config" ] && complete -o "default" -o "nospace" -W "$(grep "^Host" ~/.ssh/config | grep -v "[?*]" | cut -d " " -f2)" scp sftp ssh | |
| function parse_git_branch { | |
| git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' | |
| } | |
| function proml { | |
| local BLUE="\[\033[0;34m\]" | |
| local RED="\[\033[0;31m\]" |
| /* - - - - - - - - - - - - - - - - - - - - - | |
| Title : Custom CSS by THo | |
| URL : http://halemakua.com | |
| Last Updated : October 23, 2013 | |
| - - - - - - - - - - - - - - - - - - - - - */ | |
| body { |
| #news { | |
| background: url('bg-birdofparadise.jpg') no-repeat center bottom; | |
| box-shadow: 0 10px 10px -1px rgba(50, 50, 50, 0.05); | |
| h2.single { | |
| margin-top: 20px; | |
| padding-bottom: 30px; | |
| } | |
| .post { | |
| border-bottom: 1px solid $border-grey; |
| li class="#{@block.settings[:class]}" | |
| - unless @block.settings[:text].blank? | |
| .slide-copy | |
| p == @block.settings[:text] | |
| a class="btn btn-#{@block.settings[:button_color]}" href="#{@block.settings[:link_url]}" | |
| = @block.settings[:link_text] | |
| - if @block.block_cover | |
| = image_tag(@block.block_cover.url, alt: @block.name) |