This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- context.xml.20151105_160437.bak 2015-07-08 14:56:35.000000000 -0500 | |
| +++ context.xml 2015-11-05 17:59:41.063050250 -0600 | |
| @@ -17,6 +17,7 @@ | |
| --> | |
| <!-- The contents of this file will be loaded for each web application --> | |
| <Context useHttpOnly="true"> | |
| + <Resources allowLinking="true" /> | |
| <!-- Default set of monitored resources. If one of these changes, the --> | |
| <!-- web application will be reloaded. --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| from xml.etree import ElementTree | |
| class CommentedTreeBuilder ( ElementTree.XMLTreeBuilder ): | |
| def __init__ ( self, html = 0, target = None ): | |
| ElementTree.XMLTreeBuilder.__init__( self, html, target ) | |
| self._parser.CommentHandler = self.handle_comment | |
| def handle_comment ( self, data ): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 1.75 MB/s | |
| curl 'https://mysite.com/test/testUpload.cfm?which=fileUploadAll' -F 'filedata=@/cygdrive/e/garbage/GIS Toolkit 2014/GIS Toolkit 2014/CoC_GIS_State_Tool_IN_2014.zip' --compressed --insecure --limit-rate 1000M |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # install module compiling prerequisite | |
| sudo apt-get install apache2-threaded-dev | |
| # get/compile/place new module | |
| cd /tmp | |
| wget -O mod_cfml-master.zip https://github.com/utdream/mod_cfml/archive/master.zip | |
| unzip mod_cfml-master.zip | |
| cd ./mod_cfml-master/C |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- | |
| ~ Copyright (c) 2014-2015 Enrico M. Crisostomo | |
| ~ All rights reserved. | |
| ~ | |
| ~ Redistribution and use in source and binary forms, with or without | |
| ~ modification, are permitted provided that the following conditions are met: | |
| ~ | |
| ~ * Redistributions of source code must retain the above copyright notice, this | |
| ~ list of conditions and the following disclaimer. | |
| ~ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfscript> | |
| base = "s3://MYKEY:MYSKEY@/files-stage.mysite.com"; | |
| writeDump( | |
| var = directoryList( base ), | |
| label = "directoryList(#base#)", | |
| output = "console" | |
| ); | |
| dir = base & "/reports"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @mxunit:decorators DynamicFunctionsTestDecorator | |
| **/ | |
| component extends="mxunit.framework.TestCase" { | |
| init(); | |
| private function init() { | |
| dynamicFunctions = {}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 12:24:06.164 EVENT Checking Resource aliases | |
| 12:24:06.196 EVENT Starting Jetty/4.2.19 | |
| =================================================================== | |
| SERVER CONTEXT | |
| ------------------------------------------------------------------- | |
| - config:E:\Users\15037\git\lucee\lucee-java\lucee-debug\.\server\context | |
| - loader-version:4.3 | |
| =================================================================== | |
| Sat Feb 28 12:24:06 EST 2015-570 using JRE Date Library |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $script = <<SCRIPT | |
| su -c "source #{vm_script_dir}/utils/rvm_install2.sh \ | |
| --provisioned-dir=#{vm_provisioned_dir} | |
| " vagrant | |
| SCRIPT | |
| # Install RVM | |
| config.vm.provision "shell", inline: $script |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| ENV['VAGRANT_DEFAULT_PROVIDER'] = 'docker' | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| unless Vagrant.has_plugin?("vagrant-triggers") |