prompt stringlengths 77 6.9k | completion stringlengths 1 3.38k | text stringlengths 163 9.03k | commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | lang stringclasses 277
values |
|---|---|---|---|---|---|---|
<|file_sep|>original/Plugin.php
use App;
use System\Classes\PluginBase;
class Plugin extends PluginBase
{
public function boot()
{
// Register Cors
App::register('\Fruitcake\Cors\CorsServiceProvider');
// Add cors middleware
app('router')->aliasMiddleware('cors', \Fruitcake\Co... | use App;
use System\Classes\PluginBase;
class Plugin extends PluginBase
{
public function boot()
{
// Register Cors
App::register('\Fruitcake\Cors\CorsServiceProvider');
// Add cors middleware
$this->app['Illuminate\Contracts\Http\Kernel']
->prependMiddleware(\Fruit... | <|file_sep|>original/Plugin.php
use App;
use System\Classes\PluginBase;
class Plugin extends PluginBase
{
public function boot()
{
// Register Cors
App::register('\Fruitcake\Cors\CorsServiceProvider');
// Add cors middleware
app('router')->aliasMiddleware('cors', \Fruitcake\Co... | d20f35df07f60e398f2532b0682274d295a009af | Plugin.php | Plugin.php | PHP |
<|file_sep|>demo/views/layout.erb.diff
original:
<script src="https://unpkg.com/whatwg-fetch@2.0.3/fetch.js"></script>
<script src="https://transloadit.edgly.net/releases/uppy/v1.8.0/uppy.min.js"></script>
updated:
<script src="https://unpkg.com/whatwg-fetch@3.4.1/fetch.js"></script>
<script src="https:... | <title>Shrine Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Shrine demo featuring multiple file uploads to S3 with Uppy" />
<meta charset="utf-8" />
<script src="https://unpkg.com/babel-polyfill@6.26.0/dist/polyfill.min.js"></s... | <|file_sep|>demo/views/layout.erb.diff
original:
<script src="https://unpkg.com/whatwg-fetch@2.0.3/fetch.js"></script>
<script src="https://transloadit.edgly.net/releases/uppy/v1.8.0/uppy.min.js"></script>
updated:
<script src="https://unpkg.com/whatwg-fetch@3.4.1/fetch.js"></script>
<script src="https:... | a55f6cea27fde8492bd1aace0f07c93804806912 | demo/views/layout.erb | demo/views/layout.erb | HTML+ERB |
<|file_sep|>original/less-engine.js
module.exports = require("less/dist/less");
<|file_sep|>current/less-engine.js
module.exports = require("less/dist/less");
<|file_sep|>updated/less-engine.js | // Without these options Less will inject a `body { display: none !important; }`
var less = window.less || (window.less = {});
less.async = true;
module.exports = require("less/dist/less"); | <|file_sep|>original/less-engine.js
module.exports = require("less/dist/less");
<|file_sep|>current/less-engine.js
module.exports = require("less/dist/less");
<|file_sep|>updated/less-engine.js
// Without these options Less will inject a `body { display: none !important; }`
var less = window.less || (window.less = {});... | f27ace3130340b9b3ca2c452d9973a5b685c207a | less-engine.js | less-engine.js | JavaScript |
<|file_sep|>original/config.js
},
plugins: {
defaults: {
'*.md': {
kind: 'page',
template: 'page'
},
'posts/**/*.md': {
kind: 'post',
template: 'post'
}
},
postcss: [
cssnext()
]
},
globals: {
site: {
title: 'Steffen Bruch... | },
plugins: {
defaults: {
'*.md': {
kind: 'page',
template: 'page'
},
'posts/**/*.md': {
kind: 'post',
permalink: false,
template: 'post'
}
},
postcss: [
cssnext()
]
},
globals: {
site: { | <|file_sep|>original/config.js
},
plugins: {
defaults: {
'*.md': {
kind: 'page',
template: 'page'
},
'posts/**/*.md': {
kind: 'post',
template: 'post'
}
},
postcss: [
cssnext()
]
},
globals: {
site: {
title: 'Steffen Bruch... | 0a90a4635823bd917e389464f521e6c42a8776c9 | config.js | config.js | JavaScript |
<|file_sep|>app/views/brexit_checker_mailer/change_notification.text.erb.diff
original:
<%= @action.guidance_prompt || t("brexit_checker_mailer.change_notification.guidance_prompt") %>
updated:
<%= @action.guidance_prompt || t("brexit_checker_mailer.change_notification.guidance_prompt") %>:
<|file_sep|>app/views/brexit... | [<%= @action.title %>](<%= notification_email_link(@action.title_url, @notification) %>)
<% else %>
<%= @action.title %>
<% end %>
<% if @action.consequence.present? %><%= @action.consequence %><% end %>
<% if @action.exception.present? %><%= @action.exception %><% end %>
<% if @action.guidance_url.present? %>
<%= @... | <|file_sep|>app/views/brexit_checker_mailer/change_notification.text.erb.diff
original:
<%= @action.guidance_prompt || t("brexit_checker_mailer.change_notification.guidance_prompt") %>
updated:
<%= @action.guidance_prompt || t("brexit_checker_mailer.change_notification.guidance_prompt") %>:
<|file_sep|>app/views/brexit... | 23a597bcfb8afe5ec353dec234c39b04bfe44969 | app/views/brexit_checker_mailer/change_notification.text.erb | app/views/brexit_checker_mailer/change_notification.text.erb | HTML+ERB |
<|file_sep|>original/.travis.yml
language: python
python:
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls
script: setup.py test
after_success:
- coveralls
<|file_sep|>current/.travis.yml
language: python
python:
- "3.4"
install:
- pip install -r requirements.txt
- pip ins... | language: python
python:
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls
script: ./setup.py test
after_success:
- coveralls | <|file_sep|>original/.travis.yml
language: python
python:
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls
script: setup.py test
after_success:
- coveralls
<|file_sep|>current/.travis.yml
language: python
python:
- "3.4"
install:
- pip install -r requirements.txt
- pip ins... | 608677831d0f30e1fe171882588608ed345b1297 | .travis.yml | .travis.yml | YAML |
<|file_sep|>original/scripts/vagrant-freebsd-priv-config.sh
cat <<EOT > /usr/local/etc/pkg/repos/FreeBSD.conf
FreeBSD: {
url: "pkg+http://pkg.FreeBSD.org/\${ABI}/latest"
}
EOT
pkg update
pkg install -y \
editors/vim-lite \
devel/git \
devel/gmake \
lang/go \
security/ca_root_nss \... |
cat <<EOT > /usr/local/etc/pkg/repos/FreeBSD.conf
FreeBSD: {
url: "pkg+http://pkg.FreeBSD.org/\${ABI}/latest"
}
EOT
pkg update
pkg install -y \
editors/vim-tiny \
devel/git \
devel/gmake \
lang/go \
security/ca_root_nss \
shells/bash
chsh -s /usr/local/bin/bash vagrant
chs... | <|file_sep|>original/scripts/vagrant-freebsd-priv-config.sh
cat <<EOT > /usr/local/etc/pkg/repos/FreeBSD.conf
FreeBSD: {
url: "pkg+http://pkg.FreeBSD.org/\${ABI}/latest"
}
EOT
pkg update
pkg install -y \
editors/vim-lite \
devel/git \
devel/gmake \
lang/go \
security/ca_root_nss \... | 31bad0ffb754afb8f8dd1c99f03f4322d6ae04b4 | scripts/vagrant-freebsd-priv-config.sh | scripts/vagrant-freebsd-priv-config.sh | Shell |
<|file_sep|>original/recipes/bob.io.base/build.sh
#!/usr/bin/env bash
if [[ `uname` == 'Darwin' ]]; then
CXXFLAGS="${CXXFLAGS} -DBOOST_NO_CXX11_RVALUE_REFERENCES"
LDFLAGS="${LDFLAGS} -DBOOST_NO_CXX11_RVALUE_REFERENCES"
$PYTHON -B setup.py install --single-version-externally-managed --record record.txt
else
$PYTHON... | #!/usr/bin/env bash
if [[ `uname` == 'Darwin' ]]; then
CFLAGS="${CFLAGS} -DBOOST_NO_CXX11_RVALUE_REFERENCES"
CXXFLAGS="${CXXFLAGS} -DBOOST_NO_CXX11_RVALUE_REFERENCES"
LDFLAGS="${LDFLAGS} -DBOOST_NO_CXX11_RVALUE_REFERENCES"
$PYTHON -B setup.py install --single-version-externally-managed --record record.txt
else
$P... | <|file_sep|>original/recipes/bob.io.base/build.sh
#!/usr/bin/env bash
if [[ `uname` == 'Darwin' ]]; then
CXXFLAGS="${CXXFLAGS} -DBOOST_NO_CXX11_RVALUE_REFERENCES"
LDFLAGS="${LDFLAGS} -DBOOST_NO_CXX11_RVALUE_REFERENCES"
$PYTHON -B setup.py install --single-version-externally-managed --record record.txt
else
$PYTHON... | 28650a812d2f7dba0bc09600854c4743d17dbda4 | recipes/bob.io.base/build.sh | recipes/bob.io.base/build.sh | Shell |
<|file_sep|>cegui/src/ScriptingModules/PythonScriptModule/bindings/distutils/PyCEGUI/__init__.py.diff
original:
return os.path.dirname(str(fake).split()[3][1:])
updated:
return os.path.dirname(os.path.abspath(fake.__file__))
<|file_sep|>original/cegui/src/ScriptingModules/PythonScriptModule/bindings/distutils/P... | import os
import os.path
# atrocious and unholy!
def get_my_path():
import fake
return os.path.dirname(os.path.abspath(fake.__file__))
libpath = get_my_path()
#print "libpath =", libpath
os.environ['PATH'] = libpath + ";" + os.environ['PATH']
from PyCEGUI import * | <|file_sep|>cegui/src/ScriptingModules/PythonScriptModule/bindings/distutils/PyCEGUI/__init__.py.diff
original:
return os.path.dirname(str(fake).split()[3][1:])
updated:
return os.path.dirname(os.path.abspath(fake.__file__))
<|file_sep|>original/cegui/src/ScriptingModules/PythonScriptModule/bindings/distutils/P... | e68836173dec1e1fe80e07cca8eb67ebe19e424e | cegui/src/ScriptingModules/PythonScriptModule/bindings/distutils/PyCEGUI/__init__.py | cegui/src/ScriptingModules/PythonScriptModule/bindings/distutils/PyCEGUI/__init__.py | Python |
<|file_sep|>original/lib/type_validator.rb
require "active_model"
class TypeValidator < ActiveModel::EachValidator
def options
super.merge(allow_nil: true)
end
def validate_each(record, attribute, value)
unless value.is_a?(options[:with])
record.errors.add(attribute, "must be a #{options[:with]}, ... | require "active_model"
class TypeValidator < ActiveModel::EachValidator
def options
super.merge(allow_nil: true)
end
def validate_each(record, attribute, value)
classes = options[:in] || [options[:with]]
if classes.all? { |klass| !value.is_a?(klass) }
record.errors.add(attribute, "must be a #{... | <|file_sep|>original/lib/type_validator.rb
require "active_model"
class TypeValidator < ActiveModel::EachValidator
def options
super.merge(allow_nil: true)
end
def validate_each(record, attribute, value)
unless value.is_a?(options[:with])
record.errors.add(attribute, "must be a #{options[:with]}, ... | e7b7dad446daf23aa4bd32527a1e0e906ca85f28 | lib/type_validator.rb | lib/type_validator.rb | Ruby |
<|file_sep|>.travis.yml.diff
original:
jdk: oraclejdk8
updated:
jdk: openjdk8
<|file_sep|>.travis.yml.diff
original:
jdk: oraclejdk8
updated:
jdk: openjdk8
<|file_sep|>.travis.yml.diff
original:
jdk: oraclejdk8
updated:
jdk: openjdk8
<|file_sep|>original/.travis.yml
- env: TEST="... | - env: TEST="2.12"
jdk: openjdk8
script: sbt ci-test
- env: TEST="2.11"
jdk: openjdk11
script: sbt ci-test
- env: TEST="2.12"
jdk: openjdk11
script: sbt ci-test
- stage: release
jdk: openjdk8
script: sbt ci-release docs/docusaurusPublishGhpages
cache:
d... | <|file_sep|>.travis.yml.diff
original:
jdk: oraclejdk8
updated:
jdk: openjdk8
<|file_sep|>.travis.yml.diff
original:
jdk: oraclejdk8
updated:
jdk: openjdk8
<|file_sep|>.travis.yml.diff
original:
jdk: oraclejdk8
updated:
jdk: openjdk8
<|file_sep|>original/.travis.yml
- env: TEST="... | 0dfa45b73747ec5df78a160ca57728fd91ac7ffc | .travis.yml | .travis.yml | YAML |
<|file_sep|>package.json.diff
original:
"homepage":"https://github.com/wolfeidau/raspberrysensor",
updated:
"homepage":"https://github.com/wolfeidau/node-raspberrysensor",
<|file_sep|>package.json.diff
original:
"url":"git://github.com/wolfeidau/raspberrysensor.git"
updated:
"url":"git://github.... | "repository":{
"type":"git",
"url":"git://github.com/wolfeidau/node-raspberrysensor.git"
},
"bugs":{
"url":"https://github.com/wolfeidau/node-raspberrysensor/issues"
},
"licenses":[
{
"type":"MIT",
"url":"https://github.com/wolfeidau/node-raspb... | <|file_sep|>package.json.diff
original:
"homepage":"https://github.com/wolfeidau/raspberrysensor",
updated:
"homepage":"https://github.com/wolfeidau/node-raspberrysensor",
<|file_sep|>package.json.diff
original:
"url":"git://github.com/wolfeidau/raspberrysensor.git"
updated:
"url":"git://github.... | 3f91ce09bde158552e5ea74d4661425cccd00311 | package.json | package.json | JSON |
<|file_sep|>original/gws-system-test/src/main/resources/add-associated-document.xslt
<|file_sep|>current/gws-system-test/src/main/resources/add-associated-document.xslt
<|file_sep|>updated/gws-system-test/src/main/resources/add-associated-document.xslt | <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:geo="urn:xml-gov-au:icsm:egeodesy:0.5"
xmlns:gml="http://www.opengis.net/gml/3.2"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.0">
<xsl:param name="descripti... | <|file_sep|>original/gws-system-test/src/main/resources/add-associated-document.xslt
<|file_sep|>current/gws-system-test/src/main/resources/add-associated-document.xslt
<|file_sep|>updated/gws-system-test/src/main/resources/add-associated-document.xslt
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xm... | dba196b9ae5243ec8a4de299b72b92dbefe5f0e0 | gws-system-test/src/main/resources/add-associated-document.xslt | gws-system-test/src/main/resources/add-associated-document.xslt | XSLT |
<|file_sep|>original/cfg.example.json
{
"debug": true,
"hostname": "",
"ip": "",
"plugin": {
"enabled": false,
"dir": "./plugin",
"git": "https://coding.net/ulricqin/plugin.git",
"logs": "./logs"
},
"heartbeat": {
"enabled": true,
"addr": "127.0.0.... | {
"debug": true,
"hostname": "",
"ip": "",
"plugin": {
"enabled": false,
"dir": "./plugin",
"git": "https://github.com/open-falcon/plugin.git",
"logs": "./logs"
},
"heartbeat": {
"enabled": true,
"addr": "127.0.0.1:6030",
"interval": 60,
... | <|file_sep|>original/cfg.example.json
{
"debug": true,
"hostname": "",
"ip": "",
"plugin": {
"enabled": false,
"dir": "./plugin",
"git": "https://coding.net/ulricqin/plugin.git",
"logs": "./logs"
},
"heartbeat": {
"enabled": true,
"addr": "127.0.0.... | 30805c088c16177e26ebcd7ae214a17652adf87a | cfg.example.json | cfg.example.json | JSON |
<|file_sep|>original/_git/.zsh/git.zsh
# get the name of the branch we are on
git_prompt_info() {
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
echo " ${ref#refs/heads/}"
}
alias gc="git commit -v"
alias gd="git diff"
alias gdw="git diff --word-diff=color"
alias gl="git log --decorate --graph --all --one... | # get the name of the branch we are on
git_prompt_info() {
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
echo " ${ref#refs/heads/}"
}
alias gc="git commit -v"
alias gd="git diff"
alias gdw="git diff --word-diff=color"
alias gl="git log --decorate --graph --oneline"
alias gla="git log --decorate --graph -... | <|file_sep|>original/_git/.zsh/git.zsh
# get the name of the branch we are on
git_prompt_info() {
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
echo " ${ref#refs/heads/}"
}
alias gc="git commit -v"
alias gd="git diff"
alias gdw="git diff --word-diff=color"
alias gl="git log --decorate --graph --all --one... | 43a7a7527b0dc46f1b0239fcb0e07320d44511c2 | _git/.zsh/git.zsh | _git/.zsh/git.zsh | Shell |
<|file_sep|>original/src/components/FootballField/Grid/PlayerDragLayer/index.jsx
<|file_sep|>current/src/components/FootballField/Grid/PlayerDragLayer/index.jsx
<|file_sep|>updated/src/components/FootballField/Grid/PlayerDragLayer/index.jsx | import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { DragLayer } from 'react-dnd';
const layerStyles = {
position: 'fixed',
pointerEvents: 'none',
zIndex: 100,
left: 0,
top: 0,
width: '100%',
height: '100%',
};
const getItemStyles = (props) => {
const { currentOffset ... | <|file_sep|>original/src/components/FootballField/Grid/PlayerDragLayer/index.jsx
<|file_sep|>current/src/components/FootballField/Grid/PlayerDragLayer/index.jsx
<|file_sep|>updated/src/components/FootballField/Grid/PlayerDragLayer/index.jsx
import React, { Component } from 'react';
import PropTypes from 'prop-types';... | d4645a37293a7b89db0d59303654f6ba6f3ecde9 | src/components/FootballField/Grid/PlayerDragLayer/index.jsx | src/components/FootballField/Grid/PlayerDragLayer/index.jsx | JSX |
<|file_sep|>original/init.sh
PLATFORM=$(uname)
if [[ $PLATFORM == "Linux" ]]; then
echo "Install vim & git"
apt install vim git-core
else
# If brew is already installed
if [[ $(brew &> /dev/null || echo $?) == 1 ]]; then
brew install vim git
else
echo "Install XCode (Depends for brew)"
xcode-select --insta... | PLATFORM=$(uname)
if [[ $PLATFORM == "Linux" ]]; then
echo "Install vim & git"
apt-get install vim git-core
else
# If brew is already installed
if [[ $(brew &> /dev/null || echo $?) == 1 ]]; then
brew install vim git
else
echo "Install XCode (Depends for brew)"
xcode-select --install
echo "Install Brew"
... | <|file_sep|>original/init.sh
PLATFORM=$(uname)
if [[ $PLATFORM == "Linux" ]]; then
echo "Install vim & git"
apt install vim git-core
else
# If brew is already installed
if [[ $(brew &> /dev/null || echo $?) == 1 ]]; then
brew install vim git
else
echo "Install XCode (Depends for brew)"
xcode-select --insta... | d36365706ddf31d1556929cd1529a0d01c70d8b7 | init.sh | init.sh | Shell |
<|file_sep|>original/README.md
# Release
An application to make managing releases to specific environments easier.
## Getting started
You will need a SQL database and may have to create an app-specific SQL user - check `config/database.yml` for user details.
bundle install
rake db:create db:reset db:migrate... | # Release
An application to make managing releases to specific environments easier.
## Getting started
You will need a SQL database and may have to create an app-specific SQL user - check `config/database.yml` for user details.
bundle install
rake db:create db:migrate
rake spec
Install applications fro... | <|file_sep|>original/README.md
# Release
An application to make managing releases to specific environments easier.
## Getting started
You will need a SQL database and may have to create an app-specific SQL user - check `config/database.yml` for user details.
bundle install
rake db:create db:reset db:migrate... | de25940e927b2c7876866d3a2750b4c04645dd43 | README.md | README.md | Markdown |
<|file_sep|>spec/requests/authentication_pages_spec.rb.diff
original:
describe "signin page" do
updated:
describe "signin" do
<|file_sep|>original/spec/requests/authentication_pages_spec.rb
require 'spec_helper'
describe "Authentication" do
subject { page }
describe "signin page" do
before { visit signin... | require 'spec_helper'
describe "Authentication" do
subject { page }
describe "signin" do
before { visit signin_path }
let(:submit) { "Sign in" }
describe "page" do
it { should have_h1('Sign in') }
end
describe "with invalid credentials" do
before { click_button submit }
... | <|file_sep|>spec/requests/authentication_pages_spec.rb.diff
original:
describe "signin page" do
updated:
describe "signin" do
<|file_sep|>original/spec/requests/authentication_pages_spec.rb
require 'spec_helper'
describe "Authentication" do
subject { page }
describe "signin page" do
before { visit signin... | 769c4885c7d292243faf4d99f0f79f80d5a434ea | spec/requests/authentication_pages_spec.rb | spec/requests/authentication_pages_spec.rb | Ruby |
<|file_sep|>metadata/com.oF2pks.jquarks.yml.diff
original:
updated:
- versionName: 1.0-4
versionCode: 4
commit: v1.0-4
subdir: app
gradle:
- yes
<|file_sep|>original/metadata/com.oF2pks.jquarks.yml
Repo: https://gitlab.com/oF2pks/jelly.git
Builds:
- versionName: 1.0-2
versionCode: 2
... | gradle:
- yes
- versionName: 1.0-3
versionCode: 3
commit: v1.0-3
subdir: app
gradle:
- yes
- versionName: 1.0-4
versionCode: 4
commit: v1.0-4
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0-4
CurrentVersionCode:... | <|file_sep|>metadata/com.oF2pks.jquarks.yml.diff
original:
updated:
- versionName: 1.0-4
versionCode: 4
commit: v1.0-4
subdir: app
gradle:
- yes
<|file_sep|>original/metadata/com.oF2pks.jquarks.yml
Repo: https://gitlab.com/oF2pks/jelly.git
Builds:
- versionName: 1.0-2
versionCode: 2
... | bb4e3d8c740ea491014f195990413622f998a396 | metadata/com.oF2pks.jquarks.yml | metadata/com.oF2pks.jquarks.yml | YAML |
<|file_sep|>original/api/src/routes/data/cashflow/updateBalance.js
const { balanceSchema } = require('../../../schema');
function updateQuery(db, user, value) {
const { year, month, balance } = value;
const date = DateTime.fromObject({ year, month })
.endOf('month')
.toISODate();
return db... | const { balanceSchema } = require('../../../schema');
function updateQuery(db, user, value) {
const { year, month, balance } = value;
const date = DateTime.fromObject({ year, month })
.endOf('month')
.toISODate();
return db.transaction(async trx => {
await trx('balance')
... | <|file_sep|>original/api/src/routes/data/cashflow/updateBalance.js
const { balanceSchema } = require('../../../schema');
function updateQuery(db, user, value) {
const { year, month, balance } = value;
const date = DateTime.fromObject({ year, month })
.endOf('month')
.toISODate();
return db... | 859ce78bbc41f14c233b700dd1836ac6fa5a553c | api/src/routes/data/cashflow/updateBalance.js | api/src/routes/data/cashflow/updateBalance.js | JavaScript |
<|file_sep|>metadata.json.diff
original:
{"operatingsystem": "Debian","operatingsystemrelease":["7","8","9"]},
updated:
{"operatingsystem": "Debian","operatingsystemrelease":["7","8","9","10"]},
<|file_sep|>original/metadata.json
"summary": "Performs installation and configuration of Monit service, along with... | "summary": "Performs installation and configuration of Monit service, along with fine grained definition of checks",
"license": "MIT",
"source": "http://github.com/sbitio/puppet-monit",
"project_page": "https://github.com/sbitio/puppet-monit",
"issues_url": "https://github.com/sbitio/puppet-monit/issues",
"... | <|file_sep|>metadata.json.diff
original:
{"operatingsystem": "Debian","operatingsystemrelease":["7","8","9"]},
updated:
{"operatingsystem": "Debian","operatingsystemrelease":["7","8","9","10"]},
<|file_sep|>original/metadata.json
"summary": "Performs installation and configuration of Monit service, along with... | 617f84cb04bdddf130b89020e807d7d38fc294f4 | metadata.json | metadata.json | JSON |
<|file_sep|>original/package.json
"url": "git://github.com/fluture-js/fluture-project.git"
},
"files": [
"/index.cjs",
"/index.js",
"/LICENSE",
"/package.json",
"/README.md"
],
"author": "Aldwin Vlasblom <aldwin@avaq.it> (https://github.com/Avaq)",
"license": "MIT",
"dependencies": {... | "url": "git://github.com/fluture-js/fluture-project.git"
},
"files": [
"/index.cjs",
"/index.js",
"/LICENSE",
"/package.json",
"/README.md"
],
"author": "Aldwin Vlasblom <aldwin@avaq.it> (https://github.com/Avaq)",
"license": "MIT",
"dependencies": {},
"peerDependencies": {},
"de... | <|file_sep|>original/package.json
"url": "git://github.com/fluture-js/fluture-project.git"
},
"files": [
"/index.cjs",
"/index.js",
"/LICENSE",
"/package.json",
"/README.md"
],
"author": "Aldwin Vlasblom <aldwin@avaq.it> (https://github.com/Avaq)",
"license": "MIT",
"dependencies": {... | 027292e2455a86e2d5884b95ed9817a67bccf1e8 | package.json | package.json | JSON |
<|file_sep|>original/src/main/java/uk/gov/migration/V__16_AddOrderToBlobs.java
<|file_sep|>current/src/main/java/uk/gov/migration/V__16_AddOrderToBlobs.java
<|file_sep|>updated/src/main/java/uk/gov/migration/V__16_AddOrderToBlobs.java | package uk.gov.migration;
import org.flywaydb.core.api.migration.MigrationChecksumProvider;
import org.flywaydb.core.api.migration.jdbc.BaseJdbcMigration;
import java.sql.Connection;
import java.sql.Statement;
public class V__16_AddOrderToBlobs extends BaseJdbcMigration implements MigrationChecksumProvider {
@Ov... | <|file_sep|>original/src/main/java/uk/gov/migration/V__16_AddOrderToBlobs.java
<|file_sep|>current/src/main/java/uk/gov/migration/V__16_AddOrderToBlobs.java
<|file_sep|>updated/src/main/java/uk/gov/migration/V__16_AddOrderToBlobs.java
package uk.gov.migration;
import org.flywaydb.core.api.migration.MigrationChecksum... | 15636716738b43558f3d66d1bd3ed40c10a4ed78 | src/main/java/uk/gov/migration/V__16_AddOrderToBlobs.java | src/main/java/uk/gov/migration/V__16_AddOrderToBlobs.java | Java |
<|file_sep|>widgets/lib/spark_menu/spark_menu.css.diff
original:
updated:
/* BUG #1569 */
<|file_sep|>widgets/lib/spark_menu/spark_menu.css.diff
original:
updated:
color: white;
}
::content spark-menu-item.selected /deep/ * {
<|file_sep|>widgets/lib/spark_menu/spark_menu.css.diff
original:
updated:
/* BUG #1569 */... | ::content spark-menu-item.selected /deep/ * {
color: white;
}
::content spark-menu-item.active {
background-color: #3a84c3;
}
/* BUG #1569 */
::content spark-menu-item.active ^ * {
color: white;
}
::content spark-menu-item.active /deep/ * {
color: white;
}
/*@polyfill spark-menu-separator */
::content spark-... | <|file_sep|>widgets/lib/spark_menu/spark_menu.css.diff
original:
updated:
/* BUG #1569 */
<|file_sep|>widgets/lib/spark_menu/spark_menu.css.diff
original:
updated:
color: white;
}
::content spark-menu-item.selected /deep/ * {
<|file_sep|>widgets/lib/spark_menu/spark_menu.css.diff
original:
updated:
/* BUG #1569 */... | 58b09ef134e0ff16213d48c9abb165ae01e140e2 | widgets/lib/spark_menu/spark_menu.css | widgets/lib/spark_menu/spark_menu.css | CSS |
<|file_sep|>_config.yml.diff
original:
twitter:
facebook:
updated:
twitter: #username
facebook: #username
<|file_sep|>_config.yml.diff
original:
plus:
updated:
plus: #username
<|file_sep|>original/_config.yml
facebook:
google:
plus:
analytics:
verify:
ad-client:
ad-slot: ... | facebook: #username
google:
plus: #username
analytics:
verify:
ad-client:
ad-slot:
bing-verify:
github: #username
stackoverflow: #http://stackoverflow.com/users/123456/username
linkedin: #username
instagram: #username
lastfm: #username
tumblr: #username
pinterest: #username
... | <|file_sep|>_config.yml.diff
original:
twitter:
facebook:
updated:
twitter: #username
facebook: #username
<|file_sep|>_config.yml.diff
original:
plus:
updated:
plus: #username
<|file_sep|>original/_config.yml
facebook:
google:
plus:
analytics:
verify:
ad-client:
ad-slot: ... | 6ad4390527308ab0244d66a96230e28429aba943 | _config.yml | _config.yml | YAML |
<|file_sep|>original/wtforms/ext/sqlalchemy/__init__.py
import warnings
warnings.warn(
'wtforms.ext.sqlalchemy is deprecated, and will be removed in WTForms 3.0. '
'Instead transition to the excellent WTForms-Alchemy package: '
'https://github.com/kvesteri/wtforms-alchemy',
DeprecationWarning
)
<|file_... | import warnings
warnings.warn(
'wtforms.ext.sqlalchemy is deprecated, and will be removed in WTForms 3.0. '
'The package has been extracted to a separate package wtforms_sqlalchemy: '
'https://github.com/wtforms/wtforms-sqlalchemy .\n'
'Or alternately, check out the WTForms-Alchemy package which provid... | <|file_sep|>original/wtforms/ext/sqlalchemy/__init__.py
import warnings
warnings.warn(
'wtforms.ext.sqlalchemy is deprecated, and will be removed in WTForms 3.0. '
'Instead transition to the excellent WTForms-Alchemy package: '
'https://github.com/kvesteri/wtforms-alchemy',
DeprecationWarning
)
<|file_... | 7ddaa5a5f9bee7e21c1221950c50c8688e815e01 | wtforms/ext/sqlalchemy/__init__.py | wtforms/ext/sqlalchemy/__init__.py | Python |
<|file_sep|>original/src/test/rustdoc/assoc-consts-version.rs
<|file_sep|>current/src/test/rustdoc/assoc-consts-version.rs
<|file_sep|>updated/src/test/rustdoc/assoc-consts-version.rs | // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or ... | <|file_sep|>original/src/test/rustdoc/assoc-consts-version.rs
<|file_sep|>current/src/test/rustdoc/assoc-consts-version.rs
<|file_sep|>updated/src/test/rustdoc/assoc-consts-version.rs
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// htt... | ca04c639307e700e4684a46ef71d0781b8f35736 | src/test/rustdoc/assoc-consts-version.rs | src/test/rustdoc/assoc-consts-version.rs | Rust |
<|file_sep|>original/Lib/xml/__init__.py
parsers -- Python wrappers for XML parsers (currently only supports Expat).
sax -- The Simple API for XML, developed by XML-Dev, led by David
Megginson and ported to Python by Lars Marius Garshol. This
supports the SAX 2 API.
"""
__all__ = ["dom", "parsers", "s... | parsers -- Python wrappers for XML parsers (currently only supports Expat).
sax -- The Simple API for XML, developed by XML-Dev, led by David
Megginson and ported to Python by Lars Marius Garshol. This
supports the SAX 2 API.
"""
__all__ = ["dom", "parsers", "sax"]
# When being checked-out without op... | <|file_sep|>original/Lib/xml/__init__.py
parsers -- Python wrappers for XML parsers (currently only supports Expat).
sax -- The Simple API for XML, developed by XML-Dev, led by David
Megginson and ported to Python by Lars Marius Garshol. This
supports the SAX 2 API.
"""
__all__ = ["dom", "parsers", "s... | 9ca11ae97ac21d6525da853c9ec3e8007939d187 | Lib/xml/__init__.py | Lib/xml/__init__.py | Python |
<|file_sep|>original/setup.py
setup(
name='panoptescli',
version='1.0.2',
url='https://github.com/zooniverse/panoptes-cli',
author='Adam McMaster',
author_email='adam@zooniverse.org',
description=(
'A command-line client for Panoptes, the API behind the Zooniverse'
),
packages=fi... | setup(
name='panoptescli',
version='1.0.2',
url='https://github.com/zooniverse/panoptes-cli',
author='Adam McMaster',
author_email='adam@zooniverse.org',
description=(
'A command-line client for Panoptes, the API behind the Zooniverse'
),
packages=find_packages(),
include_pac... | <|file_sep|>original/setup.py
setup(
name='panoptescli',
version='1.0.2',
url='https://github.com/zooniverse/panoptes-cli',
author='Adam McMaster',
author_email='adam@zooniverse.org',
description=(
'A command-line client for Panoptes, the API behind the Zooniverse'
),
packages=fi... | 2dd974791de682fe80d7da98e81add9addd1033b | setup.py | setup.py | Python |
<|file_sep|>original/tessera-server/requirements.txt
flask==0.12.3
flask-sqlalchemy==2.1
flask-migrate==2.0.2
flask-cors==3.0.2
sqlalchemy==0.9.4
requests==2.20.0
inflection==0.3.1
six==1.10.0
<|file_sep|>current/tessera-server/requirements.txt
flask==0.12.3
flask-sqlalchemy==2.1
flask-migrate==2.0.2
flask-cors==3.0.2
... | flask==0.12.4
flask-sqlalchemy==2.1
flask-migrate==2.0.2
flask-cors==3.0.2
sqlalchemy==0.9.4
requests==2.20.0
inflection==0.3.1
six==1.10.0 | <|file_sep|>original/tessera-server/requirements.txt
flask==0.12.3
flask-sqlalchemy==2.1
flask-migrate==2.0.2
flask-cors==3.0.2
sqlalchemy==0.9.4
requests==2.20.0
inflection==0.3.1
six==1.10.0
<|file_sep|>current/tessera-server/requirements.txt
flask==0.12.3
flask-sqlalchemy==2.1
flask-migrate==2.0.2
flask-cors==3.0.2
... | d7fe050f66d11824c8a7f2cb49d7fccc4e9aa648 | tessera-server/requirements.txt | tessera-server/requirements.txt | Text |
<|file_sep|>original/pusher-client.gemspec
s.email = ['support@pusher.com']
s.homepage = 'http://github.com/pusher/pusher-ruby-client'
s.summary = 'Client for consuming WebSockets from http://pusher.com'
s.description = 'Client for consuming WebSockets from http://pusher.com'
... | s.email = ['support@pusher.com']
s.homepage = 'http://github.com/pusher/pusher-ruby-client'
s.summary = 'Client for consuming WebSockets from http://pusher.com'
s.description = 'Client for consuming WebSockets from http://pusher.com'
s.files = `git ls-files`.split(... | <|file_sep|>original/pusher-client.gemspec
s.email = ['support@pusher.com']
s.homepage = 'http://github.com/pusher/pusher-ruby-client'
s.summary = 'Client for consuming WebSockets from http://pusher.com'
s.description = 'Client for consuming WebSockets from http://pusher.com'
... | 5f2b046df12c9713f3864233c65cf2d363dd22e5 | pusher-client.gemspec | pusher-client.gemspec | Ruby |
<|file_sep|>src/gui/storage.ts.diff
original:
console.log(e.message);
updated:
console.log('Invalid JSON: ' + e.message);
<|file_sep|>original/src/gui/storage.ts
this.storageObj.setItem(key, value);
}
public setObj(key: string, value: Object): void {
if (!this.isCompati... |
this.storageObj.setItem(key, value);
}
public setObj(key: string, value: Object): void {
if (!this.isCompatible()) { return; }
try {
this.set(key, JSON.stringify(value));
} catch (e) {
console.log('Invalid JSON: ' + e.message);
}
}
priv... | <|file_sep|>src/gui/storage.ts.diff
original:
console.log(e.message);
updated:
console.log('Invalid JSON: ' + e.message);
<|file_sep|>original/src/gui/storage.ts
this.storageObj.setItem(key, value);
}
public setObj(key: string, value: Object): void {
if (!this.isCompati... | 84bb977f278e88b6250ff429d54ff0dfbd6bb640 | src/gui/storage.ts | src/gui/storage.ts | TypeScript |
<|file_sep|>Source/Our.Umbraco.Nexu.Core/Client/views/media-delete.html.diff
original:
<div class="umb-dialog-body" auto-scale="90">
updated:
<div class="umb-dialog-body" auto-scale="90" ng-hide="isLoading" >
<|file_sep|>original/Source/Our.Umbraco.Nexu.Core/Client/views/media-delete.html
<div class="umb-dialo... | <div class="umb-dialog umb-pane" ng-controller="Our.Umbraco.Nexu.MediaDeleteController">
<div class="umb-dialog-body" auto-scale="90" ng-hide="isLoading" >
<nexu-links links="links" link-clicked="cancel" title="nexu_linksTitleMedia"></nexu-links>
<p class="umb-abstract">
<localize key... | <|file_sep|>Source/Our.Umbraco.Nexu.Core/Client/views/media-delete.html.diff
original:
<div class="umb-dialog-body" auto-scale="90">
updated:
<div class="umb-dialog-body" auto-scale="90" ng-hide="isLoading" >
<|file_sep|>original/Source/Our.Umbraco.Nexu.Core/Client/views/media-delete.html
<div class="umb-dialo... | f294f13d93409bb54fc2dfc312eb9949acab472c | Source/Our.Umbraco.Nexu.Core/Client/views/media-delete.html | Source/Our.Umbraco.Nexu.Core/Client/views/media-delete.html | HTML |
<|file_sep|>original/AjaxMinAST/Program.cs
}
}
class ObjectLiteralVisitor : TreeVisitor {
Block functions;
public ObjectLiteralVisitor(Block functions) {
this.functions = functions;
}
public override void Visit(ObjectLiteral node) {
base.Visit(node);
foreach(var function in this.functions.Child... | }
}
class ObjectLiteralVisitor : TreeVisitor {
Block functions;
public ObjectLiteralVisitor(Block functions) {
this.functions = functions;
}
public override void Visit(ObjectLiteral node) {
base.Visit(node);
foreach(var function in this.functions.Children) {
node.Properties.Insert(node.Prop... | <|file_sep|>original/AjaxMinAST/Program.cs
}
}
class ObjectLiteralVisitor : TreeVisitor {
Block functions;
public ObjectLiteralVisitor(Block functions) {
this.functions = functions;
}
public override void Visit(ObjectLiteral node) {
base.Visit(node);
foreach(var function in this.functions.Child... | cb6162c7f94862f1f7d5502fa895181858d3de49 | AjaxMinAST/Program.cs | AjaxMinAST/Program.cs | C# |
<|file_sep|>original/features/memberships/templates/memberships/_group_menu_groups.html
{% if user.gestalt.membership_set.exists %}
<li class="dropdown-header">Meine Gruppen</li>
{% endif %}
{% for membership in user.gestalt.membership_set.all %}
<li>
<a href="{{ membership.group.get_absolute_url }}">{... | <li class="dropdown-header">
{% if user.gestalt.membership_set.exists %}Meine{% endif %} Gruppen
</li>
{% for membership in user.gestalt.membership_set.all %}
<li>
<a href="{{ membership.group.get_absolute_url }}">{{ membership.group }}</a>
</li>
{% empty %}
<li>
<a href="{% url 'group-... | <|file_sep|>original/features/memberships/templates/memberships/_group_menu_groups.html
{% if user.gestalt.membership_set.exists %}
<li class="dropdown-header">Meine Gruppen</li>
{% endif %}
{% for membership in user.gestalt.membership_set.all %}
<li>
<a href="{{ membership.group.get_absolute_url }}">{... | 21fc2b84f545c9e31003cef56415370cd3b3f597 | features/memberships/templates/memberships/_group_menu_groups.html | features/memberships/templates/memberships/_group_menu_groups.html | HTML |
<|file_sep|>original/htdocs/samples/axes_x_tick_rotate.html
<|file_sep|>current/htdocs/samples/axes_x_tick_rotate.html
<|file_sep|>updated/htdocs/samples/axes_x_tick_rotate.html | <html>
<head>
<link href="/css/c3.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="chart"></div>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="/js/c3.js"></script>
<script>
var chart = c3.generate({
data: {
columns: [
... | <|file_sep|>original/htdocs/samples/axes_x_tick_rotate.html
<|file_sep|>current/htdocs/samples/axes_x_tick_rotate.html
<|file_sep|>updated/htdocs/samples/axes_x_tick_rotate.html
<html>
<head>
<link href="/css/c3.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="chart"></div>
<script sr... | d48cfbecdd8459acd6478934bccb6d7f06243773 | htdocs/samples/axes_x_tick_rotate.html | htdocs/samples/axes_x_tick_rotate.html | HTML |
<|file_sep|>original/oneword.html
<|file_sep|>current/oneword.html
<|file_sep|>updated/oneword.html | <!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>Semantic Change</title>
<meta name="description" content="">
<meta name=viewport content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<!-- build:css styles/vendor.css -->
<... | <|file_sep|>original/oneword.html
<|file_sep|>current/oneword.html
<|file_sep|>updated/oneword.html
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>Semantic Change</title>
<meta name="description" content="">
<meta name=viewport content="width=device-width, initial-scale=1">... | 511558c9bf99295d7950ef2dbf1cf26c52335b86 | oneword.html | oneword.html | HTML |
<|file_sep|>original/requirements.txt
Flask==0.11
django-dotenv==1.4.1 # Read environment variables from .env
django-getenv==1.3.1 # Get environment variables
newrelic
# Error tracking
blinker==1.4
rollbar==0.13.0
<|file_sep|>current/requirements.txt
Flask==0.11
django-dotenv==1.4.1 # Read environment variables from .... | Flask==0.11.1
django-dotenv==1.4.1 # Read environment variables from .env
django-getenv==1.3.1 # Get environment variables
newrelic
# Error tracking
blinker==1.4
rollbar==0.13.0 | <|file_sep|>original/requirements.txt
Flask==0.11
django-dotenv==1.4.1 # Read environment variables from .env
django-getenv==1.3.1 # Get environment variables
newrelic
# Error tracking
blinker==1.4
rollbar==0.13.0
<|file_sep|>current/requirements.txt
Flask==0.11
django-dotenv==1.4.1 # Read environment variables from .... | 8263ee48369fbc0c3e9802cc9ade9b2f18f466a4 | requirements.txt | requirements.txt | Text |
<|file_sep|>original/project.clj
(defproject org.flatland/useful "0.10.1"
:description "A collection of generally-useful Clojure utility functions"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo}
:url "https://github.co... | (defproject org.flatland/useful "0.10.1"
:description "A collection of generally-useful Clojure utility functions"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo}
:url "https://github.com/flatland/useful"
:dependencie... | <|file_sep|>original/project.clj
(defproject org.flatland/useful "0.10.1"
:description "A collection of generally-useful Clojure utility functions"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo}
:url "https://github.co... | 49a6632d8895673b64cf01a1ef9dd0ded507be9c | project.clj | project.clj | Clojure |
<|file_sep|>original/roles/yarn/tasks/main.yml
---
- name: Install yarn repo key
apt_key:
url: "https://dl.yarnpkg.com/debian/pubkey.gpg"
become: yes
- name: Install yarn repo
apt_repository:
repo: "deb https://dl.yarnpkg.com/debian/ stable main"
become: yes
- name: Install yarn
apt:
name: "yarn... | become: yes
- name: Install yarn repo
apt_repository:
repo: "deb https://dl.yarnpkg.com/debian/ stable main"
become: yes
- name: Install yarn
apt:
name: "yarn"
become: yes
- name: Install global modules
command: "/usr/bin/yarn global add {{ item }}"
with_items:
- "@angular/cli"
- pretti... | <|file_sep|>original/roles/yarn/tasks/main.yml
---
- name: Install yarn repo key
apt_key:
url: "https://dl.yarnpkg.com/debian/pubkey.gpg"
become: yes
- name: Install yarn repo
apt_repository:
repo: "deb https://dl.yarnpkg.com/debian/ stable main"
become: yes
- name: Install yarn
apt:
name: "yarn... | ad54f3580dd87ca5dc199c881cf685d28aa146af | roles/yarn/tasks/main.yml | roles/yarn/tasks/main.yml | YAML |
<|file_sep|>original/composer.json
"name": "jcf/geocode",
"description": "Google Geocoding API for Laravel",
"keywords": ["laravel", "google", "geocode", "geocoding", "address", "latitude", "longitude", "api"],
"license": "MIT",
"authors": [
{
"name": "João Carlos",
"... | ],
"require": {
"php": ">=5.4.0",
"guzzlehttp/guzzle": "~5.3|~6.0"
},
"autoload": {
"psr-0": {
"Jcf\\Geocode": "src/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Jcf\\Geocode\\Geoc... | <|file_sep|>original/composer.json
"name": "jcf/geocode",
"description": "Google Geocoding API for Laravel",
"keywords": ["laravel", "google", "geocode", "geocoding", "address", "latitude", "longitude", "api"],
"license": "MIT",
"authors": [
{
"name": "João Carlos",
"... | 0df304b6595c82198f905a8ef94f6b1e826e7112 | composer.json | composer.json | JSON |
<|file_sep|>original/requirements-dev.txt
mock==1.0.1
py==1.4.20
pytest==2.5.2
coverage==3.7.1
<|file_sep|>current/requirements-dev.txt
mock==1.0.1
py==1.4.20
pytest==2.5.2
coverage==3.7.1
<|file_sep|>updated/requirements-dev.txt | -r requirements.txt
mock==1.0.1
py==1.4.20
pytest==2.5.2
coverage==3.7.1 | <|file_sep|>original/requirements-dev.txt
mock==1.0.1
py==1.4.20
pytest==2.5.2
coverage==3.7.1
<|file_sep|>current/requirements-dev.txt
mock==1.0.1
py==1.4.20
pytest==2.5.2
coverage==3.7.1
<|file_sep|>updated/requirements-dev.txt
-r requirements.txt
mock==1.0.1
py==1.4.20
pytest==2.5.2
coverage==3.7.1 | 67f1beea0af8c784101519a8b8e9b33ba00bc8cc | requirements-dev.txt | requirements-dev.txt | Text |
<|file_sep|>original/classes/Boom/Controller/Page/Html.php
parent::before();
$this->_save_last_url();
$template = $this->page->version()->template;
$this->template = View::factory($template->filename());
// Set some variables which need to be used globally in the views.
View::bind_global('auth', $this->au... | parent::before();
$this->_save_last_url();
$template = $this->page->version()->template;
$this->template = View::factory($template->filename());
// Set some variables which need to be used globally in the views.
View::bind_global('auth', $this->auth);
View::bind_global('editor', $this->editor);
View::... | <|file_sep|>original/classes/Boom/Controller/Page/Html.php
parent::before();
$this->_save_last_url();
$template = $this->page->version()->template;
$this->template = View::factory($template->filename());
// Set some variables which need to be used globally in the views.
View::bind_global('auth', $this->au... | ca8e0b5164d9a09545a848b2060ec62f74da2543 | classes/Boom/Controller/Page/Html.php | classes/Boom/Controller/Page/Html.php | PHP |
<|file_sep|>pyautoupdate/_move_glob.py.diff
original:
updated:
if os.name == "nt":
from .ntcommonpath import commonpath
else:
from .posixcommonpath import commonpath
<|file_sep|>original/pyautoupdate/_move_glob.py
def move_glob(src,dst):
"""Moves files from src to dest.
src may be any glob to recogn... |
def move_glob(src,dst):
"""Moves files from src to dest.
src may be any glob to recognize files. dst must be a folder."""
for obj in glob.iglob(src):
shutil.move(obj,dst)
def copy_glob(src,dst):
"""Copies files from src to dest.
src may be any glob to recognize files. dst must be a folde... | <|file_sep|>pyautoupdate/_move_glob.py.diff
original:
updated:
if os.name == "nt":
from .ntcommonpath import commonpath
else:
from .posixcommonpath import commonpath
<|file_sep|>original/pyautoupdate/_move_glob.py
def move_glob(src,dst):
"""Moves files from src to dest.
src may be any glob to recogn... | eb698848c67a5f2ffe1b47c2b4620946f3133c3f | pyautoupdate/_move_glob.py | pyautoupdate/_move_glob.py | Python |
<|file_sep|>.travis.yml.diff
original:
- '7'
updated:
- '9'
- '8'
<|file_sep|>original/.travis.yml
sudo: false
language: node_js
node_js:
- '7'
- '6'
- '4'
<|file_sep|>current/.travis.yml
sudo: false
language: node_js
node_js:
- '9'
- '8'
- '6'
- '4'
<|file_sep|>updated/.travis.yml | sudo: false
language: node_js
node_js:
- '9'
- '8'
- '6' | <|file_sep|>.travis.yml.diff
original:
- '7'
updated:
- '9'
- '8'
<|file_sep|>original/.travis.yml
sudo: false
language: node_js
node_js:
- '7'
- '6'
- '4'
<|file_sep|>current/.travis.yml
sudo: false
language: node_js
node_js:
- '9'
- '8'
- '6'
- '4'
<|file_sep|>updated/.travis.yml
sudo: false
language: node_... | 3451cbf4814af45cd6e6daee5a9ed21715f208a6 | .travis.yml | .travis.yml | YAML |
<|file_sep|>original/README.md
# AIChallengeFramework-Tests
This is a collection of NUnit tests for the AIChallengeFramework. You can learn
more about the framework and its purpose on GitHub:
https://github.com/jdno/AIChallengeFramework
## Issue reporting
If you are experiencing any problems, please open an issue ... | # AIChallengeFramework-Tests
This is a collection of NUnit tests for the AIChallengeFramework. You can learn
more about the framework and its purpose on GitHub:
https://github.com/jdno/AIChallengeFramework
## Issue reporting
If you are experiencing any problems, please open an issue on GitHub:
https://github.com/j... | <|file_sep|>original/README.md
# AIChallengeFramework-Tests
This is a collection of NUnit tests for the AIChallengeFramework. You can learn
more about the framework and its purpose on GitHub:
https://github.com/jdno/AIChallengeFramework
## Issue reporting
If you are experiencing any problems, please open an issue ... | 3188f01e553ae055978e7e8cdf6f26acc6896189 | README.md | README.md | Markdown |
<|file_sep|>original/dynj/src/main/scala/ast/operators.scala
<|file_sep|>current/dynj/src/main/scala/ast/operators.scala
<|file_sep|>updated/dynj/src/main/scala/ast/operators.scala | package ch.usi.inf.l3.sana.dynj.ast
import ch.usi.inf.l3.sana.calcj
import calcj.ast.operators.BOp
trait operators extends calcj.ast.operators {
object IsInstanceOf extends BOp {
override def toString: String = "isinstanceof"
}
}
object operators extends operators | <|file_sep|>original/dynj/src/main/scala/ast/operators.scala
<|file_sep|>current/dynj/src/main/scala/ast/operators.scala
<|file_sep|>updated/dynj/src/main/scala/ast/operators.scala
package ch.usi.inf.l3.sana.dynj.ast
import ch.usi.inf.l3.sana.calcj
import calcj.ast.operators.BOp
trait operators extends calcj.ast.o... | 3f383e3269daccfa729cec970770c4b85ba2afab | dynj/src/main/scala/ast/operators.scala | dynj/src/main/scala/ast/operators.scala | Scala |
<|file_sep|>features/common.feature.diff
original:
When I run `../../bin/sphere-ipinfo-mashup`
Then the exit status should be 0
updated:
When I run `node ../../bin/sphere-ipinfo-mashup`
Then the exit status should be 1
<|file_sep|>original/features/common.feature
Feature: Show common information for too... | Feature: Show common information for tooling
Scenario: Show general help
When I run `node ../../bin/sphere-ipinfo-mashup`
Then the exit status should be 1
And the output should contain:
"""
Usage: node ../../bin/sphere-ipinfo-mashup
""" | <|file_sep|>features/common.feature.diff
original:
When I run `../../bin/sphere-ipinfo-mashup`
Then the exit status should be 0
updated:
When I run `node ../../bin/sphere-ipinfo-mashup`
Then the exit status should be 1
<|file_sep|>original/features/common.feature
Feature: Show common information for too... | a9ff46f6869bcf9f482917f22f20be0986068a54 | features/common.feature | features/common.feature | Cucumber |
<|file_sep|>original/roles/StackStorm.st2chatops/meta/main.yml
description: Install st2chatops
author: humblearner
company: StackStorm
license: Apache 2.0
min_ansible_version: 2.5
platforms:
- name: Ubuntu
versions:
- bionic
- xenial
- name: EL
versions:
- 7
... | description: Install st2chatops
author: humblearner
company: StackStorm
license: Apache 2.0
min_ansible_version: 2.5
platforms:
- name: Ubuntu
versions:
- bionic
- xenial
- focal
- name: EL
versions:
- 7
- 8
galaxy_tags:
- system
- st2
... | <|file_sep|>original/roles/StackStorm.st2chatops/meta/main.yml
description: Install st2chatops
author: humblearner
company: StackStorm
license: Apache 2.0
min_ansible_version: 2.5
platforms:
- name: Ubuntu
versions:
- bionic
- xenial
- name: EL
versions:
- 7
... | cdf4eddc52c5d26b2ca7f8b2374db25cff62c92c | roles/StackStorm.st2chatops/meta/main.yml | roles/StackStorm.st2chatops/meta/main.yml | YAML |
<|file_sep|>original/app/views/tags/_tag.html.haml
-# %a{ :href => idea_search_path(:search => ['tag', tag.name]) }
== #{h(tag.name)}
-# %span== (#{h(tag.idea_count)})
<|file_sep|>current/app/views/tags/_tag.html.haml
-# %a{ :href => idea_search_path(:search => ['tag', tag.name]) }
== #{h(tag.name)}
-# %span== (#{h(tag... | = link_to("#{h(tag.name)} (#{h(tag.ideas.length)})", tag_path(tag)) | <|file_sep|>original/app/views/tags/_tag.html.haml
-# %a{ :href => idea_search_path(:search => ['tag', tag.name]) }
== #{h(tag.name)}
-# %span== (#{h(tag.idea_count)})
<|file_sep|>current/app/views/tags/_tag.html.haml
-# %a{ :href => idea_search_path(:search => ['tag', tag.name]) }
== #{h(tag.name)}
-# %span== (#{h(tag... | 57e405af3c27f0ab0048bc36f95a7ea88ad18ebf | app/views/tags/_tag.html.haml | app/views/tags/_tag.html.haml | Haml |
<|file_sep|>original/.travis.yml
language: java
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk10
addons:
apt:
packages:
- oracle-java8-installer
- oracle-java9-installer
#- oracle-java10-installer
dist: trusty
sudo: false
notifications:
email:
recipients:
- dev@speedment.com
<|... | language: java
jdk:
- oraclejdk8
- oraclejdk9
- openjdk10
addons:
apt:
packages:
- oracle-java8-installer
- oracle-java9-installer
#- oracle-java10-installer
dist: trusty
sudo: false
notifications:
email:
recipients:
- dev@speedment.com | <|file_sep|>original/.travis.yml
language: java
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk10
addons:
apt:
packages:
- oracle-java8-installer
- oracle-java9-installer
#- oracle-java10-installer
dist: trusty
sudo: false
notifications:
email:
recipients:
- dev@speedment.com
<|... | d31f71e5ea21fa008edf1e80dcf45bfcc5dda9b6 | .travis.yml | .travis.yml | YAML |
<|file_sep|>original/README.md
# FrancisCMS
An [IndieWeb](http://indiewebcamp.com/)-friendly content management system built with [Ruby on Rails](http://rubyonrails.org).
[](https://travis-ci.org/jgarber623/FrancisCMS)
## Installation
#... | # FrancisCMS
An [IndieWeb](http://indiewebcamp.com/)-friendly content management system built with [Ruby on Rails](http://rubyonrails.org).
[](https://travis-ci.org/jgarber623/FrancisCMS)
[-friendly content management system built with [Ruby on Rails](http://rubyonrails.org).
[](https://travis-ci.org/jgarber623/FrancisCMS)
## Installation
#... | ca86821fd5d85f550cfd9be7e8d45738de586ec6 | README.md | README.md | Markdown |
<|file_sep|>original/.travis.yml
language: node_js
node_js:
- 0.12
- 0.10
after_script: npm run functional
<|file_sep|>current/.travis.yml
language: node_js
node_js:
- 0.12
- 0.10
after_script: npm run functional
<|file_sep|>updated/.travis.yml | sudo: false
language: node_js
node_js:
- 0.12
- 0.10
after_script: npm run functional | <|file_sep|>original/.travis.yml
language: node_js
node_js:
- 0.12
- 0.10
after_script: npm run functional
<|file_sep|>current/.travis.yml
language: node_js
node_js:
- 0.12
- 0.10
after_script: npm run functional
<|file_sep|>updated/.travis.yml
sudo: false
language: node_js
node_js:
- 0.12
- 0.10
after_scri... | 5263eeafdff6594306be228675d588d1930f2ba9 | .travis.yml | .travis.yml | YAML |
<|file_sep|>original/db/migrate/20170801232034_add_default_pad_to_user_event.rb
<|file_sep|>current/db/migrate/20170801232034_add_default_pad_to_user_event.rb
<|file_sep|>updated/db/migrate/20170801232034_add_default_pad_to_user_event.rb | class AddDefaultPadToUserEvent < ActiveRecord::Migration[5.0]
def up
change_column_default :user_events, :paid, false
UserEvent.find_each do |ue|
if ue.paid.nil?
ue.paid = false
ue.save!
end
end
end
end | <|file_sep|>original/db/migrate/20170801232034_add_default_pad_to_user_event.rb
<|file_sep|>current/db/migrate/20170801232034_add_default_pad_to_user_event.rb
<|file_sep|>updated/db/migrate/20170801232034_add_default_pad_to_user_event.rb
class AddDefaultPadToUserEvent < ActiveRecord::Migration[5.0]
def up
chang... | dc6db08e469f812e885086dc4fd453dbbc3f5a3e | db/migrate/20170801232034_add_default_pad_to_user_event.rb | db/migrate/20170801232034_add_default_pad_to_user_event.rb | Ruby |
<|file_sep|>original/web/concrete/src/Validation/SanitizeService.php
* @subpackage Security
* @author Chris Rosser <chris@bluefuton.com>
* @copyright Copyright (c) 2003-2008 Concrete5. (http://www.concrete5.org)
* @license http://www.concrete5.org/license/ MIT License
*/
namespace Concrete\Core\Validation... | * @subpackage Security
* @author Chris Rosser <chris@bluefuton.com>
* @copyright Copyright (c) 2003-2008 Concrete5. (http://www.concrete5.org)
* @license http://www.concrete5.org/license/ MIT License
*/
namespace Concrete\Core\Validation;
class SanitizeService {
public function sanitizeString($string... | <|file_sep|>original/web/concrete/src/Validation/SanitizeService.php
* @subpackage Security
* @author Chris Rosser <chris@bluefuton.com>
* @copyright Copyright (c) 2003-2008 Concrete5. (http://www.concrete5.org)
* @license http://www.concrete5.org/license/ MIT License
*/
namespace Concrete\Core\Validation... | 764b2e7462b7fa0883f2e538611ee10957a7113a | web/concrete/src/Validation/SanitizeService.php | web/concrete/src/Validation/SanitizeService.php | PHP |
<|file_sep|>original/app/views/properties/index.html.erb
</h1>
</div>
</div>
<div class="row">
<aside class="col-md-4">
<h1>Propiedades Registradas</h1>
<table>
<tr>
<th># Seq.</th>
<th>Dirección</th>
</tr>
<% @properties.each_with_index do |prop... | <aside class="col-md-4">
<h1>Propiedades Registradas</h1>
<table>
<tr>
<th># Seq.</th>
<th>Dirección</th>
</tr>
<% @properties.each_with_index do |property, index| %>
<tr>
<td><%= index+1 %></td>
<td><%= property.address %></td>
... | <|file_sep|>original/app/views/properties/index.html.erb
</h1>
</div>
</div>
<div class="row">
<aside class="col-md-4">
<h1>Propiedades Registradas</h1>
<table>
<tr>
<th># Seq.</th>
<th>Dirección</th>
</tr>
<% @properties.each_with_index do |prop... | 146ed84fb9c3cc5e676b7e96d74d01845b7e1cae | app/views/properties/index.html.erb | app/views/properties/index.html.erb | HTML+ERB |
<|file_sep|>original/docs/installation.md
# Installation {: .doctitle}
Installing ThemeScheduler.
---
## Package Control
The recommended way to install ThemeScheduler is via [Package Control](https://packagecontrol.io/). Package Control will install the correct branch on your system and keep it up to date.
1. Ensur... | # Installation {: .doctitle}
Installing ThemeScheduler.
---
## Package Control
The recommended way to install ThemeScheduler is via [Package Control](https://packagecontrol.io/). Package Control will install the correct branch on your system and keep it up to date.
1. Ensure Package Control is installed. Instructi... | <|file_sep|>original/docs/installation.md
# Installation {: .doctitle}
Installing ThemeScheduler.
---
## Package Control
The recommended way to install ThemeScheduler is via [Package Control](https://packagecontrol.io/). Package Control will install the correct branch on your system and keep it up to date.
1. Ensur... | fbac4e2375ac3fddb104e4b6f77a3b148cb29545 | docs/installation.md | docs/installation.md | Markdown |
<|file_sep|>src/main/main.js.diff
original:
mainWindow = createWindow();
updated:
mainWindow = createWindow();
<|file_sep|>src/main/main.js.diff
original:
app.on('window-all-closed', function() {
if(process.platform !== 'darwin') {
app.quit();
}
updated:
app.on('window-all-closed', function () {
if (proces... | },
resizable: true,
width: workAreaSize.width,
height: workAreaSize.height,
show: false
});
window.loadUrl('file://' + __dirname + '/../../index.html');
menu.setMenu(app, window);
window.on('closed', function () {
window = null;
});
window.webCo... | <|file_sep|>src/main/main.js.diff
original:
mainWindow = createWindow();
updated:
mainWindow = createWindow();
<|file_sep|>src/main/main.js.diff
original:
app.on('window-all-closed', function() {
if(process.platform !== 'darwin') {
app.quit();
}
updated:
app.on('window-all-closed', function () {
if (proces... | fc84754a5be8d5ad88e46812a84b4edecbe10265 | src/main/main.js | src/main/main.js | JavaScript |
<|file_sep|>tox.ini.diff
original:
envlist=
{py27,py34,py35}-{dj17,dj18,dj19,dj110,djdev}
updated:
envlist =
{py27,py34}-dj{17,18,19,110}
{py27,py34,py35,py36}-dj111
{py34,py35,py36}-dj20
{py35,py36}-djdev
<|file_sep|>tox.ini.diff
original:
commands=
make {posargs:test}
basepython=
updated:
basepython =
<|f... | {py27,py34,py35,py36}-dj111
{py34,py35,py36}-dj20
{py35,py36}-djdev
[testenv]
basepython =
py27: python2.7
py34: python3.4
py35: python3.5
py36: python3.6
commands = make {posargs:test}
deps =
dj17: Django>=1.7,<1.8
dj18: Django>=1.8,<1.9
dj19: Django>=1.9,<1.10
dj110: Django>=1.10,<1.11
dj111:... | <|file_sep|>tox.ini.diff
original:
envlist=
{py27,py34,py35}-{dj17,dj18,dj19,dj110,djdev}
updated:
envlist =
{py27,py34}-dj{17,18,19,110}
{py27,py34,py35,py36}-dj111
{py34,py35,py36}-dj20
{py35,py36}-djdev
<|file_sep|>tox.ini.diff
original:
commands=
make {posargs:test}
basepython=
updated:
basepython =
<|f... | 478343648e24bc347891270b0b414f3477cc8156 | tox.ini | tox.ini | INI |
<|file_sep|>original/SPAWithAngularJS/module2/scopeInheritance/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Controller As Syntax</title>
<script src=... | <script src="js/angular.min.js"></script>
<script src="js/app.module.js"></script>
<script src="js/app.parentController1.js"></script>
</head>
<body data-ng-app="MyApp">
<h1>
Controller As Syntax
</h1>
<div data-ng-controller="ParentController1">
<div data-ng-controller="ChildController1"></div>
<... | <|file_sep|>original/SPAWithAngularJS/module2/scopeInheritance/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Controller As Syntax</title>
<script src=... | 9ea5fb0e3a2367c0c11749b027410ac28a06346d | SPAWithAngularJS/module2/scopeInheritance/index.html | SPAWithAngularJS/module2/scopeInheritance/index.html | HTML |
<|file_sep|>packages/ti/timestamp-subprocess-lines.yaml.diff
original:
hash: 4156379c85f12c06ae73c8a7d6922364713690aabda3272d03bca5b527bafc83
updated:
hash: 1b03117e29f28eee1f10d35a2397d8857824fdfbbe4bf4242d4802e9609791bb
<|file_sep|>packages/ti/timestamp-subprocess-lines.yaml.diff
original:
base: ! '>=4 && <5'
tim... | changelog: ''
basic-deps:
bytestring: ! '>=0.9'
split: ! '>=0.2'
base: ! '>=4.7 && <5'
time: ! '>=1.5'
process: ! '>=1.2'
transformers: ! '>=0.3'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
author: Eyal Lotem
latest: '0.1.0.4'
description-type: haddock
description: ! 'A small u... | <|file_sep|>packages/ti/timestamp-subprocess-lines.yaml.diff
original:
hash: 4156379c85f12c06ae73c8a7d6922364713690aabda3272d03bca5b527bafc83
updated:
hash: 1b03117e29f28eee1f10d35a2397d8857824fdfbbe4bf4242d4802e9609791bb
<|file_sep|>packages/ti/timestamp-subprocess-lines.yaml.diff
original:
base: ! '>=4 && <5'
tim... | 1dff22f648017176c50f6015e68a0ec40a29f63f | packages/ti/timestamp-subprocess-lines.yaml | packages/ti/timestamp-subprocess-lines.yaml | YAML |
<|file_sep|>.codeclimate.yml.diff
original:
updated:
exclude_patterns:
- "__tests__/"
<|file_sep|>original/.codeclimate.yml
radon:
enabled: true
rubocop:
enabled: true
channel: "rubocop-0-51"
ratings:
paths:
- Gemfile.lock
- "**.css"
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
... | radon:
enabled: true
rubocop:
enabled: true
channel: "rubocop-0-51"
ratings:
paths:
- Gemfile.lock
- "**.css"
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
- "**.php"
- "**.py"
- "**.rb"
exclude_patterns:
- node_modules/
- flow-typed/ | <|file_sep|>.codeclimate.yml.diff
original:
updated:
exclude_patterns:
- "__tests__/"
<|file_sep|>original/.codeclimate.yml
radon:
enabled: true
rubocop:
enabled: true
channel: "rubocop-0-51"
ratings:
paths:
- Gemfile.lock
- "**.css"
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
... | ffa21900e4306b6fdbb8a8b1fc99af256599b125 | .codeclimate.yml | .codeclimate.yml | YAML |
<|file_sep|>original/app/templates/spec/nameSpec.js
(function() {
"use strict";
describe("<%= pluginFullName %>", function() {
var slides, deck,
createDeck = function() {
slides = [];
var parent = document.createElement('article');
for (var i = 0; i < 10; i++) {
slide... | (function() {
'use strict';
describe("<%= pluginFullName %>", function() {
var slides, deck,
createDeck = function() {
slides = [];
var parent = document.createElement('article');
for (var i = 0; i < 10; i++) {
slides.push(document.createElement('section'));
... | <|file_sep|>original/app/templates/spec/nameSpec.js
(function() {
"use strict";
describe("<%= pluginFullName %>", function() {
var slides, deck,
createDeck = function() {
slides = [];
var parent = document.createElement('article');
for (var i = 0; i < 10; i++) {
slide... | 881e2d2ce6a6ead59972e483873cb9315fba1a2b | app/templates/spec/nameSpec.js | app/templates/spec/nameSpec.js | JavaScript |
<|file_sep|>original/i8c/tests/test_externals.py
<|file_sep|>current/i8c/tests/test_externals.py
<|file_sep|>updated/i8c/tests/test_externals.py | from i8c.tests import TestCase
SOURCE = """\
define test::externals_test returns int
extern ptr a_symbol
extern func int, int (ptr) a_function
call
return
"""
class TestExternals(TestCase):
def test_externals(self):
"""Check that externals work."""
tree, output = self.compile(SOURC... | <|file_sep|>original/i8c/tests/test_externals.py
<|file_sep|>current/i8c/tests/test_externals.py
<|file_sep|>updated/i8c/tests/test_externals.py
from i8c.tests import TestCase
SOURCE = """\
define test::externals_test returns int
extern ptr a_symbol
extern func int, int (ptr) a_function
call
return
"... | 52d45a55c61c229f9d99b3f437b76a363a34b481 | i8c/tests/test_externals.py | i8c/tests/test_externals.py | Python |
<|file_sep|>original/integration-tests/src/test/java/arez/integration/verify/VerifyIntegrationTest.java
<|file_sep|>current/integration-tests/src/test/java/arez/integration/verify/VerifyIntegrationTest.java
<|file_sep|>updated/integration-tests/src/test/java/arez/integration/verify/VerifyIntegrationTest.java | package arez.integration.verify;
import arez.Arez;
import arez.Disposable;
import arez.annotations.ArezComponent;
import arez.annotations.Reference;
import arez.annotations.ReferenceId;
import arez.annotations.Repository;
import arez.component.Identifiable;
import arez.component.TypeBasedLocator;
import arez.component... | <|file_sep|>original/integration-tests/src/test/java/arez/integration/verify/VerifyIntegrationTest.java
<|file_sep|>current/integration-tests/src/test/java/arez/integration/verify/VerifyIntegrationTest.java
<|file_sep|>updated/integration-tests/src/test/java/arez/integration/verify/VerifyIntegrationTest.java
package ... | a391e60e5c0820c18684c044bf540144260a91bd | integration-tests/src/test/java/arez/integration/verify/VerifyIntegrationTest.java | integration-tests/src/test/java/arez/integration/verify/VerifyIntegrationTest.java | Java |
<|file_sep|>original/lock.sh
#!/usr/bin/env bash
set -e
set -o pipefail
export PRIMARY_DISPLAY="$(xrandr | awk '/ primary/{print $1}')"
xset s off
xset -dpms
xidlehook \
--not-when-fullscreen \
--not-when-audio \
--timer normal 180 'xrandr --output "$PRIMARY_DISPLAY" --brightness .1' 'xrandr --output "$P... | #!/usr/bin/env bash
set -e
set -o pipefail
export PRIMARY_DISPLAY="$(xrandr | awk '/ primary/{print $1}')"
xset s off
xset -dpms
xidlehook \
--not-when-fullscreen \
--not-when-audio \
--timer normal 120 'xrandr --output "$PRIMARY_DISPLAY" --brightness .1' 'xrandr --output "$PRIMARY_DISPLAY" --brightness ... | <|file_sep|>original/lock.sh
#!/usr/bin/env bash
set -e
set -o pipefail
export PRIMARY_DISPLAY="$(xrandr | awk '/ primary/{print $1}')"
xset s off
xset -dpms
xidlehook \
--not-when-fullscreen \
--not-when-audio \
--timer normal 180 'xrandr --output "$PRIMARY_DISPLAY" --brightness .1' 'xrandr --output "$P... | 43dda5a352b2edc01b0d6bb7784513d3554e2f97 | lock.sh | lock.sh | Shell |
<|file_sep|>original/README.md
[](https://travis-ci.org/mtojek/greenwall)
## Description
GreenWall is a tiny service health dashboard written in Go (with frontend prepared in Bootstrap). The aim of this project is to develop a small web applicat... | [](https://travis-ci.org/mtojek/greenwall)
## Description
GreenWall is a tiny service health dashboard written in Go (with frontend prepared in Bootstrap). The aim of this project is to develop a small web application that can be run as a live d... | <|file_sep|>original/README.md
[](https://travis-ci.org/mtojek/greenwall)
## Description
GreenWall is a tiny service health dashboard written in Go (with frontend prepared in Bootstrap). The aim of this project is to develop a small web applicat... | 58284ec39d4387ecb029d030abf1d6458863847e | README.md | README.md | Markdown |
<|file_sep|>original/.travis.yml
language: ruby
cache: bundler
before_install:
- gem update bundler
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
script:
- bundle exec rspec ./spec
<|file_sep|>current/.travis.yml
language: ruby
cache: bundler
before_install:
- gem update bundler
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
... | language: ruby
cache: bundler
before_install:
- gem update bundler
rvm:
- 2.5
- 2.6
- 2.7
script:
- bundle exec rspec ./spec | <|file_sep|>original/.travis.yml
language: ruby
cache: bundler
before_install:
- gem update bundler
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
script:
- bundle exec rspec ./spec
<|file_sep|>current/.travis.yml
language: ruby
cache: bundler
before_install:
- gem update bundler
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
... | 2d5fb179fc7204ce5e3ea1cf62849fc0fcc93c56 | .travis.yml | .travis.yml | YAML |
<|file_sep|>original/_posts/2018-10-19-atata.configuration.json-1.0.0-released.md
<|file_sep|>current/_posts/2018-10-19-atata.configuration.json-1.0.0-released.md
<|file_sep|>updated/_posts/2018-10-19-atata.configuration.json-1.0.0-released.md | ---
title: "Atata.Configuration.Json 1.0.0 is Released"
date: 2018-10-19
description: "Atata.Configuration.Json 1.0.0 is released. Check the changelog."
release_version: "1.0.0"
---
[Atata.Configuration.Json {{page.release_version}}](https://www.nuget.org/packages/Atata.Configuration.Json/{{page.release_version}})
is ... | <|file_sep|>original/_posts/2018-10-19-atata.configuration.json-1.0.0-released.md
<|file_sep|>current/_posts/2018-10-19-atata.configuration.json-1.0.0-released.md
<|file_sep|>updated/_posts/2018-10-19-atata.configuration.json-1.0.0-released.md
---
title: "Atata.Configuration.Json 1.0.0 is Released"
date: 2018-10-19
d... | 87038cf821a1e32f73ed7d5897c133b110a02739 | _posts/2018-10-19-atata.configuration.json-1.0.0-released.md | _posts/2018-10-19-atata.configuration.json-1.0.0-released.md | Markdown |
<|file_sep|>original/source/manual/alerts/backup-passive-checks.html.md
---
owner_slack: "#govuk-2ndline"
title: Backup passive checks
parent: "/manual.html"
layout: manual_layout
section: Icinga alerts
last_reviewed_on: 2019-05-17
review_in: 6 months
---
These checks ensure that the backups have run within the last d... | ---
These checks ensure that the backups have run within the last day (specifically
within the last 28 hours).
It's common to see 'freshness threshold exceeded' alerts in integration on a
Monday morning because integration is switched off over the weekend so the
backups do not run.
The backups are triggered at 10AM ... | <|file_sep|>original/source/manual/alerts/backup-passive-checks.html.md
---
owner_slack: "#govuk-2ndline"
title: Backup passive checks
parent: "/manual.html"
layout: manual_layout
section: Icinga alerts
last_reviewed_on: 2019-05-17
review_in: 6 months
---
These checks ensure that the backups have run within the last d... | e8b9575357486a7f89aa68dea171c2db53eda3ad | source/manual/alerts/backup-passive-checks.html.md | source/manual/alerts/backup-passive-checks.html.md | Markdown |
<|file_sep|>.travis.yml.diff
original:
updated:
- find . -name ".coverage"
- pwd
<|file_sep|>original/.travis.yml
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > .... | - sleep 3 # give xvfb some time to start
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
# - flake8 .
# - pytest --cov=artistools
- coverage run --source artistools setup.... | <|file_sep|>.travis.yml.diff
original:
updated:
- find . -name ".coverage"
- pwd
<|file_sep|>original/.travis.yml
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > .... | b74ee183571c9277e45e6d1313cd9cacc14a8535 | .travis.yml | .travis.yml | YAML |
<|file_sep|>original/gradle/wrapper/gradle-wrapper.properties
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=cd5c2958a107ee7f0722004a12d0f8559b4564c34daad7df06cffd4d12a426d0
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
zipStoreBase=GRADLE_USER_HOM... | distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=8cc27038d5dbd815759851ba53e70cf62e481b87494cc97cfd97982ada5ba634
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists | <|file_sep|>original/gradle/wrapper/gradle-wrapper.properties
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=cd5c2958a107ee7f0722004a12d0f8559b4564c34daad7df06cffd4d12a426d0
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
zipStoreBase=GRADLE_USER_HOM... | 4d06b2d7f41667539abca24bf5681d3779d7bc88 | gradle/wrapper/gradle-wrapper.properties | gradle/wrapper/gradle-wrapper.properties | INI |
<|file_sep|>original/validation-test/compiler_crashers/28269-swift-expr-walk.swift
<|file_sep|>current/validation-test/compiler_crashers/28269-swift-expr-walk.swift
<|file_sep|>updated/validation-test/compiler_crashers/28269-swift-expr-walk.swift | // This source file is part of the Swift.org open source project
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list... | <|file_sep|>original/validation-test/compiler_crashers/28269-swift-expr-walk.swift
<|file_sep|>current/validation-test/compiler_crashers/28269-swift-expr-walk.swift
<|file_sep|>updated/validation-test/compiler_crashers/28269-swift-expr-walk.swift
// This source file is part of the Swift.org open source project
// Cop... | feaa3a7ad06f1ef0e8366dbde4a25e24fb825646 | validation-test/compiler_crashers/28269-swift-expr-walk.swift | validation-test/compiler_crashers/28269-swift-expr-walk.swift | Swift |
<|file_sep|>original/dev/raphaelTest.html
<!-- To work with full version -->
<!--<script type="text/javascript" src="../raphael.js"></script>-->
<!-- To work with minified version -->
<!--<script type="text/javascript" src="../raphael-min.js"></script>-->
<!-- Comment this script tag if you are te... | <!-- To work with full version -->
<!--<script type="text/javascript" src="../raphael.js"></script>-->
<!-- To work with minified version -->
<!--<script type="text/javascript" src="../raphael-min.js"></script>-->
<!-- Comment this script tag if you are testing with AMD -->
<!--<script type="t... | <|file_sep|>original/dev/raphaelTest.html
<!-- To work with full version -->
<!--<script type="text/javascript" src="../raphael.js"></script>-->
<!-- To work with minified version -->
<!--<script type="text/javascript" src="../raphael-min.js"></script>-->
<!-- Comment this script tag if you are te... | ffeb9149456702cbbd87d02eb25c466f403aff4e | dev/raphaelTest.html | dev/raphaelTest.html | HTML |
<|file_sep|>original/style.css
body, html {
background-image: url(images/arch-linux-minimalistic-rainbow.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100%;
}
a:link {
color: white;
}
a:visited {
color: lightgrey;
}
.element {
text-de... | body, html {
background-image: url(images/arch-linux-minimalistic-rainbow.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100%;
margin: 0;
}
a:link {
color: white;
}
a:visited {
color: lightgrey;
}
.element {
text-decoration: none;
... | <|file_sep|>original/style.css
body, html {
background-image: url(images/arch-linux-minimalistic-rainbow.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100%;
}
a:link {
color: white;
}
a:visited {
color: lightgrey;
}
.element {
text-de... | d55cf639deb71fa095c1880d7ce0bc5dc62bc1ee | style.css | style.css | CSS |
<|file_sep|>Resources/config/default_configured_consumers.yml.diff
original:
result_name: xxx
updated:
result_name: processed_lines
<|file_sep|>original/Resources/config/default_configured_consumers.yml
calls:
- [ setId, ['smartesb.cons... | calls:
- [ setId, ['smartesb.consumers.generic_csv']]
- [setConfigurableStepsProvider,[@smartesb.steps_provider.csv_file]]
options:
stop_on_eof: true
batch_size: 1
methods:
process_lines:
... | <|file_sep|>Resources/config/default_configured_consumers.yml.diff
original:
result_name: xxx
updated:
result_name: processed_lines
<|file_sep|>original/Resources/config/default_configured_consumers.yml
calls:
- [ setId, ['smartesb.cons... | c7b8a7126216c839556771f9486012ff8ae1a698 | Resources/config/default_configured_consumers.yml | Resources/config/default_configured_consumers.yml | YAML |
<|file_sep|>original/pyscores/api_wrapper.py
<|file_sep|>current/pyscores/api_wrapper.py
<|file_sep|>updated/pyscores/api_wrapper.py | import json
import os
import requests
class APIWrapper(object):
def __init__(self, base_url=None, auth_token=None):
if base_url:
self.base_url = base_url
else:
self.base_url = "http://api.football-data.org/v1"
if auth_token:
self.headers = {
... | <|file_sep|>original/pyscores/api_wrapper.py
<|file_sep|>current/pyscores/api_wrapper.py
<|file_sep|>updated/pyscores/api_wrapper.py
import json
import os
import requests
class APIWrapper(object):
def __init__(self, base_url=None, auth_token=None):
if base_url:
self.base_url = base_url
... | 40f8190029cf1431a14cd74dfab515d7bb106dd4 | pyscores/api_wrapper.py | pyscores/api_wrapper.py | Python |
<|file_sep|>original/spec/controllers/api/league_requests_controller_spec.rb
before do
@user = create :user
@user.groups << Group.league_admin_group
@suspect_uid = 'suspect_uid'
@suspect_ip = '127.0.0.2'
@reservation_player = create(:reservation_player, steam_uid: @suspect_uid, ip: @suspect_ip)
... |
before do
@user = create :user
@user.groups << Group.league_admin_group
@suspect_uid = 'suspect_uid'
@suspect_ip = '127.0.0.2'
@reservation_player = create(:reservation_player, steam_uid: @suspect_uid, ip: @suspect_ip)
@other_player = create(:reservation_player, steam_uid: 'other-uid', ip: '1... | <|file_sep|>original/spec/controllers/api/league_requests_controller_spec.rb
before do
@user = create :user
@user.groups << Group.league_admin_group
@suspect_uid = 'suspect_uid'
@suspect_ip = '127.0.0.2'
@reservation_player = create(:reservation_player, steam_uid: @suspect_uid, ip: @suspect_ip)
... | b8d6d58c235f25f47dd08ec1ac742554e90b7652 | spec/controllers/api/league_requests_controller_spec.rb | spec/controllers/api/league_requests_controller_spec.rb | Ruby |
<|file_sep|>README.md.diff
original:
- `jenkins-1.610.war` (jenkins)
updated:
- `jenkins-1.612.war` (jenkins)
<|file_sep|>original/README.md
# ansible-playbook-js
## Files required:
- `jdk-7u79-linux-x64.tar.gz` (java-7-oracle)
- `jdk-8u45-linux-x64.tar.gz` (java-8-oracle)
- `jenkins-1.610.war` (jenkins)
## Summary
- ... | # ansible-playbook-js
## Files required:
- `jdk-7u79-linux-x64.tar.gz` (java-7-oracle)
- `jdk-8u45-linux-x64.tar.gz` (java-8-oracle)
- `jenkins-1.612.war` (jenkins)
## Summary
- java-7-oracle
- directory: `/usr/lib/jvm/java-7-oracle`
- java-8-oracle
- directory: `/usr/lib/jvm/java-8-oracle`
- docker-registry
- p... | <|file_sep|>README.md.diff
original:
- `jenkins-1.610.war` (jenkins)
updated:
- `jenkins-1.612.war` (jenkins)
<|file_sep|>original/README.md
# ansible-playbook-js
## Files required:
- `jdk-7u79-linux-x64.tar.gz` (java-7-oracle)
- `jdk-8u45-linux-x64.tar.gz` (java-8-oracle)
- `jenkins-1.610.war` (jenkins)
## Summary
- ... | 1bf2b3b28f3b5bad89514c6b47a3146cc5ea0797 | README.md | README.md | Markdown |
<|file_sep|>original/.config/emacs/remaps.el
(global-set-key (kbd "M-n") 'mc/mark-next-like-this)
(global-set-key (kbd "M-p") 'mc/mark-previous-like-this)
;; move lines
(global-set-key (kbd "M-S-<up>") 'drag-stuff-up)
(global-set-key (kbd "M-S-<down>") 'drag-stuff-down)
;; move between windows
(global-set-key (kbd "M... | (global-set-key (kbd "M-p") 'mc/mark-previous-like-this)
;; move lines
(global-set-key (kbd "M-S-<up>") 'drag-stuff-up)
(global-set-key (kbd "M-S-<down>") 'drag-stuff-down)
;; move between windows
(global-set-key (kbd "M-<left>") 'windmove-left)
(global-set-key (kbd "M-<right>") 'windmove-right)
(global-set-key (kbd ... | <|file_sep|>original/.config/emacs/remaps.el
(global-set-key (kbd "M-n") 'mc/mark-next-like-this)
(global-set-key (kbd "M-p") 'mc/mark-previous-like-this)
;; move lines
(global-set-key (kbd "M-S-<up>") 'drag-stuff-up)
(global-set-key (kbd "M-S-<down>") 'drag-stuff-down)
;; move between windows
(global-set-key (kbd "M... | df3d0aa067a0fccd1ac3de68d87d457621819c6e | .config/emacs/remaps.el | .config/emacs/remaps.el | Emacs Lisp |
<|file_sep|>backend/breach/views.py.diff
original:
from django.shortcuts import render
updated:
<|file_sep|>backend/breach/views.py.diff
original:
updated:
from django.views.decorators.csrf import csrf_exempt
<|file_sep|>original/backend/breach/views.py
from django.shortcuts import render
from django.http import Htt... | from django.http import HttpResponse
from django.views.decorators.csrf import csrf_exempt
def get_work(request):
return HttpResponse('Not implemented')
@csrf_exempt
def work_completed(request):
return HttpResponse('Not implemented') | <|file_sep|>backend/breach/views.py.diff
original:
from django.shortcuts import render
updated:
<|file_sep|>backend/breach/views.py.diff
original:
updated:
from django.views.decorators.csrf import csrf_exempt
<|file_sep|>original/backend/breach/views.py
from django.shortcuts import render
from django.http import Htt... | 39603bde90ebad7e0d70e41403a9a971867dcbac | backend/breach/views.py | backend/breach/views.py | Python |
<|file_sep|>sources/us/az/city_of_gilbert.json.diff
original:
"coordinates": [-111.78760528564452, 33.353329935481966]
updated:
"coordinates": [
-111.7876,
33.3533
]
<|file_sep|>original/sources/us/az/city_of_gilbert.json
"state": "Arizona"... | "state": "Arizona"
},
"geometry": {
"type": "Point",
"coordinates": [
-111.7876,
33.3533
]
}
},
"data": "https://maps.gilbertaz.gov/arcgis/rest/services/GilbertAssetBase/MapServer/2",
"protocol": "ESRI",
... | <|file_sep|>sources/us/az/city_of_gilbert.json.diff
original:
"coordinates": [-111.78760528564452, 33.353329935481966]
updated:
"coordinates": [
-111.7876,
33.3533
]
<|file_sep|>original/sources/us/az/city_of_gilbert.json
"state": "Arizona"... | 86dbac3a430bc3a9e1456a7d6534a171c3f1a3be | sources/us/az/city_of_gilbert.json | sources/us/az/city_of_gilbert.json | JSON |
<|file_sep|>original/README.rst
}
}
}
Testing
-------
Install development requirements::
pip install -r requirements.txt
Tests can then be run by doing::
nosetests
The integration tests require a host API key. They can be run with::
nosetests tests/test_integration.py
.. |Bu... | }
}
}
Testing
-------
Install development requirements::
pip install -r requirements.txt
Tests can then be run by doing::
nosetests
The integration tests require a host API key. They can be run with::
nosetests tests/test_integration.py
.. |Build Status| image:: https://trav... | <|file_sep|>original/README.rst
}
}
}
Testing
-------
Install development requirements::
pip install -r requirements.txt
Tests can then be run by doing::
nosetests
The integration tests require a host API key. They can be run with::
nosetests tests/test_integration.py
.. |Bu... | 35000468c613b3b500c4ac110318f0366e3b6caf | README.rst | README.rst | reStructuredText |
<|file_sep|>original/.kitchen.yml
driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
platforms:
- name: centos-6.8
- name: centos-7.3
- name: debian-7.11
run_list: apt::default
- name: debian-8.7
run_list: apt::default
- name: fedora-25
- name: opensuse-leap-42.2... | driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
platforms:
- name: centos-6.9
- name: centos-7.3
- name: debian-7.11
run_list: apt::default
- name: debian-8.7
run_list: apt::default
- name: fedora-25
- name: opensuse-leap-42.2
- name: ubuntu-14.04
run_li... | <|file_sep|>original/.kitchen.yml
driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
platforms:
- name: centos-6.8
- name: centos-7.3
- name: debian-7.11
run_list: apt::default
- name: debian-8.7
run_list: apt::default
- name: fedora-25
- name: opensuse-leap-42.2... | 6a35797a2da15dd52da3a6ed333f854204f39db9 | .kitchen.yml | .kitchen.yml | YAML |
<|file_sep|>test/runner/completion/remote.txt.diff
original:
freebsd/11.0-STABLE
updated:
freebsd/11.1-STABLE
<|file_sep|>original/test/runner/completion/remote.txt
freebsd/10.3-STABLE
freebsd/11.0-STABLE
osx/10.11
rhel/7.3
<|file_sep|>current/test/runner/completion/remote.txt
freebsd/10.3-STABLE
freebsd/11.1-STABLE
os... | freebsd/10.3-STABLE
freebsd/11.1-STABLE
osx/10.11
rhel/7.4 | <|file_sep|>test/runner/completion/remote.txt.diff
original:
freebsd/11.0-STABLE
updated:
freebsd/11.1-STABLE
<|file_sep|>original/test/runner/completion/remote.txt
freebsd/10.3-STABLE
freebsd/11.0-STABLE
osx/10.11
rhel/7.3
<|file_sep|>current/test/runner/completion/remote.txt
freebsd/10.3-STABLE
freebsd/11.1-STABLE
os... | 66c35f60d27d4a6b53c8f5c7501af5f67563cef8 | test/runner/completion/remote.txt | test/runner/completion/remote.txt | Text |
<|file_sep|>original/components/google-cloud/docs/source/google_cloud_pipeline_components.experimental.vertex_notification_email.rst
<|file_sep|>current/components/google-cloud/docs/source/google_cloud_pipeline_components.experimental.vertex_notification_email.rst
<|file_sep|>updated/components/google-cloud/docs/sour... | google\_cloud\_pipeline\_components.experimental.vertex_notification_email package
==================================================================================
.. automodule:: google_cloud_pipeline_components.experimental.vertex_notification_email
:members:
:undoc-members:
:show-inheritance: | <|file_sep|>original/components/google-cloud/docs/source/google_cloud_pipeline_components.experimental.vertex_notification_email.rst
<|file_sep|>current/components/google-cloud/docs/source/google_cloud_pipeline_components.experimental.vertex_notification_email.rst
<|file_sep|>updated/components/google-cloud/docs/sour... | 2789d43af7d16fd124b9f3a94d0bc6e577dcd497 | components/google-cloud/docs/source/google_cloud_pipeline_components.experimental.vertex_notification_email.rst | components/google-cloud/docs/source/google_cloud_pipeline_components.experimental.vertex_notification_email.rst | reStructuredText |
<|file_sep|>src/component.js.diff
original:
updated:
stateLocal.set(this, {});
<|file_sep|>original/src/component.js
.data(Array.isArray(props) ? props : [props]),
exit = update.exit(),
enter = update.enter().append(tagName).attr("class", className),
all = enter.merge(update);... | .data(Array.isArray(props) ? props : [props]),
exit = update.exit(),
enter = update.enter().append(tagName).attr("class", className),
all = enter.merge(update);
if(create){
enter.each(function (){
renderLocal.set(this, noop);
stateLocal.set(this, {});
... | <|file_sep|>src/component.js.diff
original:
updated:
stateLocal.set(this, {});
<|file_sep|>original/src/component.js
.data(Array.isArray(props) ? props : [props]),
exit = update.exit(),
enter = update.enter().append(tagName).attr("class", className),
all = enter.merge(update);... | 00e161849b4d165d66f20684288490651e06e60b | src/component.js | src/component.js | JavaScript |
<|file_sep|>original/index.html
<li class="over-800">
{{ list[1].heading }}
</li>
{% endfor %}
<li class="under-800 list-title button"
onclick='toggleMainList({{ forloop.index0 }})'>
<ul class="no-bullets list-flex">
<li>
{{ list[1].heading }} ({{... | <li class="over-800">
{{ list[1].heading }}
</li>
{% endfor %}
<li class="under-800 list-title button"
onclick='toggleMainList({{ forloop.index0 }})'>
<ul class="no-bullets list-flex">
<li>{{ list[1].heading }} ({{ list-items | size }})</li><!--
--><li... | <|file_sep|>original/index.html
<li class="over-800">
{{ list[1].heading }}
</li>
{% endfor %}
<li class="under-800 list-title button"
onclick='toggleMainList({{ forloop.index0 }})'>
<ul class="no-bullets list-flex">
<li>
{{ list[1].heading }} ({{... | 2ffa3f1d14d4a3cac0906508f97c3f5e928b1a82 | index.html | index.html | HTML |
<|file_sep|>environment/transpiler/environment/equality.lisp.diff
original:
(defun eql (x y)
updated:
(defun %eql (x y)
<|file_sep|>original/environment/transpiler/environment/equality.lisp
;;;;; tré – Copyright (c) 2008–2009,2011–2013 Sven Michael Klose <pixel@copei.de>
(defun eql (x y)
(| x (setq x nil))
(| y (s... | ;;;;; tré – Copyright (c) 2008–2009,2011–2013 Sven Michael Klose <pixel@copei.de>
(defun %eql (x y)
(| x (setq x nil))
(| y (setq y nil))
(| (%%%eq x y)
(? (| (number? x) (number? y))
(?
(& (integer? x) (integer? y)) (integer== x y)
(& (character? x) (character? y)) (character== ... | <|file_sep|>environment/transpiler/environment/equality.lisp.diff
original:
(defun eql (x y)
updated:
(defun %eql (x y)
<|file_sep|>original/environment/transpiler/environment/equality.lisp
;;;;; tré – Copyright (c) 2008–2009,2011–2013 Sven Michael Klose <pixel@copei.de>
(defun eql (x y)
(| x (setq x nil))
(| y (s... | a533a4ca3f5ee3c3deae1c45f0f6ed2c795b7cc1 | environment/transpiler/environment/equality.lisp | environment/transpiler/environment/equality.lisp | Common Lisp |
<|file_sep|>original/scripts/macos/xcode.sh
#!/bin/bash
set -euo pipefail
source ~/.bash_profile
if [ -z "${XCODE_VERSION:-}" ] ; then
echo "Must set \$XCODE_VERSION"
exit 1
fi
echo $PATH
cat ~/.bash_profile
eval "$(rbenv init -)"
rbenv versions
rbenv rehash
gem env
gem install xcode-install
rbenv rehash
xcvers... |
if [ -z "${XCODE_VERSION:-}" ] ; then
echo "Must set \$XCODE_VERSION"
exit 1
fi
echo $PATH
cat ~/.bash_profile
eval "$(rbenv init -)"
rbenv versions
rbenv rehash
gem env
gem install xcode-install
rbenv rehash
ls -alR /Users/vmkite/Library/Caches
sudo chown -R vmkite: /Users/vmkite/Library/Caches
xcversion inst... | <|file_sep|>original/scripts/macos/xcode.sh
#!/bin/bash
set -euo pipefail
source ~/.bash_profile
if [ -z "${XCODE_VERSION:-}" ] ; then
echo "Must set \$XCODE_VERSION"
exit 1
fi
echo $PATH
cat ~/.bash_profile
eval "$(rbenv init -)"
rbenv versions
rbenv rehash
gem env
gem install xcode-install
rbenv rehash
xcvers... | e74f3cdd4495a05068c35cb924957bb71d2c28b9 | scripts/macos/xcode.sh | scripts/macos/xcode.sh | Shell |
<|file_sep|>original/packages/commons/README.md
# Feathers Commons
[](https://greenkeeper.io/)
[](https://travis-ci.org/feathersjs/commons)
[](https://greenkeeper.io/)
[](https://travis-ci.org/feathersjs/commons)
[](https://greenkeeper.io/)
[](https://travis-ci.org/feathersjs/commons)
[
cpp.includePaths: base.concat(".")
Group {
files: [
... | import qbs 1.0
QtcLibrary {
name: "ClangBackEndIpc"
Depends { name: "Qt.network" }
Depends { name: "Sqlite" }
cpp.defines: base.concat("CLANGBACKENDIPC_LIBRARY")
cpp.includePaths: base.concat(".")
Group {
files: [
"*.h",
"*.cpp"
]
}
Export {
... | <|file_sep|>original/src/libs/clangbackendipc/clangbackendipc.qbs
import qbs 1.0
QtcLibrary {
name: "ClangBackEndIpc"
Depends { name: "Qt.network" }
Depends { name: "Sqlite" }
cpp.defines: base.concat("CLANGIPC_LIBRARY")
cpp.includePaths: base.concat(".")
Group {
files: [
... | 028709876ab97698971ef210c7adbd61df485d66 | src/libs/clangbackendipc/clangbackendipc.qbs | src/libs/clangbackendipc/clangbackendipc.qbs | QML |
<|file_sep|>original/composer.json
{
"name": "anetwork/sidenav",
"authors": [
{
"name": "Alireza Josheghani",
"email": "a.josheghani@anetwork.ir"
}
],
"require": {
"php": ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "^5.6"
},
"autoload": {
"psr-4": {
"Anetwork\\Si... | {
"name": "Alireza Josheghani",
"email": "a.josheghani@anetwork.ir"
}
],
"require": {
"php": ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "^5.6"
},
"autoload": {
"psr-4": {
"Anetwork\\SideNav\\": "src/"
},
"files": [
"helpers.php"
]
},
"license":... | <|file_sep|>original/composer.json
{
"name": "anetwork/sidenav",
"authors": [
{
"name": "Alireza Josheghani",
"email": "a.josheghani@anetwork.ir"
}
],
"require": {
"php": ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "^5.6"
},
"autoload": {
"psr-4": {
"Anetwork\\Si... | b1130bf5dae580df915a2d0de254ee6a24db1e01 | composer.json | composer.json | JSON |
<|file_sep|>original/webkit/tools/layout_tests/test_expectations.txt
// This file should almost always be empty. Normally Chromium test expectations
// are found in
// src/third_party/WebKit/LayoutTests/platform/chromium/test_expectations.txt
//
// Only add expectations here to temporarily suppress messages on the bots... | // This file should almost always be empty. Normally Chromium test expectations
// are found in
// src/third_party/WebKit/LayoutTests/platform/chromium/test_expectations.txt
//
// Only add expectations here to temporarily suppress messages on the bots
// until the changes can be landed upstream.
// johnnyg to move ups... | <|file_sep|>original/webkit/tools/layout_tests/test_expectations.txt
// This file should almost always be empty. Normally Chromium test expectations
// are found in
// src/third_party/WebKit/LayoutTests/platform/chromium/test_expectations.txt
//
// Only add expectations here to temporarily suppress messages on the bots... | 7806c60e16fa0c8535ae6299673835876dcebb55 | webkit/tools/layout_tests/test_expectations.txt | webkit/tools/layout_tests/test_expectations.txt | Text |
<|file_sep|>original/asm/ooe_fix_lighthouse_other_entrances.asm
<|file_sep|>current/asm/ooe_fix_lighthouse_other_entrances.asm
<|file_sep|>updated/asm/ooe_fix_lighthouse_other_entrances.asm | .nds
.relativeinclude on
.erroronwarning on
; If the player enters the lighthouse from one of the top doors while Brachyura is still alive, they would normally get softlocked.
; This patch teleports the player to the bottom of the room in that case so they can fight Brachyura as normal.
; Also, if the player enters it... | <|file_sep|>original/asm/ooe_fix_lighthouse_other_entrances.asm
<|file_sep|>current/asm/ooe_fix_lighthouse_other_entrances.asm
<|file_sep|>updated/asm/ooe_fix_lighthouse_other_entrances.asm
.nds
.relativeinclude on
.erroronwarning on
; If the player enters the lighthouse from one of the top doors while Brachyura is ... | a09b5b343780752cdec758a797d870efffda6f8d | asm/ooe_fix_lighthouse_other_entrances.asm | asm/ooe_fix_lighthouse_other_entrances.asm | Assembly |
<|file_sep|>original/app/controllers/links/pages_controller.rb
class Links::PagesController < PagesController
def index
pages = Comfy::Cms::Page.includes(:site).published.filter(params.slice(:category))
pages = Comfy::Cms::Search.new(pages, params[:search]).results if params[:search].present?
@pages = ... | class Links::PagesController < PagesController
def index
pages = Comfy::Cms::Page.includes(:site).where('state != ?', 'unpublished').filter(params.slice(:category))
pages = Comfy::Cms::Search.new(pages, params[:search]).results if params[:search].present?
@pages = PageMirror.collect(pages)
end
end | <|file_sep|>original/app/controllers/links/pages_controller.rb
class Links::PagesController < PagesController
def index
pages = Comfy::Cms::Page.includes(:site).published.filter(params.slice(:category))
pages = Comfy::Cms::Search.new(pages, params[:search]).results if params[:search].present?
@pages = ... | 67f326bb9bd68e56ba7317d2b10af4805a01f17d | app/controllers/links/pages_controller.rb | app/controllers/links/pages_controller.rb | Ruby |
<|file_sep|>original/project/Build.scala
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"com.android.support" % "support-v4" % "20.0.0",
"com.github.japgolly.android" % "svg-android" % "2.0.6"
),
name := "Toolbelt",
organization := "com.taig.android",
sc... | libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"com.android.support" % "support-v4" % "20.0.0",
"com.github.japgolly.android" % "svg-android" % "2.0.6"
),
name := "Toolbelt",
organization := "com.taig.android",
scalaVersion := "2.11.2",
scalacOptions ... | <|file_sep|>original/project/Build.scala
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"com.android.support" % "support-v4" % "20.0.0",
"com.github.japgolly.android" % "svg-android" % "2.0.6"
),
name := "Toolbelt",
organization := "com.taig.android",
sc... | 97ce7667ab5b74e1d00376e2f7a3483735dc079a | project/Build.scala | project/Build.scala | Scala |
<|file_sep|>original/scripts/start-metatron.sh
SCRIPTDIR=$(cd $(dirname "$0") && pwd)
# This is the primary script to
# Start the entire robot
if ! (${SCRIPTDIR}/ros_prep.sh)
then
echo "ROS Prep Failed, EXITING!"
exit 1
fi
# Start ngrok server for Twilio
nohup ngrok -authtoken E_-s84Q-fW2O1B_kU1Fl -subdomain=52... | SCRIPTDIR=$(cd $(dirname "$0") && pwd)
# This is the primary script to
# Start the entire robot
if ! (${SCRIPTDIR}/ros_prep.sh)
then
echo "ROS Prep Failed, EXITING!"
exit 1
fi
# Start ngrok server for Twilio
nohup ngrok -authtoken E_-s84Q-fW2O1B_kU1Fl -subdomain=52c014b4 -log=stdout 8080 &
nohup /opt/ros/indigo... | <|file_sep|>original/scripts/start-metatron.sh
SCRIPTDIR=$(cd $(dirname "$0") && pwd)
# This is the primary script to
# Start the entire robot
if ! (${SCRIPTDIR}/ros_prep.sh)
then
echo "ROS Prep Failed, EXITING!"
exit 1
fi
# Start ngrok server for Twilio
nohup ngrok -authtoken E_-s84Q-fW2O1B_kU1Fl -subdomain=52... | 9f777e9b0453f6abfd9dd71e4ac54e0ff692122d | scripts/start-metatron.sh | scripts/start-metatron.sh | Shell |
<|file_sep|>original/webpack.config.js
var path = require('path');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
devtool: 'eval',
debug: true,
entry: {
main: path.resolve(__dirname, 'src/main.js'),
style: path.resolve(__dirname, 'src/main.less')
},
ou... | var path = require('path');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
// devtool: 'eval',
// debug: true,
entry: {
main: path.resolve(__dirname, 'src/main.js'),
style: path.resolve(__dirname, 'src/main.less')
},
output: {
path: path.resolve(__... | <|file_sep|>original/webpack.config.js
var path = require('path');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
devtool: 'eval',
debug: true,
entry: {
main: path.resolve(__dirname, 'src/main.js'),
style: path.resolve(__dirname, 'src/main.less')
},
ou... | 72aea152b81356457979e5c22a358fec36af3354 | webpack.config.js | webpack.config.js | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.