.
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
var $ = require('jquery') | |
var _ = require('underscore') | |
var Twitter = require('twitter-api'); | |
var twitter_consumer = { | |
'consumer_key' : 'XXX', | |
'consumer_secret' : 'XXX' | |
} | |
var twitter_token = { | |
'access_token_key' : 'XXX', |
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 {{title}} |
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
index: | |
analysis: | |
analyzer: | |
spa: | |
type: custom | |
tokenizer: standard | |
filter: [standard, asciifolding, lowercase, stop, snow_spa] | |
default: | |
type: custom | |
tokenizer: standard |
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
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__) | |
$LOAD_PATH.unshift File.expand_path('../../kpeg/lib', __FILE__) | |
require 'kpeg' | |
class Fancy | |
G = KPeg::Grammar.new | |
KPeg.compile DATA.read, "Parser", self |
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
------------------------------------------------------------------------------- | |
Test set: com.jwm.sct.portal.interno.view.carreteras.FiltrosControllerIT | |
------------------------------------------------------------------------------- | |
Tests run: 9, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 1.396 sec <<< FAILURE! | |
listTramosJson(com.jwm.sct.portal.interno.view.carreteras.FiltrosControllerIT) Time elapsed: 0.154 sec <<< ERROR! | |
org.codehaus.jackson.map.JsonMappingException: failed to lazily initialize a collection of role: com.jwm.sct.portal.interno.domain.carreteras.Carretera.fichas, no session or session was closed (through reference chain: com.jwm.sct.portal.interno.domain.search.SearchResult["results"]->java.util.ArrayList[0]->com.jwm.sct.portal.interno.domain.carreteras.Tramo["carretera"]->com.jwm.sct.portal.interno.domain.carreteras.Carretera["fichas"]) | |
at org.codehaus.jackson.map.JsonMappingException.wrapWithPath(JsonMappingException.java:218) | |
at org.codehaus.jackson.map.JsonMappingException.wrap |
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
# Licensed to the Apache Software Foundation (ASF) under one or more | |
# contributor license agreements. See the NOTICE file distributed with this | |
# work for additional information regarding copyright ownership. The ASF | |
# licenses this file to you under the Apache License, Version 2.0 (the | |
# "License"); you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software |
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
// asi se mandaria llamar un filtro para carreteras | |
// que filtre por estado.id, | |
$.ajax({ | |
url: "/filtros/carreteras", // Esta action estaria en el FiltrosController | |
type: 'POST', | |
dataType: 'json', | |
contentType: 'application/json', | |
data: JSON.stringify({ | |
filters: [ | |
{ 'estado.id': '77' }, |
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
diff --git a/Client/GithubAPIController.j b/Client/GithubAPIController.j | |
index 1317fa5..3f55087 100644 | |
--- a/Client/GithubAPIController.j | |
+++ b/Client/GithubAPIController.j | |
@@ -630,7 +630,7 @@ because one day maybe GitHub will give this to me... :) | |
else | |
{ | |
var auth = [self isAuthenticated], | |
- text = (auth) ? "Make sure your account has sufficiant privalies to modify an issue or reposotory. " : "The action you tried to perfom requires you to be authenticated. Please login."; | |
+ text = (auth) ? "Make sure your account has sufficient privileges to modify an issue or repository. " : "The action you tried to perfom requires you to be authenticated. Please login."; |
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
gcc -Ivm/external_libs/llvm/include -I/more/vic/hk/rubinius/vm/external_libs/llvm/Release/include -DNDEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -fomit-frame-pointer -fPIC -Ivm/external_libs/libtommath -Ivm/external_libs/libgdtoa -Ivm/external_libs/onig -Ivm/external_libs/libffi/include -Ivm/test/cxxtest -Ivm -I. -I/usr/local/include -Ivm/external_libs/udis86 -pipe -Wall -fno-omit-frame-pointer -DENABLE_LLVM -DHAS_EXECINFO -DHAS_READLINE -ggdb3 -O2 -Werror -DRBX_PROFILER -c -o vm/builtin/io.o vm/builtin/io.cpp 2>&1 | |
cc1plus: warnings being treated as errors | |
vm/builtin/io.cpp: In member function ‘rubinius::Object* rubinius::IO::send_io(rubinius::VM*, rubinius::IO*)’: | |
vm/builtin/io.cpp:1050: error: dereferencing type-punned pointer will break strict-aliasing rules | |
vm/builtin/io.cpp: In member function ‘rubinius::Object* rubinius::IO::recv_fd(rubinius::VM*, rubinius::CallFrame*)’: | |
vm/builtin/io.cpp:1090: error: dereferencing type-punned pointer will break strict-aliasing rules | |
vm/builtin/io |