This file contains 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
[ 7%] Building CXX object libs/network/src/CMakeFiles/cppnetlib-client-connections.dir/client.cpp.o | |
cd /src/cpp-netlib/cpp-netlib-build/libs/network/src && /usr/local/bin/c++ -DASIO_HEADER_ONLY -DBOOST_NETWORK_ENABLE_HTTPS -DBOOST_SPIRIT_THREADSAFE -DBOOST_TEST_DYN_LINK -I/usr/local/include -I/src/cpp-netlib/deps/asio/asio/include -I/src/cpp-netlib -Wall-std=c++11 -o CMakeFiles/cppnetlib-client-connections.dir/client.cpp.o -c /src/cpp-netlib/libs/network/src/client.cpp | |
In file included from /usr/include/openssl/bio.h:20:0, | |
from /usr/include/openssl/conf.h:13, | |
from /src/cpp-netlib/deps/asio/asio/include/asio/ssl/detail/openssl_types.hpp:19, | |
from /src/cpp-netlib/deps/asio/asio/include/asio/ssl/context_base.hpp:19, | |
from /src/cpp-netlib/deps/asio/asio/include/asio/ssl/context.hpp:23, | |
from /src/cpp-netlib/deps/asio/asio/include/asio/ssl.hpp:18, | |
from /src/cpp-netlib/boost/network/protocol/http/client/connecti |
This file contains 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
esql/build/CMakeFiles/CMakeOutput.log | |
The system is: Linux - 3.19.0-32-generic - x86_64 | |
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. | |
Compiler: /usr/local/bin/c++ | |
Build flags: | |
Id flags: | |
The output was: | |
0 |
This file contains 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
{ | |
"_shards" : { | |
"total" : 10, | |
"successful" : 5, | |
"failed" : 0 | |
}, | |
"_all" : { | |
"primaries" : { | |
"docs" : { | |
"count" : 7, |
This file contains 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
{ | |
"responses": [ | |
{ | |
"took": 4, | |
"timed_out": false, | |
"_shards": { | |
"total": 5, | |
"successful": 5, | |
"failed": 0 | |
}, |
This file contains 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
{ | |
"responses": [ | |
{ | |
"took": 2, | |
"timed_out": false, | |
"_shards": { | |
"total": 5, | |
"successful": 5, | |
"failed": 0 | |
}, |
This file contains 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
[ | |
{ | |
"index": "test_items", | |
"type": "item", | |
"search": { | |
"query": { | |
"filtered": { | |
"query": { | |
"bool": { | |
"should": [ |
This file contains 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
files: | |
"/tmp/00-elastic-beanstalk.conf": | |
mode: "000644", | |
owner: root, | |
group: root, | |
content: | | |
upstream my_app { | |
server unix:///var/run/puma/my_app.sock; | |
} | |
This file contains 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
Todos.TodoElementView = Ember.View.extend( { | |
templateView : 'todo-element', | |
tagName : 'li' | |
} ); | |
Ember.Handlebars.helper( 'todo-element', Todos.TodoElementView ); |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Todos</title> | |
</head> | |
<body> | |
<script type="text/x-handlebars"> | |
{{outlet}} |
This file contains 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
class DiscourseSsoController < ApplicationController | |
def login | |
sso = DiscourseUtils::SingleSignOn.parse( request.query_string ) | |
sso.external_id = current_user.id | |
sso.username = current_user.login | |
sso.name = current_user.display_name | |
sso.email = current_user.email | |
# NEW CONTENT | |
sso.shop_name = current_user.get_shop_name | |
sso.shop_url = current_user.get_shop_url |
NewerOlder