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
/* General Adjustmens to the Neos Backend - we only do that if "neos-controls" is visible, that is we are NOT in full-screen mode. */ | |
/* Bootstrap gives the "container" specific widths (inside media queries); which breaks the margins Neos adds to the body. | |
Thus, we need to reset these settings. */ | |
.neos-controls .container { | |
width: inherit !important; | |
} | |
/* The topbar of neos needs some space, so we push the top navigation lower */ | |
.neos-controls .page-topNavigation { |
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
# This stylesheet is only loaded when the Neos UI is shown | |
page.head.stylesheets.backend = TYPO3.TypoScript:Tag { | |
tagName = 'link' | |
attributes { | |
rel = 'stylesheet' | |
href = TYPO3.TypoScript:ResourceUri { | |
package = 'Acme.Demo' | |
path = 'Styles/Backend.css' | |
} | |
} |
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
<?php | |
namespace TYPO3\Neos\NodeTypes; | |
/* * | |
* This script belongs to the TYPO3 Flow package "TYPO3.Neos". * | |
* * | |
* It is free software; you can redistribute it and/or modify it under * | |
* the terms of the GNU General Public License, either version 3 of the * | |
* License, or (at your option) any later version. * | |
* * |
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
{ | |
"template" : "fusion-log-*", | |
"settings" : { | |
"index.refresh_interval" : "5s", | |
"analysis" : { | |
"analyzer" : { | |
"default" : { | |
"type" : "standard", | |
"stopwords" : "_none_" | |
} |
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 "cjson" | |
local dt = require 'date_time' | |
-- Generic decoder for JSON logs. This will extract all JSON | |
-- keys and add them to the `Fields` variable of the created | |
-- Heka message. | |
-- | |
-- Example use: | |
-- | |
-- [NginxJsonLogDecoder] |
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
import com.google.inject.AbstractModule | |
import com.google.inject.Injector | |
import org.pac4j.core.client.Client | |
import ratpack.guice.HandlerDecoratingModule | |
import ratpack.handling.Handler | |
import ratpack.handling.Handlers | |
/** | |
* Pac4j does not properly support "Name-based Virtual Hosts". After some debugging, I could find the | |
* root-cause of the issue: |
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
define [ | |
'lib/ember' | |
], ( | |
E | |
) -> | |
# # SerializableMixin | |
# | |
# Makes persistent parts of an `Ember.Object` serializable and deserializable into a string: | |
# |
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
editPreviewModes: | |
## ORIGINAL (Aske's Patch) | |
inPlace: | |
editingMode: TRUE | |
previewMode: FALSE | |
renderingMode: 'default' | |
title: 'In-place' | |
position: 100 |
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
env[FLOW_ROOTPATH] = /var/www/new_sandstorm_website/flow/releases/current/ | |
env[FLOW_WEBPATH] = /var/www/new_sandstorm_website/htdocs/ | |
env[FLOW_CONTEXT] = Production | |
env[FLOW_REWRITEURLS] = 1' | |
includeDefaultConfiguration false | |
extraConfiguration ' | |
location ~ "^/_Resources/Persistent/" { | |
rewrite "(.{40})/.+\.(.+)" /_Resources/Persistent/$1.$2 break; |
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
/** | |
Renders the named template in the current context using the singleton | |
instance of the same-named controller. | |
If a view class with the same name exists, uses the view class. | |
If a `model` is specified, it becomes the model for that controller. | |
The default target for `{{action}}`s in the rendered template is the | |
named controller. |