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
# Logfile created on 2013-07-09 09:38:07 +0200 by logger.rb/1.2.8 | |
Started GET "/" at 2013-07-09 09:38:18 +0200 | |
Detecting locale FR | |
Found page "Jeux concours 4G Orange Sud-Ouest" [index] | |
Rendered snippet logo_4g | |
Rendered snippet logo_orange | |
Rendered snippet google_analytics | |
Rendered liquid page template | |
Completed 200 OK in 8.0ms |
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
development: | |
sessions: | |
default: | |
database: locomotive_dev | |
hosts: | |
- localhost:27017 | |
options: | |
consistency: :strong | |
options: | |
identity_map_enabled: true |
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 type="text/javascript" src="http://www.lafinancepourtous.com/squelettes/javascript/jquery-1.1.js" language="JavaScript"></script> | |
<script type="text/javascript" src="http://www.lafinancepourtous.com/calculateurs/budget.js" language="JavaScript"></script> | |
<script type="text/javascript"> | |
function unhide(form) { | |
var parent = form.parentElement; | |
var div = parent.lastChild; | |
} | |
function hide(form) { | |
var parent = form.parentElement; |
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
require 'webmock' | |
require 'httmultiparty' | |
class FakeUploadIO | |
attr_accessor :original_filename, :content_type, :body | |
def initialize(io) | |
io.rewind # make sure.... |
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
--- | |
title: Rss feed | |
published: true | |
response_type: rss | |
--- | |
<?xml version="1.0" encoding="UTF-8"?> | |
<rss version="2.0" | |
xmlns:content="http://purl.org/rss/1.0/modules/content/" | |
xmlns:wfw="http://wellformedweb.org/CommentAPI/" | |
xmlns:dc="http://purl.org/dc/elements/1.1/" |
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
--- | |
title: Home page | |
published: true | |
--- | |
!!! 5 | |
%html{ lang: "en" } | |
%head | |
%meta{ charset: "utf-8" } | |
%meta{ name: "viewport", content: "width=device-width, initial-scale=1, maximum-scale=1"} | |
%link{rel: 'shortcut icon', href: '/images/favicon.ico', type: 'image/x-icon'} |
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
{ | |
"done": "/Users/didier/Documents/NoCoffee/SnifferDog/data/done.csv", | |
"notifiers": { | |
"stdout": {}, | |
"jabber": { | |
"username": "[email protected]", | |
"password": "<blabla>", | |
"recipients": ["[email protected]"] | |
} | |
}, |
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
$:.unshift(File.expand_path(File.dirname(__FILE__) + '/lib')) | |
require 'bundler' | |
Bundler.setup | |
require 'locomotive/builder/version' | |
require 'locomotive/builder/exceptions' | |
require 'locomotive/mounter' | |
# set the working path |
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
~/Documents/LocomotiveCMS/builder/tests/sample_3[wip] > bundle exec builder push development | |
path = ., {"host"=>"sample.example.com:8080", "email"=>"[email protected]", "password"=>"test31"} | |
* Pushing Site | |
en | |
updating sample_3...........................................................[done] | |
fr | |
updating sample_3...........................................................[done] | |
* Pushing Snippets | |
en | |
updating Footer.............................................................[done] |
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
require 'rubygems' | |
require 'rubygems/command.rb' | |
require 'rubygems/dependency_installer.rb' | |
begin | |
Gem::Command.build_args = ARGV | |
rescue NoMethodError | |
end | |
inst = Gem::DependencyInstaller.new |