commit stringlengths 40 40 | old_file stringlengths 4 150 | new_file stringlengths 4 150 | old_contents stringlengths 0 3.26k | new_contents stringlengths 1 4.43k | subject stringlengths 15 501 | message stringlengths 15 4.06k | lang stringclasses 4
values | license stringclasses 13
values | repos stringlengths 5 91.5k | diff stringlengths 0 4.35k |
|---|---|---|---|---|---|---|---|---|---|---|
fcf582951eb7d9fee2211fefc3506282e03d8e8f | src/store/api/assettypes.js | src/store/api/assettypes.js | import client from '@/store/api/client'
export default {
getAssetTypes (callback) {
client.get('/api/data/asset-types?relations=true', callback)
},
getAssetType (assetTypeId, callback) {
client.get(`/api/data/entity-types/${assetTypeId}`, callback)
},
newAssetType (assetType, callback) {
const ... | import client from '@/store/api/client'
export default {
getAssetTypes (callback) {
client.get('/api/data/asset-types', callback)
},
getAssetType (assetTypeId, callback) {
client.get(`/api/data/entity-types/${assetTypeId}`, callback)
},
newAssetType (assetType, callback) {
const data = {
... | Remove useless flag on get asset types call | [assets] Remove useless flag on get asset types call
| JavaScript | agpl-3.0 | cgwire/kitsu,cgwire/kitsu | ---
+++
@@ -2,7 +2,7 @@
export default {
getAssetTypes (callback) {
- client.get('/api/data/asset-types?relations=true', callback)
+ client.get('/api/data/asset-types', callback)
},
getAssetType (assetTypeId, callback) { |
d2a9dc303a745d4fc2a23d700a1439794ed167d4 | products/static/products/app/js/services.js | products/static/products/app/js/services.js | 'use strict';
app.factory('Product', function($http) {
function getUrl(id = '') {
return 'http://127.0.0.1:8000/api/products/' + id + '?format=json';
}
return {
get: function(id, callback) {
return $http.get(getUrl(id)).success(callback);
},
query: function(page, page_size, callback) {
... | 'use strict';
app.factory('Product', function($http) {
function getUrl(id) {
id = typeof id !== 'undefined' ? id : '';
return 'http://127.0.0.1:8000/api/products/' + id + '?format=json';
}
return {
get: function(id, callback) {
return $http.get(getUrl(id)).success(callback);
},
query:... | Remove dependency on default parameters in JS | Remove dependency on default parameters in JS
Apparently it's only supported by Firefox, source:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/default_parameters
This issue was brought up in #3.
| JavaScript | mit | matachi/product-gallery,matachi/product-gallery,matachi/product-gallery | ---
+++
@@ -2,7 +2,8 @@
app.factory('Product', function($http) {
- function getUrl(id = '') {
+ function getUrl(id) {
+ id = typeof id !== 'undefined' ? id : '';
return 'http://127.0.0.1:8000/api/products/' + id + '?format=json';
}
|
4bc603aa8135011cf717ea7645b6eb18bb80d869 | src/_wlk/bugsnag.js | src/_wlk/bugsnag.js | /* global window, uw */
import bugsnag from 'bugsnag-js';
import { version } from '../../package.json';
const client = bugsnag({
apiKey: 'a3246545081c8decaf0185c7a7f8d402',
appVersion: version,
/**
* Add current user information.
*/
beforeSend(report) {
const state = uw.store.getState();
const us... | /* global window, uw */
import bugsnag from 'bugsnag-js';
import { version } from '../../package.json';
let userId = null;
try {
userId = localStorage.errorReportId;
if (!userId) {
userId = Math.random().toString(32).slice(2, 8);
localStorage.errorReportId = userId;
}
} catch {
userId = 'anonymous';
}
... | Remove IP addresses from error reports | [WLK-INSTANCE] Remove IP addresses from error reports
| JavaScript | mit | welovekpop/uwave-web-welovekpop.club,welovekpop/uwave-web-welovekpop.club | ---
+++
@@ -2,9 +2,21 @@
import bugsnag from 'bugsnag-js';
import { version } from '../../package.json';
+let userId = null;
+try {
+ userId = localStorage.errorReportId;
+ if (!userId) {
+ userId = Math.random().toString(32).slice(2, 8);
+ localStorage.errorReportId = userId;
+ }
+} catch {
+ userId = ... |
aa3d6ad4d2d4ef7742df07d9f8c63c5f0a2ac440 | src/app/libs/Api.js | src/app/libs/Api.js | import queryString from "query-string";
class Api {
static get(url, data = {}) {
return this.request(url + (Object.keys(data).length > 0 ? ('?' + queryString.stringify(data)) : '' ), undefined, "GET");
}
static post(url, data = {}) {
return this.request(url, data, "POST");
}
stati... | import queryString from "query-string";
class Api {
static get(url, data = {}) {
return this.request(url + (Object.keys(data).length > 0 ? ('?' + queryString.stringify(data)) : '' ), undefined, "GET");
}
static post(url, data = {}) {
return this.request(url, data, "POST");
}
stati... | Use the error string if we have one for malformed json | Use the error string if we have one for malformed json
| JavaScript | mit | gilfillan9/spotify-jukebox-v2,gilfillan9/spotify-jukebox-v2 | ---
+++
@@ -37,9 +37,16 @@
reject(e);
}
}).catch(() => {
- let e = new Error('Malformed response');
- e.response = response;
- reject(e);
+ if(response.ok) {
+ ... |
2f9bde3ad5a2e3dd104c812b6c81f4077fe0aa1e | vendor/nwmatcher/selector_engine.js | vendor/nwmatcher/selector_engine.js | Prototype._original_property = window.NW;
//= require "repository/src/nwmatcher"
Prototype.Selector = (function(engine) {
function select(selector, scope) {
return engine.select(selector, scope || document, Element.extend);
}
return {
engine: engine,
select: select,
match: engine.match
};
... | Prototype._original_property = window.NW;
//= require "repository/src/nwmatcher"
Prototype.Selector = (function(engine) {
var select = engine.select;
if (Element.extend !== Prototype.K) {
select = function select(selector, scope) {
return engine.select(selector, scope, Element.extend);
};
}
ret... | Simplify the NWMatcher adapter and optimize it for browsers that don't need to extend DOM elements. | prototype: Simplify the NWMatcher adapter and optimize it for browsers that don't need to extend DOM elements. [jddalton]
| JavaScript | mit | 292388900/prototype,erpframework/prototype,sdumitriu/prototype,lamsieuquay/prototype,ridixcr/prototype,lamsieuquay/prototype,erpframework/prototype,baiyanghese/prototype,lamsieuquay/prototype,Jiasm/prototype,Gargaj/prototype,erpframework/prototype,fashionsun/prototype,sstephenson/prototype,ridixcr/prototype,Gargaj/prot... | ---
+++
@@ -2,8 +2,12 @@
//= require "repository/src/nwmatcher"
Prototype.Selector = (function(engine) {
- function select(selector, scope) {
- return engine.select(selector, scope || document, Element.extend);
+ var select = engine.select;
+
+ if (Element.extend !== Prototype.K) {
+ select = function se... |
fe71390baca97c018af1b47174d6459600971de4 | demo/webmodule.js | demo/webmodule.js | // a simple web app/module
importFromModule('helma.skin', 'render');
function main_action() {
var context = {
title: 'Module Demo',
href: href
};
render('skins/modules.html', context);
}
// module scopes automatically support JSAdapter syntax!
function __get__(name) {
if (name == 'href... | // a simple web app/module
importFromModule('helma.skin', 'render');
function main_action() {
var context = {
title: 'Module Demo',
href: req.path
};
render('skins/modules.html', context);
}
| Fix demo app: modules no longer act as JSAdapters | Fix demo app: modules no longer act as JSAdapters
git-svn-id: fac99be8204c57f0935f741ea919b5bf0077cdf6@9147 688a9155-6ab5-4160-a077-9df41f55a9e9
| JavaScript | apache-2.0 | ringo/ringojs,Transcordia/ringojs,ringo/ringojs,ringo/ringojs,oberhamsi/ringojs,ringo/ringojs,ashwinrayaprolu1984/ringojs,oberhamsi/ringojs,Transcordia/ringojs,ashwinrayaprolu1984/ringojs,oberhamsi/ringojs,Transcordia/ringojs,Transcordia/ringojs,ashwinrayaprolu1984/ringojs,ashwinrayaprolu1984/ringojs | ---
+++
@@ -4,16 +4,7 @@
function main_action() {
var context = {
title: 'Module Demo',
- href: href
+ href: req.path
};
render('skins/modules.html', context);
}
-
-// module scopes automatically support JSAdapter syntax!
-function __get__(name) {
- if (name == 'href') {
- ... |
01ce1bde07bfe675ad2cfd1e32f5cbd76dd53922 | imports/api/messages.js | imports/api/messages.js | import { Mongo } from 'meteor/mongo';
import { ValidatedMethod } from 'meteor/mdg:validated-method';
import { SimpleSchema } from 'meteor/aldeed:simple-schema';
export const Messages = new Mongo.Collection('messages');
Messages.deny({
insert() {
return true;
},
update() {
return true;
},
remove() {
... | import { Mongo } from 'meteor/mongo';
import { ValidatedMethod } from 'meteor/mdg:validated-method';
import { SimpleSchema } from 'meteor/aldeed:simple-schema';
export const Messages = new Mongo.Collection('messages');
Messages.deny({
insert() {
return true;
},
update() {
return true;
},
remove() {
... | Save comment with username instead of user id | Save comment with username instead of user id
| JavaScript | mit | f-martinez11/ActiveU,f-martinez11/ActiveU | ---
+++
@@ -28,7 +28,7 @@
}
return Messages.insert({
event,
- user: this.userId,
+ user: Meteor.user().username,
time: new Date(),
text
}); |
3cfc6e9d2234ec8b60c748888a88f2fe675ec872 | tests/unit/components/dashboard-widget-test.js | tests/unit/components/dashboard-widget-test.js | import { test , moduleForComponent } from 'appkit/tests/helpers/module-for';
import DashboardWidgetComponent from 'appkit/components/dashboard-widget';
moduleForComponent('dashboard-widget', 'Unit - Dashboard widget component', {
subject: function() {
var bayeuxStub = { subscribe: Ember.K };
var subscribeStu... | import { test , moduleForComponent } from 'appkit/tests/helpers/module-for';
import DashboardWidgetComponent from 'appkit/components/dashboard-widget';
moduleForComponent('dashboard-widget', 'Unit - Dashboard widget component', {
subject: function() {
// Mock Faye/bayeux subscribe process; avoid network calls.
... | Improve Faye/Bayeux coverage in widget specs. | Improve Faye/Bayeux coverage in widget specs.
| JavaScript | mit | substantial/substantial-dash-client | ---
+++
@@ -3,6 +3,8 @@
moduleForComponent('dashboard-widget', 'Unit - Dashboard widget component', {
subject: function() {
+
+ // Mock Faye/bayeux subscribe process; avoid network calls.
var bayeuxStub = { subscribe: Ember.K };
var subscribeStub = sinon.stub(bayeuxStub, 'subscribe', function() {
... |
9acb51cda733751729fbe33c29c666c40cbdae35 | src/Header/index.js | src/Header/index.js | import React from 'react';
import NavMenu from './NavMenu';
export default class Header extends React.Component {
constructor(props) {
super(props);
}
render() {
let navMenu;
if (this.props.config.headerMenuLinks.length > 0) {
navMenu = <NavMenu links={this.props.config.headerMenuLinks} /... | import React from 'react';
import NavMenu from './NavMenu';
export default class Header extends React.Component {
constructor(props) {
super(props);
}
render() {
let navMenu;
if (this.props.config.headerMenuLinks.length > 0) {
navMenu = <NavMenu links={this.props.config.headerMenuLinks} /... | Add header background color based on config | Add header background color based on config
| JavaScript | apache-2.0 | naltaki/naltaki-front,naltaki/naltaki-front | ---
+++
@@ -14,7 +14,7 @@
}
return (
- <header className="masthead" style={{backgroundColor: '#4C5664'}}>
+ <header className="masthead" style={{backgroundColor: this.props.config.headerColor}}>
<div className="container">
<a href={this.props.config.rootUrl} className="masthe... |
7441c6d4f8648391f556de91382a066bf6971da4 | src/MasterPlugin.js | src/MasterPlugin.js | import Plugin from "./Plugin";
export default class MasterPlugin extends Plugin {
static get plugin() {
return {
name: "MasterPlugin",
description: "",
help: "This plugin has access to PluginManager and will perform all the 'meta'/'super' actions.",
type: P... | import Plugin from "./Plugin";
export default class MasterPlugin extends Plugin {
static get plugin() {
return {
name: "MasterPlugin",
description: "",
help: "This plugin has access to PluginManager and will perform all the 'meta'/'super' actions.",
type: P... | Add null check on help generation | Add null check on help generation
| JavaScript | mit | crisbal/Telegram-Bot-Node,crisbal/Node-Telegram-Bot,crisbal/Node-Telegram-Bot,crisbal/Telegram-Bot-Node | ---
+++
@@ -44,14 +44,17 @@
const pluginName = args[0].toLowerCase();
const plugin = data
.filter(pl => pl.name.toLowerCase() === pluginName)[0];
- reply({
- type: "text",
- text: `*${plugin.name}* - ${plugin.description}\n\n${plugin.... |
fecd31dd46b4f790f9c0cfe28eff3909fd0945b5 | lib/ee.js | lib/ee.js | var slice = [].slice;
module.exports = {
on: function on(ev, handler) {
var events = this._events,
eventsArray = events[ev];
if (!eventsArray) {
eventsArray = events[ev] = [];
}
eventsArray.push(handler);
},
removeListener: function removeListener(e... | var slice = [].slice;
module.exports = {
on: function on(ev, handler) {
var events = this._events,
eventsArray = events[ev];
if (!eventsArray) {
eventsArray = events[ev] = [];
}
eventsArray.push(handler);
},
removeListener: function removeListener(e... | Use `for` instead of `forEach` as it minifies better. | Use `for` instead of `forEach` as it minifies better. | JavaScript | mit | Raynos/eventemitter-light | ---
+++
@@ -20,10 +20,8 @@
var args = slice.call(arguments, 1),
array = this._events[ev];
- array && array.forEach(invokeHandler, this);
-
- function invokeHandler(handler) {
- handler.apply(this, args);
+ for (var i = 0, len = array.length; i < len; i++) {
+ ... |
36335b37034025d76f8c758f9617292d9889fb73 | Gruntfile.js | Gruntfile.js | module.exports = function(grunt) {
"use strict";
// Display the execution time of grunt tasks
require("time-grunt")(grunt);
// Load all grunt-tasks in 'Build/Grunt-Options'.
var gruntOptionsObj = require("load-grunt-configs")(grunt, {
"config" : {
src: "Build/Grunt-Options/*.js"
}
});
grunt.initConfig(g... | module.exports = function(grunt) {
"use strict";
// Display the execution time of grunt tasks
require("time-grunt")(grunt);
// Load all grunt-tasks in 'Build/Grunt-Options'.
var gruntOptionsObj = require("load-grunt-configs")(grunt, {
"config" : {
src: "Build/Grunt-Options/*.js"
}
});
grunt.initConfig(g... | Fix the jit-grunt mapping for the replace task | [BUGFIX] Fix the jit-grunt mapping for the replace task
| JavaScript | mit | t3b/t3b_template,t3b/t3b_template,t3b/t3b_template,t3b/t3b_template,t3b/t3b_template | ---
+++
@@ -13,7 +13,9 @@
grunt.initConfig(gruntOptionsObj);
// Load all grunt-plugins that are specified in the 'package.json' file.
- require('jit-grunt')(grunt);
+ require('jit-grunt')(grunt, {
+ replace: 'grunt-text-replace'
+ });
/** |
ce22c210ed48656ab3dae5b2cff8cd2e8fa662c5 | js/game.js | js/game.js | var Game = function(boardString){
var board = '';
this.board = '';
if (arguments.length === 1) {
this.board = this.toArray(boardString);
} else {
function random() {
return Math.floor(Math.random() * 10 + 6);
};
var firstTwo = random(), secondTwo = random();
for ( var i = 0; i < 16; i+... | var Game = function(boardString){
var board = '';
this.board = '';
if (arguments.length === 1) {
this.board = this.toArray(boardString);
} else {
function random() {
return Math.floor(Math.random() * 10 + 6);
};
var firstTwo = random(), secondTwo = random();
for ( var i = 0; i < 16; i+... | Modify toString method for board array format | Modify toString method for board array format
| JavaScript | mit | suprfrye/galaxy-256,suprfrye/galaxy-256 | ---
+++
@@ -22,10 +22,9 @@
Game.prototype = {
toString: function() {
- for( var i = 0; i < 16; i += 4){
- this.array = this.board.slice(0 + i, 4 + i)
- console.log(this.array)
- }
+ this.board.forEach(function(row) {
+ console.log(row.join(''));
+ });
},
toArray: function(char... |
cadc230be233de7ac0f0a809b2b0a078950b1416 | components/Footer.js | components/Footer.js | import React from 'react';
import Link from '../components/Link';
import { StyleSheet, css } from 'glamor/aphrodite';
export default () => {
return (
<footer className={css(styles.footer)}>
<div className={css(styles.container)}>
<p className={css(styles.text)}>
Missing a library?{' '}
... | import React from 'react';
import Link from '../components/Link';
import { StyleSheet, css } from 'glamor/aphrodite';
export default () => {
return (
<footer className={css(styles.footer)}>
<div className={css(styles.container)}>
<p className={css(styles.text)}>
Missing a library?{' '}
... | Fix anchor of the "Add it to the directory" link | Fix anchor of the "Add it to the directory" link | JavaScript | mit | react-community/native-directory | ---
+++
@@ -10,7 +10,7 @@
Missing a library?{' '}
<Link
isStyled
- href="https://github.com/react-community/native-directory#how-to-add-a-library">
+ href="https://github.com/react-community/native-directory#how-do-i-add-a-library">
Add it to the d... |
d6cff2ae3baf9de7f8156545fda5bb67361c36c2 | components/Header.js | components/Header.js | import Head from 'next/head';
export default () =>
<header>
<Head>
<style>{`
body {
font-family: "Helvetica Neue", Arial, sans-serif;
}
`}</style>
</Head>
</header>;
| import Head from 'next/head';
export default () =>
<header>
<Head>
<style global jsx>{`
body {
font-family: "Helvetica Neue", Arial, sans-serif;
}
`}</style>
</Head>
</header>;
| Fix flash of unstyled text | Fix flash of unstyled text | JavaScript | mit | pmdarrow/react-todo | ---
+++
@@ -3,7 +3,7 @@
export default () =>
<header>
<Head>
- <style>{`
+ <style global jsx>{`
body {
font-family: "Helvetica Neue", Arial, sans-serif;
} |
09c78c2316fdb2a1cb72b7bf5694404d4125927d | src/components/providers/cdg/Prefs/Prefs.js | src/components/providers/cdg/Prefs/Prefs.js | import React from 'react'
export default class Prefs extends React.Component {
static propTypes = {
prefs: React.PropTypes.object.isRequired,
setPrefs: React.PropTypes.func.isRequired,
providerRefresh: React.PropTypes.func.isRequired,
}
toggleEnabled = this.toggleEnabled.bind(this)
handleRefresh =... | import React from 'react'
export default class Prefs extends React.Component {
static propTypes = {
prefs: React.PropTypes.object.isRequired,
setPrefs: React.PropTypes.func.isRequired,
providerRefresh: React.PropTypes.func.isRequired,
}
toggleEnabled = this.toggleEnabled.bind(this)
handleRefresh =... | Fix rendering before prefs loaded | Fix rendering before prefs loaded
| JavaScript | isc | bhj/karaoke-forever,bhj/karaoke-forever | ---
+++
@@ -23,6 +23,9 @@
render() {
const { prefs } = this.props
+ if (!prefs) return null
+
+ const enabled = prefs.enabled === true
let paths = prefs.paths || []
paths = paths.map(path => (
@@ -32,7 +35,7 @@
return (
<div>
<label>
- <input type='checkbox' c... |
e8c621a87d93590901e128ab8e2fb8b649b63270 | modules/blueprint.js | modules/blueprint.js | var BlueprintClient = require('xively-blueprint-client-js');
var client = new BlueprintClient({
authorization: process.env.BLUEPRINT_AUTHORIZATION
});
module.exports = client;
| var BlueprintClient = require('xively-blueprint-client-js');
var client = new BlueprintClient({
authorization: process.env.BLUEPRINT_AUTHORIZATION
});
console.log('Client initialized with authorization >', process.env.BLUEPRINT_AUTHORIZATION);
module.exports = client;
| Add logging with Blueprint authorization token | Add logging with Blueprint authorization token
| JavaScript | mit | Altoros/refill-them-api | ---
+++
@@ -4,4 +4,6 @@
authorization: process.env.BLUEPRINT_AUTHORIZATION
});
+console.log('Client initialized with authorization >', process.env.BLUEPRINT_AUTHORIZATION);
+
module.exports = client; |
61766f5cd277420d68299c78c43bec051a23be4d | api/run-server.js | api/run-server.js | var server = require('./server');
var port = process.env.port || 3000;
server.listen(port, function() {
console.log('Listening on port ' + port);
});
| var server = require('./server');
var port = process.env.PORT || 3000;
server.listen(port, function() {
console.log('Listening on port ' + port);
});
| Use correct port env variable | Use correct port env variable
| JavaScript | mit | jeffcharles/number-switcher-3000,jeffcharles/number-switcher-3000,jeffcharles/number-switcher-3000 | ---
+++
@@ -1,6 +1,6 @@
var server = require('./server');
-var port = process.env.port || 3000;
+var port = process.env.PORT || 3000;
server.listen(port, function() {
console.log('Listening on port ' + port);
}); |
eaf2461432f490fee0e8812889c90bd88eb7a0fe | realtime/index.js | realtime/index.js | const io = require('socket.io'),
winston = require('winston');
winston.remove(winston.transports.Console);
winston.add(winston.transports.Console, {'timestamp': true});
const PORT = 3031;
winston.info('Rupture real-time service starting');
winston.info('Listening on port ' + PORT);
var socket = io.listen(PORT... | const io = require('socket.io'),
winston = require('winston');
winston.remove(winston.transports.Console);
winston.add(winston.transports.Console, {'timestamp': true});
const PORT = 3031;
winston.info('Rupture real-time service starting');
winston.info('Listening on port ' + PORT);
var socket = io.listen(PORT... | Add logging for server-side work completed event | Add logging for server-side work completed event
| JavaScript | mit | dimkarakostas/rupture,dimriou/rupture,dimriou/rupture,esarafianou/rupture,dionyziz/rupture,esarafianou/rupture,esarafianou/rupture,dimkarakostas/rupture,dimkarakostas/rupture,esarafianou/rupture,dionyziz/rupture,dionyziz/rupture,dimriou/rupture,dimriou/rupture,dimriou/rupture,dionyziz/rupture,dimkarakostas/rupture,dimk... | ---
+++
@@ -22,6 +22,9 @@
timeout: 0
});
});
+ client.on('work-completed', function({work, success, host}) {
+ winston.info('Client indicates work completed: ', work, success, host);
+ });
client.on('disconnect', function() {
winston.info('Client ' + client.id + '... |
e7bcd073726ab546c41883e68648aadbe7cdeed2 | assets/js/main.js | assets/js/main.js | (function(document){
function setStyle(style, param) {
var range, sel;
if (window.getSelection) {
sel = window.getSelection();
if (sel.getRangeAt) {
range = sel.getRangeAt(0);
}
document.designMode = "on";
if (range) {
sel.removeAllRanges();
sel.addRange... | (function(document){
function setStyle(style, param) {
var range, sel;
if (window.getSelection) {
sel = window.getSelection();
if (sel.getRangeAt) {
range = sel.getRangeAt(0);
}
document.designMode = "on";
if (range) {
sel.removeAllRanges();
sel.addRange... | Add image the right way | Add image the right way
| JavaScript | mit | guilhermecomum/minimal-editor | ---
+++
@@ -36,14 +36,26 @@
function addImage(e) {
e.stopPropagation();
e.preventDefault();
+ x = e.clientX;
+ y = e.clientY;
var file = e.dataTransfer.files[0],
reader = new FileReader();
reader.onload = function (event) {
- var newImage = document.createElement('span')... |
b491985b4a59f368633a225905f582933fa47f0e | packages/babel-compiler/package.js | packages/babel-compiler/package.js | Package.describe({
name: "babel-compiler",
summary: "Parser/transpiler for ECMAScript 2015+ syntax",
// Tracks the npm version below. Use wrap numbers to increment
// without incrementing the npm version. Hmm-- Apparently this
// isn't possible because you can't publish a non-recommended
// release with p... | Package.describe({
name: "babel-compiler",
summary: "Parser/transpiler for ECMAScript 2015+ syntax",
// Tracks the npm version below. Use wrap numbers to increment
// without incrementing the npm version. Hmm-- Apparently this
// isn't possible because you can't publish a non-recommended
// release with p... | Make babel-runtime use ecmascript-runtime on server only. | Make babel-runtime use ecmascript-runtime on server only.
| JavaScript | mit | Hansoft/meteor,Hansoft/meteor,Hansoft/meteor,Hansoft/meteor,Hansoft/meteor,Hansoft/meteor,Hansoft/meteor | ---
+++
@@ -14,7 +14,7 @@
});
Package.onUse(function (api) {
- api.use('ecmascript-runtime');
+ api.use('ecmascript-runtime', 'server');
api.addFiles([
'babel.js', |
1b4be05beb4d717c13796e404e019ee6d4a543ce | app/javascript/sugar/posts/embeds.js | app/javascript/sugar/posts/embeds.js | import $ from "jquery";
import Sugar from "../../sugar";
/**
* Handlers for scripted embed (social) quirks
*/
$(Sugar).bind("ready", function(){
// Initialize twitter embeds when new posts load or previewed
$(Sugar).bind("postsloaded", function(event, posts) {
if (posts.length && window.twttr && window.twtt... | import $ from "jquery";
import Sugar from "../../sugar";
/**
* Handlers for scripted embed (social) quirks
*/
$(Sugar).bind("ready", function(){
const postsContainer = document.querySelector(".posts");
// Initialize twitter embeds when new posts load or previewed
$(Sugar).bind("postsloaded", function(event, p... | Check that posts exist before applying the resizeObserver | Check that posts exist before applying the resizeObserver
| JavaScript | mit | elektronaut/sugar,elektronaut/sugar,elektronaut/sugar,elektronaut/sugar | ---
+++
@@ -5,6 +5,7 @@
* Handlers for scripted embed (social) quirks
*/
$(Sugar).bind("ready", function(){
+ const postsContainer = document.querySelector(".posts");
// Initialize twitter embeds when new posts load or previewed
$(Sugar).bind("postsloaded", function(event, posts) {
@@ -13,21 +14,22 @@
... |
f8d22f8ded7ea448a643f248c346d46e85a929ea | js/query-cache.js | js/query-cache.js | define([], function () {
var caches = {};
function Cache(method) {
this.method = method;
this._store = {};
}
/** xml -> Promise<Result> **/
Cache.prototype.submit = function submit (query) {
var xml = query.toXML();
var current = this._store[xml];
if (current) {
return current;
... | define([], function () {
var caches = {};
function Cache(method, service) {
this.method = method;
this._store = {};
this.service = service;
}
/** xml -> Promise<Result> **/
Cache.prototype.submit = function submit (query) {
var key, current;
if (this.method === 'findById') {
key =... | Allow cache methods that are run from the service. | Allow cache methods that are run from the service.
| JavaScript | apache-2.0 | yochannah/show-list-tool,alexkalderimis/show-list-tool,yochannah/show-list-tool,intermine-tools/show-list-tool,intermine-tools/show-list-tool,intermine-tools/show-list-tool,yochannah/show-list-tool | ---
+++
@@ -2,26 +2,38 @@
var caches = {};
- function Cache(method) {
+ function Cache(method, service) {
this.method = method;
this._store = {};
+ this.service = service;
}
/** xml -> Promise<Result> **/
Cache.prototype.submit = function submit (query) {
- var xml = query.toXML();... |
7d8217e5404375885c14539d5a3cdd6799755154 | packages/youtube/package.js | packages/youtube/package.js | Package.describe({
name: 'pntbr:youtube',
version: '0.0.1',
summary: 'Manage Youtube\'s videos',
git: 'https://github.com/goacademie/fanhui',
documentation: 'README.md'
})
Package.onUse(function(api) {
api.versionsFrom('1.2.1')
api.use(['ecmascript', 'mongo'])
api.use(['iron:router', 'templating', 'ses... | Package.describe({
name: 'pntbr:youtube',
version: '0.0.1',
summary: 'Manage Youtube\'s videos',
git: 'https://github.com/goacademie/fanhui',
documentation: 'README.md'
})
Package.onUse(function(api) {
api.versionsFrom('1.2.1')
api.use(['ecmascript', 'mongo'])
api.use(['iron:router', 'templating', 'ses... | Disable Vdos collection on client | Disable Vdos collection on client
| JavaScript | mit | goacademie/fanhui,goacademie/fanhui | ---
+++
@@ -24,7 +24,6 @@
api.export(['notifBadYoutubeId'], 'client')
api.export('Vdos', 'server')
api.export([
- 'Vdos',
'youtubeIdCheckLength',
'queryValueByFieldName',
'checkTitle', |
1b4db6e15bf268d9e46e36d6538b31469afba482 | feature-detects/unicode.js | feature-detects/unicode.js | /*!
{
"name": "Unicode characters",
"property": "unicode",
"tags": ["encoding"],
"warnings": [
"positive Unicode support doesn't mean you can use it inside <title>, this seems more related to OS & Language packs"
]
}
!*/
/* DOC
Detects if unicode characters are supported in the current document.
*/
define... | /*!
{
"name": "Unicode characters",
"property": "unicode",
"tags": ["encoding"],
"warnings": [
"positive Unicode support doesn't mean you can use it inside <title>, this seems more related to OS & Language packs"
]
}
!*/
/* DOC
Detects if unicode characters are supported in the current document.
*/
define... | Add semicolons to avoid generating typos | Add semicolons to avoid generating typos
| JavaScript | mit | Modernizr/Modernizr,Modernizr/Modernizr | ---
+++
@@ -26,8 +26,8 @@
testStyles('#modernizr{font-family:Arial,sans;font-size:300em;}', function(node) {
- missingGlyph.innerHTML = isSVG ? '\u5987' : 'ᝣ';
- star.innerHTML = isSVG ? '\u2606' : '☆';
+ missingGlyph.innerHTML = isSVG ? '\u5987' : 'ᝣ';
+ star.innerHTML = ... |
e4802320d96c78afb3b69b18b69cb71f605c9977 | config/staging.js | config/staging.js | module.exports = {
app_host_port: 'streetmix-staging.herokuapp.com',
restapi_baseuri: "http://streetmix-api-staging.herokuapp.com",
facebook_app_id: '175861739245183'
}
| module.exports = {
app_host_port: 'streetmix-staging.herokuapp.com',
restapi_baseuri: 'http://streetmix-api-staging.herokuapp.com',
facebook_app_id: '175861739245183'
}
| Revert "Tryign double quotes to prevent HTML entity encoding." | Revert "Tryign double quotes to prevent HTML entity encoding."
This reverts commit 656c393aaa66e558179ad94f08812bd3c931b690.
| JavaScript | bsd-3-clause | codeforamerica/streetmix,magul/streetmix,codeforamerica/streetmix,codeforamerica/streetmix,macGRID-SRN/streetmix,magul/streetmix,kodujdlapolski/streetmix,magul/streetmix,CodeForBrazil/streetmix,CodeForBrazil/streetmix,kodujdlapolski/streetmix,kodujdlapolski/streetmix,macGRID-SRN/streetmix,macGRID-SRN/streetmix,CodeForB... | ---
+++
@@ -1,5 +1,5 @@
module.exports = {
app_host_port: 'streetmix-staging.herokuapp.com',
- restapi_baseuri: "http://streetmix-api-staging.herokuapp.com",
+ restapi_baseuri: 'http://streetmix-api-staging.herokuapp.com',
facebook_app_id: '175861739245183'
} |
9a97f6929af78c0bfffeca2f96a9c47f7fa1e943 | plugins/no-caching/index.js | plugins/no-caching/index.js | var robohydra = require('robohydra'),
RoboHydraHead = robohydra.heads.RoboHydraHead;
function getBodyParts(config) {
"use strict";
var noCachingPath = config.nocachingpath || '/.*';
return {heads: [new RoboHydraHead({
path: noCachingPath,
handler: function(req, res, ne... | var robohydra = require('robohydra'),
RoboHydraHead = robohydra.heads.RoboHydraHead;
function getBodyParts(config) {
"use strict";
var noCachingPath = config.nocachingpath || '/.*';
return {heads: [new RoboHydraHead({
path: noCachingPath,
handler: function(req, res, ne... | Delete the if-none-match header in the no-caching plugin | Delete the if-none-match header in the no-caching plugin
| JavaScript | apache-2.0 | mlev/robohydra,robohydra/robohydra,robohydra/robohydra,mlev/robohydra,mlev/robohydra | ---
+++
@@ -12,6 +12,7 @@
// Tweak client cache-related headers so ensure no
// caching, then let the request be dispatched normally
delete req.headers['if-modified-since'];
+ delete req.headers['if-none-match'];
req.headers['cache-control'] = 'no-cache';... |
deadb3b799e40640be486ec5c6f7f39f54eae162 | config/web.js | config/web.js | module.exports = {
public_host_name: 'http://watchmen.letsnode.com/', // required for OAuth dance
auth: {
GOOGLE_CLIENT_ID: process.env.WATCHMEN_GOOGLE_CLIENT_ID || '<Create credentials from Google Dev Console>',
GOOGLE_CLIENT_SECRET: process.env.WATCHMEN_GOOGLE_CLIENT_SECRET || '<Create crede... | module.exports = {
public_host_name: process.env.WATCHMEN_BASE_URL || 'http://watchmen.letsnode.com/', // required for OAuth dance
auth: {
GOOGLE_CLIENT_ID: process.env.WATCHMEN_GOOGLE_CLIENT_ID || '<Create credentials from Google Dev Console>',
GOOGLE_CLIENT_SECRET: process.env.WATCHMEN_GOOGL... | Add WATCHMEN_BASE_URL env var to configure base url | Add WATCHMEN_BASE_URL env var to configure base url
| JavaScript | mit | corinis/watchmen,labianchin/WatchMen,plyo/watchmen,corinis/watchmen,NotyIm/WatchMen,iloire/WatchMen,Cellington1/Status,NotyIm/WatchMen,labianchin/WatchMen,plyo/watchmen,labianchin/WatchMen,NotyIm/WatchMen,plyo/watchmen,ravi/watchmen,ravi/watchmen,Cellington1/Status,iloire/WatchMen,Cellington1/Status,corinis/watchmen,il... | ---
+++
@@ -1,6 +1,6 @@
module.exports = {
- public_host_name: 'http://watchmen.letsnode.com/', // required for OAuth dance
+ public_host_name: process.env.WATCHMEN_BASE_URL || 'http://watchmen.letsnode.com/', // required for OAuth dance
auth: {
GOOGLE_CLIENT_ID: process.env.WATCHMEN_GOOGLE_C... |
084fd3d7bc7c227c313d2f23bce1413af02f935a | lib/background.js | lib/background.js | var path = require('path');
var nightwatch = require('nightwatch');
var originalArgv = JSON.parse(process.argv[2]);
nightwatch.cli(function(argv) {
for (var key in originalArgv) {
if (key === 'env' && argv['parallel-mode'] === true) {
continue;
}
argv[key] = originalArgv[key];
}
if (argv.test)... | var path = require('path');
var nightwatch = require('nightwatch');
var originalArgv = JSON.parse(process.argv[2]);
nightwatch.cli(function(argv) {
for (var key in originalArgv) {
if (key === 'env' && originalArgv[key].indexOf(',') > -1 && argv['parallel-mode'] === true) {
continue;
}
argv[key] = o... | Fix correct check for env argument passed | Fix correct check for env argument passed
| JavaScript | mit | tatsuyafw/gulp-nightwatch,StoneCypher/gulp-nightwatch | ---
+++
@@ -4,7 +4,7 @@
nightwatch.cli(function(argv) {
for (var key in originalArgv) {
- if (key === 'env' && argv['parallel-mode'] === true) {
+ if (key === 'env' && originalArgv[key].indexOf(',') > -1 && argv['parallel-mode'] === true) {
continue;
}
argv[key] = originalArgv[key]; |
2fbe38df3bba8886de9295ef637b65ea8ac664af | lib/i18n/index.js | lib/i18n/index.js | /**
* i18n plugin
* register handlebars handler which looks up translations in a dictionary
*/
var path = require("path");
var fs = require("fs");
var handlebars = require("handlebars");
module.exports = function makePlugin() {
return function (opts) {
var data = {
"en": {}
... | /**
* i18n plugin
* register handlebars handler which looks up translations in a dictionary
*/
var path = require("path");
var fs = require("fs");
var handlebars = require("handlebars");
module.exports = function makePlugin() {
return function (opts) {
var data = {
"en": {}
... | Handle missing title localisation file. | Handle missing title localisation file.
| JavaScript | mit | playcanvas/developer.playcanvas.com,playcanvas/developer.playcanvas.com | ---
+++
@@ -17,8 +17,12 @@
if (opts.locales) {
try {
opts.locales.forEach( function (loc) {
- content = fs.readFileSync(path.join(__dirname + "../../../", loc.file));
- data[loc.locale] = JSON.parse(content);
+ ... |
6721766466e5cf2231fcc81fa9cdee2972835a93 | lib/jsonReader.js | lib/jsonReader.js | var fs = require('fs');
var JSONStream = require('JSONStream');
var jsonReader = {};
jsonReader.read = function (fileName, callback) {
return fs.readFile(fileName, function(err, data) {
if (err) throw err;
return callback(data);
});
};
jsonReader.readStartStationStream = function (fileName, callback) {
... | var fs = require('fs')
var jsonReader = {}
jsonReader.read = function (fileName, callback) {
return fs.readFile(fileName, function (err, data) {
if (err) {
throw err
}
return callback(data)
})
}
jsonReader.readStream = function (fileName) {
return fs.createReadStream(fileName)
}
module.expor... | Clean up and make a separate method for return a readStream | Clean up and make a separate method for return a readStream
| JavaScript | mit | superhansa/bikesluts,superhansa/bikesluts | ---
+++
@@ -1,17 +1,18 @@
-var fs = require('fs');
-var JSONStream = require('JSONStream');
+var fs = require('fs')
-var jsonReader = {};
+var jsonReader = {}
jsonReader.read = function (fileName, callback) {
- return fs.readFile(fileName, function(err, data) {
- if (err) throw err;
- return callback(data);... |
5162a6d35a605c13d32dadf8a821e569248db98e | Gruntfile.js | Gruntfile.js | require('js-yaml');
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-jst');
grunt.loadNpmTasks('grunt-mocha-test');
grunt.loadNpmTasks('grunt-karma');
grunt.initConfig({
paths: require('js_paths.yml'),
mochaTest: {
jsbox_apps: {
src: ['<%= paths.tests.jsbox_apps.spec... | require('js-yaml');
var path = require('path');
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-jst');
grunt.loadNpmTasks('grunt-mocha-test');
grunt.loadNpmTasks('grunt-karma');
grunt.initConfig({
paths: require('js_paths.yml'),
mochaTest: {
jsbox_apps: {
src: ['<%=... | Make use of node path utils when processing the jst names for jst grunt task | Make use of node path utils when processing the jst names for jst grunt task
| JavaScript | bsd-3-clause | praekelt/vumi-go,praekelt/vumi-go,praekelt/vumi-go,praekelt/vumi-go | ---
+++
@@ -1,4 +1,5 @@
require('js-yaml');
+var path = require('path');
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-jst');
@@ -15,12 +16,14 @@
jst: {
options: {
processName: function(filename) {
+ var dir = path.dirname(filename);
+ dir = path.r... |
1170229827ef0e2e4dc78bd65bf71ab6ce7875fc | lib/node-linux.js | lib/node-linux.js | /**
* @class nodelinux
* This is a standalone module, originally designed for internal use in [NGN](http://github.com/thinkfirst/NGN).
* However; it is capable of providing the same features for Node.JS scripts
* independently of NGN.
*
* ### Getting node-linux
*
* `npm install node-linux`
*
* ### Using node-... | /**
* @class nodelinux
* This is a standalone module, originally designed for internal use in [NGN](http://github.com/thinkfirst/NGN).
* However; it is capable of providing the same features for Node.JS scripts
* independently of NGN.
*
* ### Getting node-linux
*
* `npm install node-linux`
*
* ### Using node-... | Remove exception on requiring module | Remove exception on requiring module | JavaScript | mit | zonetti/node-linux,zonetti/node-linux | ---
+++
@@ -15,9 +15,6 @@
* @singleton
* @author Corey Butler
*/
-if (require('os').platform().indexOf('linux') < 0){
- throw 'node-linux is only supported on Linux.';
-}
// Add daemon management capabilities
module.exports.Service = require('./daemon'); |
43f48c6fbe4d43d7f288d6169c612e8b6402e3b3 | Gruntfile.js | Gruntfile.js | module.exports = function(grunt) {
grunt.initConfig({
nodewebkit: {
options: {
platforms: ['osx'],
buildDir: './build',
macIcns: './app/icon/logo.icns'
},
src: ['./app/**/*']
},
browserSync: {
... | module.exports = function(grunt) {
grunt.initConfig({
nodewebkit: {
options: {
platforms: ['osx'],
buildDir: './build',
macIcns: './app/icon/logo.icns'
},
src: ['./app/**/*']
},
browserSync: {
... | Enable remote debugging when running app. | Enable remote debugging when running app. | JavaScript | mit | ParinVachhani/chrome-devtools-app,ahmadassaf/Chrome-devtools-app,ParinVachhani/chrome-devtools-app,ahmadassaf/Chrome-devtools-app,ahmadassaf/Chrome-devtools-app,auchenberg/chrome-devtools-app,modulexcite/chrome-devtools-app,modulexcite/chrome-devtools-app,cjpearson/chrome-devtools-app,ahmadassaf/Chrome-devtools-app,mod... | ---
+++
@@ -24,7 +24,7 @@
shell: {
runApp: {
- command: '/Applications/node-webkit.app/Contents/MacOS/node-webkit ./app'
+ command: '/Applications/node-webkit.app/Contents/MacOS/node-webkit ./app --remote-debugging-port=9222'
}
}
|
f27626a82f7c2228182fca3b3d84171cf49b0ecb | Gruntfile.js | Gruntfile.js | require('js-yaml');
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-mocha-test');
grunt.initConfig({
paths: require('paths.yml'),
mochaTest: {
jsbox_apps: {
src: ['<%= paths.jsbox_apps.tests %>'],
}
}
});
grunt.registerTask('test', [
'mochaTest'
]);
grun... | require('js-yaml');
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-mocha-test');
grunt.initConfig({
paths: require('paths.yml'),
mochaTest: {
jsbox_apps: {
src: ['<%= paths.jsbox_apps.tests %>'],
}
}
});
grunt.registerTask('test:jsbox_apps', [
'mochaTest:jsb... | Add a grunt task for only the jsbox_app js tests | Add a grunt task for only the jsbox_app js tests
| JavaScript | bsd-3-clause | praekelt/vumi-go,praekelt/vumi-go,praekelt/vumi-go,praekelt/vumi-go | ---
+++
@@ -12,6 +12,10 @@
}
});
+ grunt.registerTask('test:jsbox_apps', [
+ 'mochaTest:jsbox_apps'
+ ]);
+
grunt.registerTask('test', [
'mochaTest'
]); |
20c080c8f356f257d9c57dc761dd904280fabd4e | js/application.js | js/application.js | // load social sharing scripts if the page includes a Twitter "share" button
var _jsLoader = _jsLoader || {};
// callback pattern
_jsLoader.initTwitter = (function() {
if (typeof (twttr) != 'undefined') {
twttr.widgets.load();
} else {
_jsLoader.getScript('http://platform.twitter.com/widgets.js');
... | // load social sharing scripts if the page includes a Twitter "share" button
var _jsLoader = _jsLoader || {};
// callback pattern
_jsLoader.initTwitter = (function() {
if (typeof (twttr) != 'undefined') {
twttr.widgets.load();
} else {
_jsLoader.getScript('http://platform.twitter.com/widgets.js', f... | Add timeouts to social app loading | Add timeouts to social app loading
| JavaScript | mit | bf4/bf4.github.com,bf4/bf4.github.com,bf4/bf4.github.com,bf4/bf4.github.com | ---
+++
@@ -6,7 +6,11 @@
if (typeof (twttr) != 'undefined') {
twttr.widgets.load();
} else {
- _jsLoader.getScript('http://platform.twitter.com/widgets.js');
+ _jsLoader.getScript('http://platform.twitter.com/widgets.js', function() {
+ setTimeout(function() {
+ _jsLoader.in... |
e2bc229164dfcb37f3111950e536e3452bab646f | data/bootstrap.js | data/bootstrap.js | /* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
const { utils: Cu } = Components;
const rootURI = __SCRIPT_URI_SPEC__.replace("bootstrap.js", "");
c... | /* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
const { utils: Cu } = Components;
const rootURI = __SCRIPT_URI_SPEC__.replace("bootstrap.js", "");
c... | Fix fallout from global lexical scope changes. | Fix fallout from global lexical scope changes.
| JavaScript | mpl-2.0 | mozilla-jetpack/jpm-core,mozilla/jpm-core | ---
+++
@@ -8,4 +8,4 @@
const COMMONJS_URI = "resource://gre/modules/commonjs";
const { require } = Cu.import(COMMONJS_URI + "/toolkit/require.js", {});
const { Bootstrap } = require(COMMONJS_URI + "/sdk/addon/bootstrap.js");
-const { startup, shutdown, install, uninstall } = new Bootstrap(rootURI);
+var { startup... |
67fc5a6d4365cc87ef7a07766594cae9431f1086 | lib/app/js/directives/shadowDom.js | lib/app/js/directives/shadowDom.js | 'use strict';
angular.module('sgApp')
.directive('shadowDom', function(Styleguide, $templateCache) {
var USER_STYLES_TEMPLATE = 'userStyles.html';
return {
restrict: 'E',
transclude: true,
link: function(scope, element, attrs, controller, transclude) {
if (typeof element[0].create... | 'use strict';
angular.module('sgApp')
.directive('shadowDom', function(Styleguide, $templateCache) {
var USER_STYLES_TEMPLATE = 'userStyles.html';
return {
restrict: 'E',
transclude: true,
link: function(scope, element, attrs, controller, transclude) {
scope.$watch(function() {
... | Fix fullscreen mode when using disableEncapsulation option | Fix fullscreen mode when using disableEncapsulation option
| JavaScript | mit | hence-io/sc5-styleguide,junaidrsd/sc5-styleguide,kraftner/sc5-styleguide,patriziosotgiu/sc5-styleguide,lewiscowper/sc5-styleguide,varya/sc5-styleguide,kraftner/sc5-styleguide,hence-io/sc5-styleguide,jkarttunen/sc5-styleguide,lewiscowper/sc5-styleguide,ifeelgoods/sc5-styleguide,jkarttunen/sc5-styleguide,SC5/sc5-stylegui... | ---
+++
@@ -9,17 +9,26 @@
restrict: 'E',
transclude: true,
link: function(scope, element, attrs, controller, transclude) {
- if (typeof element[0].createShadowRoot === 'function' && !Styleguide.config.data.disableEncapsulation) {
- var root = angular.element(element[0].createShado... |
8566a1dedb86a6941ef32822a424dbae327e646d | src/streams/hot-collection-to-collection.js | src/streams/hot-collection-to-collection.js | define(['streamhub-sdk/collection'], function (Collection) {
'use strict';
var HotCollectionToCollection = function () {};
/**
* Transform an Object from StreamHub's Hot Collection endpoint into a
* streamhub-sdk/collection model
* @param hotCollection {object}
*/
HotCollectionTo... | define(['streamhub-sdk/collection'], function (Collection) {
'use strict';
var HotCollectionToCollection = function () {};
/**
* Transform an Object from StreamHub's Hot Collection endpoint into a
* streamhub-sdk/collection model
* @param hotCollection {object}
*/
HotCollectionTo... | Include url attribute in created Collection | Include url attribute in created Collection
| JavaScript | mit | gobengo/streamhub-hot-collections | ---
+++
@@ -20,6 +20,7 @@
});
collection.heatIndex = hotCollection.heat;
collection.title = hotCollection.title;
+ collection.url = hotCollection.url;
return collection;
};
|
3f8a720bce6ea792be37fbf7a52ba7ea62d89c9f | lib/connection.js | lib/connection.js | var mongo = require('mongoskin');
var job = require('./job');
var Queue = require('./queue');
var Worker = require('./worker');
module.exports = Connection;
function Connection(uri, options) {
this.db = mongo.db(uri, options);
}
Connection.prototype.worker = function (queues, options) {
var self = this;
... | var mongo = require('mongoskin');
var job = require('./job');
var Queue = require('./queue');
var Worker = require('./worker');
module.exports = Connection;
function Connection(uri, options) {
this.db = mongo.db(uri, options);
}
Connection.prototype.worker = function (queues, options) {
var self = this;
... | Create worker queue with options | Create worker queue with options | JavaScript | mit | dioscouri/nodejs-monq | ---
+++
@@ -14,7 +14,7 @@
var queues = queues.map(function (queue) {
if (typeof queue === 'string') {
- queue = self.queue(queue);
+ queue = self.queue(queue, options);
}
return queue; |
403e11554bdd11ec3e521d4de244f22bdae437d0 | src/components/Layout/HeaderNav.js | src/components/Layout/HeaderNav.js | import React from 'react'
import PropTypes from 'prop-types'
import { Menu, Icon, Popover } from 'antd'
import { Link } from 'dva/router'
import uri from 'utils/uri'
import { l } from 'utils/localization'
import styles from './Header.less'
import { classnames } from 'utils'
function createMenu(items, handleClick, mode... | import React from 'react'
import PropTypes from 'prop-types'
import { Menu, Icon, Popover } from 'antd'
import { Link } from 'dva/router'
import uri from 'utils/uri'
import { l } from 'utils/localization'
import styles from './Header.less'
import { classnames } from 'utils'
function createMenu(items, handleClick, mode... | Fix header nav selected key issue | Fix header nav selected key issue
| JavaScript | mit | steem/qwp-antd,steem/qwp-antd | ---
+++
@@ -11,7 +11,7 @@
let current = uri.current().split('/')[1]
return (
<Menu onClick={handleClick} selectedKeys={[current]} mode={mode}>
- {items.map(item => (<Menu.Item key={item.name}><Link to={item.path}><Icon type={item.icon || 'appstore-o'} /><span>{l(item.name)}</span></Link></Menu.Item>))... |
9b491e8b0792917404e6a8af09b1f6bd367274d1 | src/components/SubTabView/index.js | src/components/SubTabView/index.js | import React, {Component} from 'react'
import {StyleSheet, View} from 'react-native'
import TabButton from './TabButton'
export default class extends Component {
state = {activeTab: 0}
render = () => (
<View style={{flex: 1}}>
{this.props.tabs.length < 2 ? null :
<View style={Styles.tabWrapper}>
{
... | import React, {Component} from 'react'
import {StyleSheet, View} from 'react-native'
import TabButton from './TabButton'
export default class extends Component {
state = {activeTab: 0}
render = () => (
<View style={{flex: 1}}>
{this.props.tabs.length < 2 ? null :
<View style={Styles.tabWrapper}>
{
... | Implement sort ordering for SubTabView | Implement sort ordering for SubTabView
| JavaScript | mit | Digitova/reactova-framework | ---
+++
@@ -10,7 +10,7 @@
{this.props.tabs.length < 2 ? null :
<View style={Styles.tabWrapper}>
{
- this.props.tabs.map(({title}, key) => (
+ this.props.tabs.sort(this.compareSortOrder).map(({title}, key) => (
<TabButton
key={key}
index={key}
@@ -36,6 +36,8 @@
)
... |
7aeca984f56841396a3d26120decc7b1b161f92a | scripts/_build-base-html.js | scripts/_build-base-html.js | const fs = require(`fs`);
const glob = require(`glob`);
const path = require(`path`);
const buildHtml = require(`./_build-html.js`);
const pages = glob.sync(path.join(process.cwd(), `pages`, `**`, `*.hbs`));
module.exports = (data) => {
pages.forEach((page) => {
const baseTemplate = fs.readFileSync(page, `utf8... | const fs = require(`fs`);
const glob = require(`glob`);
const path = require(`path`);
const buildHtml = require(`./_build-html.js`);
const pages = glob.sync(path.join(process.cwd(), `pages`, `**`, `*.hbs`));
module.exports = (data) => {
pages.forEach((page) => {
const baseTemplate = fs.readFileSync(page, `utf8... | Add support for nested pages | Add support for nested pages
| JavaScript | mit | avalanchesass/avalanche-website,avalanchesass/avalanche-website | ---
+++
@@ -9,7 +9,15 @@
module.exports = (data) => {
pages.forEach((page) => {
const baseTemplate = fs.readFileSync(page, `utf8`);
- const outputFile = path.join(process.cwd(), `dist`, `${path.parse(page).name}.html`);
+ const pathName = path.parse(page).name;
+ const subPath = path
+ .parse(p... |
78aa6e0fb40c58376105c801c1204b194bc926de | publishing/printview/main.js | publishing/printview/main.js | // convert current notebook to html by calling "ipython nbconvert" and open static html file in new tab
define([
'base/js/namespace',
'jquery',
], function(IPython, $) {
"use strict";
if (IPython.version[0] < 3) {
console.log("This extension requires IPython 3.x")
return
}
... | // convert current notebook to html by calling "ipython nbconvert" and open static html file in new tab
define([
'base/js/namespace',
'jquery',
], function(IPython, $) {
"use strict";
if (IPython.version[0] < 3) {
console.log("This extension requires at least IPython 3.x")
return
}
... | Make printview work with jupyter | Make printview work with jupyter
| JavaScript | bsd-3-clause | Konubinix/IPython-notebook-extensions,Konubinix/IPython-notebook-extensions,Konubinix/IPython-notebook-extensions | ---
+++
@@ -6,34 +6,42 @@
], function(IPython, $) {
"use strict";
if (IPython.version[0] < 3) {
- console.log("This extension requires IPython 3.x")
+ console.log("This extension requires at least IPython 3.x")
return
}
-
+
/**
* Call nbconvert using the current n... |
071ebfc41f71078432ad061488cb0b2175ab5668 | src/index.js | src/index.js | require('./env');
module.exports = function(config) {
config = Object.assign({}, config, {
BUGS_TOKEN: process.env.BUGSNAG_TOKEN,
LOGS_TOKEN: process.env.LOGENTRIES_TOKEN
});
require('./bugsnag')(config.BUGS_TOKEN);
require('./winston')(config.LOGS_TOKEN);
};
| require('./env');
module.exports = function(config) {
config = Object.assign({
BUGS_TOKEN: process.env.BUGSNAG_TOKEN,
LOGS_TOKEN: process.env.LOGENTRIES_TOKEN
}, config);
require('./bugsnag')(config.BUGS_TOKEN);
require('./winston')(config.LOGS_TOKEN);
};
| Fix priority order in default config usage (env is not priority) | Fix priority order in default config usage (env is not priority)
| JavaScript | mit | dial-once/node-microservice-boot | ---
+++
@@ -1,10 +1,10 @@
require('./env');
module.exports = function(config) {
- config = Object.assign({}, config, {
+ config = Object.assign({
BUGS_TOKEN: process.env.BUGSNAG_TOKEN,
LOGS_TOKEN: process.env.LOGENTRIES_TOKEN
- });
+ }, config);
require('./bugsnag')(config.BUGS_TOKEN);
requi... |
1519fa8c1a2d92b5ab2f515f920bea3a691eca4f | src/index.js | src/index.js | import './css/app';
console.log('Initiated');
import {postMessage, getMessage} from './js/worker';
document.addEventListener('DOMContentLoaded', init);
let workerBlob;
require(['raw!../builds/worker'], (val) => {
workerBlob = new Blob([val], {type: 'text/javascript'});
console.log(workerBlob);
});
function i... | Create app entry main file | Create app entry main file
| JavaScript | mit | abhisekp/WebWorker-demo,abhisekp/WebWorker-demo | ---
+++
@@ -0,0 +1,33 @@
+import './css/app';
+console.log('Initiated');
+import {postMessage, getMessage} from './js/worker';
+
+document.addEventListener('DOMContentLoaded', init);
+
+let workerBlob;
+require(['raw!../builds/worker'], (val) => {
+ workerBlob = new Blob([val], {type: 'text/javascript'});
+ con... | |
bc7f78fa11cfd51a4bcf28a3d1bc5aa384772224 | api/index.js | api/index.js | const { Router } = require('express')
const authRoutes = require('./authentication')
const usersRoutes = require('./users')
const authMiddleware = require('./../middlewares/authentication')
const api = (app) => {
let api = Router()
api.use(authMiddleware)
api.get('/', (req, res) => {
res.status(... | const { Router } = require('express')
const authRoutes = require('./authentication')
const usersRoutes = require('./users')
const customerRoutes = require('./customers')
const authMiddleware = require('./../middlewares/authentication')
const api = (app) => {
let api = Router()
api.use(authMiddleware)
... | Remove current user data from response and user customer routes | Remove current user data from response and user customer routes
| JavaScript | mit | lucasrcdias/customer-mgmt | ---
+++
@@ -1,6 +1,7 @@
const { Router } = require('express')
const authRoutes = require('./authentication')
const usersRoutes = require('./users')
+const customerRoutes = require('./customers')
const authMiddleware = require('./../middlewares/authentication')
const api = (app) => {
@@ -9,11 +10,12 ... |
04035fb612629d88a73b04cdca02efc20833e819 | cypress/integration/top-bar.spec.js | cypress/integration/top-bar.spec.js | context("Sage top bar UI", () => {
beforeEach(() => {
cy.visit("/")
})
context("new node icon", () => {
it("lets you drag a node onto canvas", () => {
cy.getSageIframe().find('.proto-node')
.trigger('mousedown', { which: 1 })
cy.getSageIframe().find('.ui-droppable')
.trigger(... | context("Sage top bar UI", () => {
beforeEach(() => {
cy.visit("/")
})
context("new node icon", () => {
it("lets you drag a node onto canvas", () => {
cy.getSageIframe().find('.proto-node')
.trigger('mousedown', { which: 1 })
cy.getSageIframe().find('.ui-droppable')
.trigger(... | Add Cypress test for About menu | Add Cypress test for About menu
| JavaScript | mit | concord-consortium/building-models,concord-consortium/building-models,concord-consortium/building-models,concord-consortium/building-models,concord-consortium/building-models | ---
+++
@@ -22,4 +22,17 @@
cy.getSageIframe().contains(".modal-dialog-title", "Add new image")
})
})
+ context("About menu", () => {
+ it("opens a menu displaying 'About' and 'Help'", () => {
+ cy.getSageIframe().find('.icon-codap-help').click()
+ cy.getSageIframe().contains(".menuItem", ... |
012db48868f1770b85925e52dce7628883f6867a | demo/src/index.js | demo/src/index.js | import 'normalize.css';
import React from 'react';
import { render } from 'react-dom';
import ButtonDemo from './components/ButtonDemo';
import './index.css';
render(
<main>
<ButtonDemo />
</main>,
document.getElementById('root')
);
| import 'normalize.css';
import React from 'react';
import { render } from 'react-dom';
import ButtonDemo from './ButtonDemo';
import './index.css';
render(
<main>
<ButtonDemo />
</main>,
document.getElementById('root')
);
| Fix access path of the button component | fix(demo): Fix access path of the button component
| JavaScript | mit | kripod/material-components-react,kripod/material-components-react | ---
+++
@@ -1,7 +1,7 @@
import 'normalize.css';
import React from 'react';
import { render } from 'react-dom';
-import ButtonDemo from './components/ButtonDemo';
+import ButtonDemo from './ButtonDemo';
import './index.css';
render( |
d23efb0cd3380ea5a6b3384f4f2fa5ff72466f0b | playground/index.js | playground/index.js | 'use strict';
import React, { Component } from 'react';
import Pic from '../lib/index.js';
export default class Playground extends Component {
render() {
return (
<html>
<head>
<meta charSet='UTF-8' />
<title>react-pic</title>
</head>
<body>
<div id="r... | 'use strict';
import React, { Component } from 'react';
import Pic from '../lib/index.js';
export default class Playground extends Component {
constructor(props) {
super(props);
this.state = {
show: true
};
this.clickHandler = this.clickHandler.bind(this);
}
clickHandler() {
this.setS... | Add button that toggles `<Pic>` to make it easier to develop for unmount | Add button that toggles `<Pic>` to make it easier to develop for unmount
| JavaScript | mit | benox3/react-pic | ---
+++
@@ -4,6 +4,18 @@
import Pic from '../lib/index.js';
export default class Playground extends Component {
+ constructor(props) {
+ super(props);
+ this.state = {
+ show: true
+ };
+ this.clickHandler = this.clickHandler.bind(this);
+ }
+
+ clickHandler() {
+ this.setState({show:!this.... |
dd80f254f407429aeaf5ca5c4fb414363836c267 | src/karma.conf.js | src/karma.conf.js | // Karma configuration file, see link for more information
// https://karma-runner.github.io/1.0/config/configuration-file.html
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular-devkit/build-angular'],
plugins: [
require('karma-jasmine'),
requir... | // Karma configuration file, see link for more information
// https://karma-runner.github.io/1.0/config/configuration-file.html
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular-devkit/build-angular'],
plugins: [
require('karma-jasmine'),
requir... | Add custom launcher for karma | Add custom launcher for karma
| JavaScript | mit | dzonatan/angular2-linky,dzonatan/angular2-linky | ---
+++
@@ -26,6 +26,12 @@
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
+ customLaunchers: {
+ ChromeHeadlessNoSandbox: {
+ base: 'ChromeHeadless',
+ flags: ['--no-sandbox']
+ }
+ },
singleRun: false
});
}; |
f0b03d64e8e43781fe3fe97f6f6de4f4a1da1705 | jobs/search-items.js | jobs/search-items.js | const WMASGSpider = require('../wmasg-spider');
class SearchItems {
constructor(concurrency = 5) {
this.title = 'search items';
this.concurrency = concurrency;
}
process(job, done) {
const spider = new WMASGSpider();
spider.on('error', error => done(error));
spider.on('end', () => done());
... | const WMASGSpider = require('../wmasg-spider');
class SearchItems {
constructor(concurrency = 5) {
this.title = 'search items';
this.concurrency = concurrency;
}
match(item, expression) {
return item.title.toLowerCase().match(expression) || item.description.toLowerCase().match(expression);
}
pr... | Implement filtering items by keywords and price and passing result back | Implement filtering items by keywords and price and passing result back
| JavaScript | mit | adrianrutkowski/wmasg-crawler | ---
+++
@@ -6,12 +6,23 @@
this.concurrency = concurrency;
}
+ match(item, expression) {
+ return item.title.toLowerCase().match(expression) || item.description.toLowerCase().match(expression);
+ }
+
process(job, done) {
const spider = new WMASGSpider();
+ const {keywords, price} = job.data;
... |
f24a110d489a35705477ec1332fb9a148a26b609 | api/models/user.js | api/models/user.js | 'use strict'
let mongoose = require('mongoose')
mongoose.Promise = global.Promise
let Schema = mongoose.Schema
let UserSchema = new Schema({
email: String,
password: String,
CMDRs: {
default: [],
type: [{
type: Schema.Types.ObjectId,
ref: 'Rat'
}]
},
nicknames: {
default: [],
... | 'use strict'
let mongoose = require('mongoose')
mongoose.Promise = global.Promise
let Schema = mongoose.Schema
let UserSchema = new Schema({
email: String,
password: String,
CMDRs: {
default: [],
type: [{
type: Schema.Types.ObjectId,
ref: 'Rat'
}]
},
nicknames: {
default: [],
... | Add permission group field to User object. | Add permission group field to User object.
#25
| JavaScript | bsd-3-clause | FuelRats/api.fuelrats.com,FuelRats/api.fuelrats.com,FuelRats/api.fuelrats.com | ---
+++
@@ -35,6 +35,16 @@
}
}
},
+ group: {
+ default: 'normal',
+ enum: [
+ 'normal',
+ 'overseer',
+ 'moderator',
+ 'admin'
+ ],
+ type: String
+ },
resetToken: String,
resetTokenExpire: Date
}) |
30716f7acac0bf738d32b9c69aca84b59872a821 | src/components/posts_new.js | src/components/posts_new.js | import React from 'react';
import { Field, reduxForm } from 'redux-form';
class PostsNew extends React.Component {
renderField(field) {
return (
<div className='form-group'>
<label>{field.label}</label>
<input
className='form-control'
type='text'
{...field.inpu... | import React from 'react';
import { Field, reduxForm } from 'redux-form';
class PostsNew extends React.Component {
renderField(field) {
return (
<div className='form-group'>
<label>{field.label}</label>
<input
className='form-control'
type='text'
{...field.inpu... | Add initial validations (using redux forms) | Add initial validations (using redux forms)
| JavaScript | mit | monsteronfire/redux-learning-blog,monsteronfire/redux-learning-blog | ---
+++
@@ -38,6 +38,25 @@
}
}
+function validate(values) {
+ const errors = {};
+
+ if (!values.title) {
+ errors.title = "Enter a title";
+ }
+
+ if (!values.categories) {
+ errors.categories = "Enter categories";
+ }
+
+ if (!values.content values.content.length < 10) {
+ errors.content = "Ent... |
d52129c5d915e260d4d86914326606f305ad4ed0 | experiments/modern/src/maki-interpreter/interpreter.js | experiments/modern/src/maki-interpreter/interpreter.js | const parse = require("./parser");
const { getClass } = require("./objects");
const interpret = require("./virtualMachine");
function main({ runtime, data, system, log }) {
const program = parse(data);
// Set the System global
program.variables[0].setValue(system);
// Replace class hashes with actual JavaScr... | const parse = require("./parser");
const { getClass, getFormattedId } = require("./objects");
const interpret = require("./virtualMachine");
function main({ runtime, data, system, log }) {
const program = parse(data);
// Set the System global
program.variables[0].setValue(system);
// Replace class hashes wit... | Improve error message for missing classes | Improve error message for missing classes
| JavaScript | mit | captbaritone/winamp2-js,captbaritone/winamp2-js,captbaritone/winamp2-js | ---
+++
@@ -1,5 +1,5 @@
const parse = require("./parser");
-const { getClass } = require("./objects");
+const { getClass, getFormattedId } = require("./objects");
const interpret = require("./virtualMachine");
function main({ runtime, data, system, log }) {
@@ -14,7 +14,10 @@
if (resolved == null && log) {
... |
20589a3fbfb61328a93a71eda4a90f07d6d0aa23 | mac/resources/open_ATXT.js | mac/resources/open_ATXT.js | define(['mac/roman'], function(macRoman) {
'use strict';
function open(item) {
return item.getBytes().then(function(bytes) {
item.setDataObject(new TextView(bytes.buffer, bytes.byteOffset, bytes.byteLength));
});
};
function TextView(buffer, byteOffset, byteLength) {
this.dataView = new... | define(['mac/roman'], function(macRoman) {
'use strict';
function open(item) {
return item.getBytes().then(function(bytes) {
item.setDataObject(new TextView(bytes.buffer, bytes.byteOffset, bytes.byteLength));
});
};
function TextView(buffer, byteOffset, byteLength) {
this.dataView = new... | Put in missing bytes field | Put in missing bytes field | JavaScript | mit | radishengine/drowsy,radishengine/drowsy | ---
+++
@@ -10,6 +10,7 @@
function TextView(buffer, byteOffset, byteLength) {
this.dataView = new DataView(buffer, byteOffset, byteLength);
+ this.bytes = new Uint8Array(buffer, byteOffset, byteLength);
};
TextView.prototype = {
toJSON: function() { |
6143f9ef9701b92ec38aa12f4be2b1c94e4394cd | app/models/user.js | app/models/user.js | var Bcrypt = require('bcryptjs')
var Mongoose = require('../../database').Mongoose
var ObjectId = Mongoose.Schema.Types.ObjectId;
var userSchema = new Mongoose.Schema({
username: {
type : String,
required: true
},
password: {
type : String,
required: true
},
email: {
type : String,
r... | var Bcrypt = require('bcryptjs')
var Mongoose = require('../../database').Mongoose
var ObjectId = Mongoose.Schema.Types.ObjectId;
var userSchema = new Mongoose.Schema({
username: {
type : String,
required: true
},
password: {
type : String,
required: true
},
email: {
type : String,
r... | Change mixed type to array json | Change mixed type to array json
| JavaScript | mit | fitraditya/Obrel | ---
+++
@@ -24,7 +24,10 @@
type : Date,
default: Date.now
},
- channels: [Mongoose.Schema.Types.Mixed]
+ channels: [{
+ type: ObjectId,
+ ref: 'Channel'
+ }]
})
userSchema.pre('save', function (next) { |
f345e428c9d7766ee5945f1d1d2cbb6e64c24ce4 | assets/js/index.js | assets/js/index.js | new Vue({
el: '#app',
delimiters: ['[[', ']]'],
data: {
search: '',
activeNote: window.location.href.split('#')[1]
},
methods: {
seeNote: function (note) {
this.activeNote = note
}
},
updated: function () {
var ulElem
for (var refName in this.$refs) {
ulElem = this.$ref... | new Vue({
el: '#app',
delimiters: ['[[', ']]'],
data: {
search: '',
activeNote: window.location.href.split('#')[1]
},
methods: {
seeNote: function (note) {
this.activeNote = note
}
},
updated: function () {
var ulElem
for (var refName in this.$refs) {
ulElem = this.$ref... | Improve automatic focus to the search input | Improve automatic focus to the search input
| JavaScript | mit | Yutsuten/Yutsuten.github.io,Yutsuten/Yutsuten.github.io,Yutsuten/Yutsuten.github.io | ---
+++
@@ -25,11 +25,11 @@
},
mounted: function () {
window.addEventListener('keydown', function(e) {
- // Autofocus only on backspace and letters
- if (e.keyCode !== 8 && (e.keyCode < 65 || e.keyCode > 90)) {
- return;
- }
- if (document.activeElement.id !== 'search') {
+ ... |
561c08e0ccf70290b5c6c098b4a4b77fd5756b51 | Resources/Plugins/.debug/browser.js | Resources/Plugins/.debug/browser.js | enabled(){
this.isDebugging = false;
this.onKeyDown = (e) => {
// ==========================
// F4 key - toggle debug mode
// ==========================
if (e.keyCode === 115){
this.isDebugging = !this.isDebugging;
$(".app-title").first().css("background-color", this.isDebugging ... | enabled(){
this.isDebugging = false;
this.onKeyDown = (e) => {
// ==========================
// F4 key - toggle debug mode
// ==========================
if (e.keyCode === 115){
this.isDebugging = !this.isDebugging;
$(".nav-user-info").first().css("background-color", this.isDebugg... | Fix debug plugin after hiding app title | Fix debug plugin after hiding app title
| JavaScript | mit | chylex/TweetDuck,chylex/TweetDuck,chylex/TweetDuck,chylex/TweetDuck | ---
+++
@@ -8,7 +8,7 @@
if (e.keyCode === 115){
this.isDebugging = !this.isDebugging;
- $(".app-title").first().css("background-color", this.isDebugging ? "#5A6B75" : "#292F33");
+ $(".nav-user-info").first().css("background-color", this.isDebugging ? "#5A6B75" : "#292F33");
}
... |
7249234061e8791ccbee5d0e3b8578d8595e43f8 | tests/unit/classes/ModuleLoader.js | tests/unit/classes/ModuleLoader.js | var utils = require('utils')
, env = utils.bootstrapEnv()
, moduleLdr = env.moduleLoader
, injector = require('injector')
, ncp = require('ncp')
, path = require('path')
, async = require('async');
describe('ModuleLoader', function() {
before(function(done) {
... | var utils = require('utils')
, env = utils.bootstrapEnv()
, moduleLdr = env.moduleLoader
, injector = require('injector')
, ncp = require('ncp')
, path = require('path')
, async = require('async');
describe('ModuleLoader', function() {
it('should load modules', fu... | Remove old code for copying test-module | chore(cleanup): Remove old code for copying test-module | JavaScript | mit | CleverStack/node-seed | ---
+++
@@ -7,14 +7,6 @@
, async = require('async');
describe('ModuleLoader', function() {
-
- before(function(done) {
- var source = path.resolve(__dirname, '..', 'test-module')
- , dest = path.resolve(__dirname, '..', '..', '..', 'modules', 'test-module');
-
- // Copy the test-module int... |
021c5e27be8e909bd7a56fc794e9a9d6c15cef9a | utilities/execution-environment.js | utilities/execution-environment.js | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */
/* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */
const canUseDOM = !!(
typeof window !== 'undefined' &&
window.document &&
window.document.createElement
);
const ExecutionEnvironment = {
canUseDOM,
canUseWorkers:... | /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */
/* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */
const canUseDOM = !!(
typeof window !== 'undefined' &&
window.document &&
window.document.createElement
);
const canUseWorkers = typeof Worker !== 'undefined';
const ... | Change exports for Execution Environment | Change exports for Execution Environment
This reverts the export which is resulting in canUseDOM’s value equaling undefined.
| JavaScript | bsd-3-clause | salesforce/design-system-react,salesforce/design-system-react,salesforce/design-system-react | ---
+++
@@ -6,13 +6,13 @@
window.document &&
window.document.createElement
);
+const canUseWorkers = typeof Worker !== 'undefined';
+const canUseEventListeners = canUseDOM && !!(window.addEventListener || window.attachEvent);
+const canUseViewport = canUseDOM && !!window.screen;
-const ExecutionEnvironment = {... |
2d3838b5391f65fd7abc4975eb0eb153f54386db | lib/sort_versions.js | lib/sort_versions.js | 'use strict';
var Semvish = require('semvish');
module.exports = function(arr) {
if(!arr) {
return;
}
return arr.slice().sort(Semvish.compare).reverse();
};
| 'use strict';
var Semvish = require('semvish');
module.exports = function(arr) {
if(!arr) {
return;
}
return arr.slice().sort(Semvish.rcompare);
};
| Use rcomp instead of .reverse() in sort | Use rcomp instead of .reverse() in sort
| JavaScript | mit | MartinKolarik/api-sync,jsdelivr/api-sync,MartinKolarik/api-sync,jsdelivr/api-sync | ---
+++
@@ -8,5 +8,5 @@
return;
}
- return arr.slice().sort(Semvish.compare).reverse();
+ return arr.slice().sort(Semvish.rcompare);
}; |
4d04ef3b914405a29f42a07e8652967146fbefe6 | static/js/main.js | static/js/main.js | require.config({
paths: {
jquery: "/static/js/libs/jquery-min",
underscore: "/static/js/libs/underscore-min",
backbone: "/static/js/libs/backbone-min",
mustache: "/static/js/libs/mustache",
},
shim: {
jquery: {
exports: "$"
},
underscore: {... | require.config({
paths: {
jquery: "/static/js/libs/jquery-min",
underscore: "/static/js/libs/underscore-min",
backbone: "/static/js/libs/backbone-min",
mustache: "/static/js/libs/mustache",
},
shim: {
jquery: {
exports: "$"
},
underscore: {... | Add dummy param to break caching | Add dummy param to break caching
| JavaScript | mit | jasontbradshaw/multivid,jasontbradshaw/multivid | ---
+++
@@ -16,7 +16,10 @@
deps: ["underscore", "jquery"],
exports: "Backbone"
}
- }
+ },
+
+ // add dummy params to break caching
+ urlArgs: "__nocache__=" + (new Date()).getTime()
});
require(["jquery", "underscore","backbone", "mustache"], |
de03d876a5ddd7e82627441219d446e9f0d64275 | server/controllers/students.js | server/controllers/students.js | //var Teachers = require('../models/teachers');
//var TeacherClasses = require('../models/Teacher_classes');
//var Classes = require('../models/classes');
//var ClassLessons = require('../models/class_lessons');
// var Lessons = require('../models/lessons');
//var RequestedResponses = require('../models/requested_respo... | //var Teachers = require('../models/teachers');
//var TeacherClasses = require('../models/Teacher_classes');
//var Classes = require('../models/classes');
//var ClassLessons = require('../models/class_lessons');
// var Lessons = require('../models/lessons');
//var RequestedResponses = require('../models/requested_respo... | Remove teacherConnect socket event for frontend handling | Remove teacherConnect socket event for frontend handling
| JavaScript | mit | shanemcgraw/thumbroll,Jakeyrob/thumbroll,absurdSquid/thumbroll,absurdSquid/thumbroll,Jakeyrob/thumbroll,Jakeyrob/thumbroll,shanemcgraw/thumbroll,shanemcgraw/thumbroll | ---
+++
@@ -21,10 +21,6 @@
student.emit('studentStandby', studentInformation);
- student.on('teacherConnect', function() {
- student.emit('teacherConnect');
- });
-
student.on('newPoll', function(data) {
student.emit(data);
});
@@ -34,6 +30,6 @@
}, 5000)... |
6d5ba4db94939c5f29451df363c9f6afd9740779 | src/assets/dosamigos-ckeditor.widget.js | src/assets/dosamigos-ckeditor.widget.js | /**
* @copyright Copyright (c) 2012-2015 2amigOS! Consulting Group LLC
* @link http://2amigos.us
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
*/
if (typeof dosamigos == "undefined" || !dosamigos) {
var dosamigos = {};
}
dosamigos.ckEditorWidget = (function ($) {
var pub = ... | /**
* @copyright Copyright (c) 2012-2015 2amigOS! Consulting Group LLC
* @link http://2amigos.us
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
*/
if (typeof dosamigos == "undefined" || !dosamigos) {
var dosamigos = {};
}
dosamigos.ckEditorWidget = (function ($) {
var pub = ... | Fix bug with csrf token | Fix bug with csrf token
| JavaScript | bsd-3-clause | yangtoude/yii2-ckeditor-widget,richardfan1126/yii2-ckeditor-widget,alexdin/yii2-ckeditor-widget,richardfan1126/yii2-ckeditor-widget,richardfan1126/yii2-ckeditor-widget,yangtoude/yii2-ckeditor-widget,alexdin/yii2-ckeditor-widget,yangtoude/yii2-ckeditor-widget | ---
+++
@@ -18,7 +18,7 @@
});
},
registerCsrfImageUploadHandler: function () {
- yii & $(document).off('click', '.cke_dialog_tabs a:eq(2)').on('click', '.cke_dialog_tabs a:eq(2)', function () {
+ yii & $(document).off('click', '.cke_dialog_tabs a:eq(1), .cke_dialog... |
55b2c19f6abe49e242a87853250d7da3dec26762 | route-urls.js | route-urls.js | var m = angular.module("routeUrls", []);
m.factory("urls", function($route) {
var pathsByName = {};
angular.forEach($route.routes, function (route, path) {
if (route.name) {
pathsByName[route.name] = path;
}
});
var regexs = {};
var path = function (name, params) {
... | var m = angular.module("routeUrls", []);
m.factory("urls", function($route) {
var pathsByName = {};
angular.forEach($route.routes, function (route, path) {
if (route.name) {
pathsByName[route.name] = path;
}
});
var regexs = {};
var path = function (name, params) {
... | Resolve regex forward lookahead issue | Resolve regex forward lookahead issue | JavaScript | mit | emgee/angular-route-urls,emgee/angular-route-urls | ---
+++
@@ -17,7 +17,7 @@
var regex = regexs[key];
if (regex === undefined) {
- regex = regexs[key] = new RegExp(":" + key + "(/|$)");
+ regex = regexs[key] = new RegExp(":" + key + "(?=/|$)");
}
url = url.replace(regex, value);
... |
44200ed7deeb5ef12932b2f82f791643e16939a7 | match-highlighter.js | match-highlighter.js | function MatchHighlighter() {
'use strict';
const mergeRanges = function(indexes) {
return indexes.reduce(function(obj, index, pos) {
const prevIndex = indexes[pos - 1] || 0;
const currentIndex = indexes[pos];
const nextIndex = indexes[pos + 1] || 0;
if ... | function MatchHighlighter() {
'use strict';
const mergeRanges = function(indexes) {
return indexes.reduce(function(obj, index, pos) {
const prevIndex = indexes[pos - 1] || 0;
const currentIndex = indexes[pos];
const nextIndex = indexes[pos + 1] || 0;
if ... | Fix off-by-one error in match highlighter | Fix off-by-one error in match highlighter
| JavaScript | mit | YurySolovyov/fuzzymark,YurySolovyov/fuzzymark,YuriSolovyov/fuzzymark,YuriSolovyov/fuzzymark | ---
+++
@@ -10,7 +10,7 @@
if (currentIndex === nextIndex - 1 || currentIndex === prevIndex + 1 || indexes.length === 1) {
obj.ranges[obj.rangeIndex].push(currentIndex);
} else if (currentIndex > 0 && indexes.length > 1) {
- obj.rangeIndex = obj.ranges.push([cu... |
d213fa0c22440904b526a1793464dc3e5d69b980 | src/components/video_list.js | src/components/video_list.js | import React from 'react';
import VideoListItem from './video_list_item';
const VideoList = (props) => {
const videoItems = props.videos.map((video) => {
return <VideoListItem video = {video} />
});
return (
<ul className="col-md-4 list-group">
{videoItems}
</ul>
);
}
export default VideoLi... | Add functionality to VideoList component | Add functionality to VideoList component
| JavaScript | mit | izabelka/redux-simple-starter,izabelka/redux-simple-starter | ---
+++
@@ -0,0 +1,16 @@
+import React from 'react';
+import VideoListItem from './video_list_item';
+
+const VideoList = (props) => {
+ const videoItems = props.videos.map((video) => {
+ return <VideoListItem video = {video} />
+ });
+
+ return (
+ <ul className="col-md-4 list-group">
+ {videoItems}
+ ... | |
28948b82be7d6da510d0afce5aa8d839df0ab1b0 | test/main_spec.js | test/main_spec.js | let chai = require('chai')
let chaiHttp = require('chai-http')
let server = require('../src/main.js')
import {expect} from 'chai'
chai.use(chaiHttp)
describe('server', () => {
before( () => {
server.listen();
})
after( () => {
server.close();
})
describe('/', () => {
it('should return 200', (do... | let chai = require('chai')
let chaiHttp = require('chai-http')
let server = require('../src/main.js')
import {expect} from 'chai'
chai.use(chaiHttp)
describe('server', () => {
before( () => {
server.listen();
})
after( () => {
server.close();
})
describe('/', () => {
it('should return 200', (do... | Remove logging from server test | Remove logging from server test
| JavaScript | mit | GLNRO/react-redux-threejs,GLNRO/react-redux-threejs | ---
+++
@@ -18,7 +18,6 @@
chai.request(server)
.get('/')
.end((err, res) => {
- console.log(res);
expect(res.status).to.equal(200);
expect(res.text).to.equal('Node.js Server is running');
server.close(); |
68eceecffb4ea457fe92d623f5722fd25c09e718 | src/js/routers/app-router.js | src/js/routers/app-router.js | import * as Backbone from 'backbone';
import Items from '../collections/items';
import SearchBoxView from '../views/searchBox-view';
import SearchResultsView from '../views/searchResults-view';
import AppView from '../views/app-view';
import DocumentSet from '../helpers/search';
import dispatcher from '../helpers/dispa... | import * as Backbone from 'backbone';
import Items from '../collections/items';
import SearchBoxView from '../views/searchBox-view';
import SearchResultsView from '../views/searchResults-view';
import AppView from '../views/app-view';
import Events from '../helpers/backbone-events';
import DocumentSet from '../helpers/... | Use Events instead of custom dispatcher (more) | Use Events instead of custom dispatcher (more)
| JavaScript | mit | trevormunoz/katherine-anne,trevormunoz/katherine-anne,trevormunoz/katherine-anne | ---
+++
@@ -3,8 +3,8 @@
import SearchBoxView from '../views/searchBox-view';
import SearchResultsView from '../views/searchResults-view';
import AppView from '../views/app-view';
+import Events from '../helpers/backbone-events';
import DocumentSet from '../helpers/search';
-import dispatcher from '../helpers/disp... |
b4b22938c6feba84188859e522f1b44c274243db | src/modules/workshop/workshop.routes.js | src/modules/workshop/workshop.routes.js | // Imports
import UserRoles from '../../core/auth/constants/userRoles';
import WorkshopController from './workshop.controller';
import WorkshopHeaderController from './workshop-header.controller';
import { workshop } from './workshop.resolve';
import { carBrands } from '../home/home.resolve';
/**
* @ngInject
* @para... | // Imports
import UserRoles from '../../core/auth/constants/userRoles';
import WorkshopController from './workshop.controller';
import WorkshopHeaderController from './workshop-header.controller';
import { workshop } from './workshop.resolve';
import { carBrands } from '../home/home.resolve';
/**
* @ngInject
* @para... | Set action to information when routing to workshop details | Set action to information when routing to workshop details
| JavaScript | mit | ProtaconSolutions/Poc24h-January2017-FrontEnd,ProtaconSolutions/Poc24h-January2017-FrontEnd | ---
+++
@@ -8,8 +8,9 @@
/**
* @ngInject
* @param RouterHelper
+ * @param WorkshopSharedDataService
*/
-export default function routing(RouterHelper) {
+export default function routing(RouterHelper, WorkshopSharedDataService) {
const states = [{
state: 'modules.workshop',
config: {
@@ -30,6 +31,10 ... |
f7dfb99616f47561d83f9609c8a32fd6275a053c | src/components/CategoryBody.js | src/components/CategoryBody.js | /**
* Created by farid on 8/16/2017.
*/
import React, {Component} from "react";
import Post from "./Post";
import PropTypes from 'prop-types';
class CategoryBody extends Component {
render() {
return (
<div className="card-body">
<div className="row">
{
... | /**
* Created by farid on 8/16/2017.
*/
import React, {Component} from "react";
import Post from "./Post";
import PropTypes from 'prop-types';
class CategoryBody extends Component {
render() {
return (
<div className="card-body">
<div className="row">
{
... | Enable delete and update post on home page | feat: Enable delete and update post on home page
| JavaScript | mit | faridsaud/udacity-readable-project,faridsaud/udacity-readable-project | ---
+++
@@ -14,8 +14,8 @@
<div className="row">
{
this.props.posts.map((post, index) => (
- <div className="col-md-4" key={index}>
- <Post post={post}/>
+ <div className=... |
f49ab42589462d519c4304f9c3014a8d5f04e1b3 | native/components/safe-area-view.react.js | native/components/safe-area-view.react.js | // @flow
import * as React from 'react';
import { SafeAreaView } from 'react-navigation';
const forceInset = { top: 'always', bottom: 'never' };
type Props = {|
style?: $PropertyType<React.ElementConfig<typeof SafeAreaView>, 'style'>,
children?: React.Node,
|};
function InsetSafeAreaView(props: Props) {
const ... | // @flow
import type { ViewStyle } from '../types/styles';
import * as React from 'react';
import { View } from 'react-native';
import { useSafeArea } from 'react-native-safe-area-context';
type Props = {|
style?: ViewStyle,
children?: React.Node,
|};
function InsetSafeAreaView(props: Props) {
const insets = u... | Update SafeAreaView for React Nav 5 | [native] Update SafeAreaView for React Nav 5
Can't import directly from React Nav anymore, using `react-native-safe-area-context` now
| JavaScript | bsd-3-clause | Ashoat/squadcal,Ashoat/squadcal,Ashoat/squadcal,Ashoat/squadcal,Ashoat/squadcal,Ashoat/squadcal,Ashoat/squadcal | ---
+++
@@ -1,20 +1,25 @@
// @flow
+import type { ViewStyle } from '../types/styles';
+
import * as React from 'react';
-import { SafeAreaView } from 'react-navigation';
-
-const forceInset = { top: 'always', bottom: 'never' };
+import { View } from 'react-native';
+import { useSafeArea } from 'react-native-safe-... |
7afb5342fb92ed902b962a3324f731833a1cdb00 | client/userlist.js | client/userlist.js | var UserList = React.createClass({
componentDidMount: function() {
socket.on('join', this._join);
socket.on('part', this._part);
},
render: function() {
return (
<ul id='online-list'></ul>
);
},
_join: function(username) {
if (username != myUsernam... | var UserList = React.createClass({
componentDidMount: function() {
socket.on('join', this._join);
socket.on('part', this._part);
},
render: function() {
return (
<ul id='online-list'></ul>
);
},
_join: function(username) {
if (username != myUsernam... | Create prototype react component for user in list | Create prototype react component for user in list
| JavaScript | mit | mbalamat/ting,odyvarv/ting-1,gtklocker/ting,gtklocker/ting,mbalamat/ting,sirodoht/ting,dionyziz/ting,VitSalis/ting,gtklocker/ting,gtklocker/ting,odyvarv/ting-1,sirodoht/ting,sirodoht/ting,dionyziz/ting,dionyziz/ting,odyvarv/ting-1,mbalamat/ting,mbalamat/ting,dionyziz/ting,odyvarv/ting-1,VitSalis/ting,VitSalis/ting,VitS... | ---
+++
@@ -19,4 +19,14 @@
}).parent().remove();
}
});
+
+var User = React.createClass({
+ render: function() {
+ return (
+ <li>
+ </li>
+ )
+ }
+});
+
React.render(<UserList />, document.getElementsByClassName('nicklist')[0]); |
f26e7eb203948d7fff0d0c44a34a675d0631adcf | trace/snippets.js | trace/snippets.js | /**
* Copyright 2017, Google, Inc.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... | /**
* Copyright 2017, Google, Inc.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... | Fix type on region tag | Fix type on region tag | JavaScript | apache-2.0 | JustinBeckwith/nodejs-docs-samples,thesandlord/nodejs-docs-samples,thesandlord/nodejs-docs-samples,JustinBeckwith/nodejs-docs-samples,GoogleCloudPlatform/nodejs-docs-samples,GoogleCloudPlatform/nodejs-docs-samples,GoogleCloudPlatform/nodejs-docs-samples,JustinBeckwith/nodejs-docs-samples,GoogleCloudPlatform/nodejs-docs... | ---
+++
@@ -20,4 +20,4 @@
projectId: 'your-project-id',
keyFilename: '/path/to/key.json'
});
-// [END trace_setup_explicity]
+// [END trace_setup_explicit] |
0c2e8d75c01e8032adcde653a458528db0683c44 | karma.conf.js | karma.conf.js | module.exports = function(config){
config.set({
basePath : './',
files : [
'app/bower_components/angular/angular.js',
'app/bower_components/angular-route/angular-route.js',
'app/bower_components/angular-mocks/angular-mocks.js',
'app/components/**/*.js',
'app/view*/**/*.js'
... | module.exports = function(config){
config.set({
basePath : './',
files : [
'app/bower_components/angular/angular.js',
'app/bower_components/angular-route/angular-route.js',
'app/bower_components/angular-mocks/angular-mocks.js',
'app/components/**/*.js',
'app/view*/**/*.js'
... | Change karma to run both Firefox and Chrome. | Change karma to run both Firefox and Chrome.
I have both, I care about both, so run both!
| JavaScript | agpl-3.0 | CCJ16/registration,CCJ16/registration,CCJ16/registration | ---
+++
@@ -15,7 +15,7 @@
frameworks: ['jasmine'],
- browsers : ['Chrome'],
+ browsers : ['Chrome', 'Firefox'],
plugins : [
'karma-chrome-launcher', |
a783fbcd8bcff07672e64ada1f75c7290c9a765a | src/chrome/index.js | src/chrome/index.js | /* eslint-disable no-console */
import { CONFIG } from '../constants';
import { Socket } from 'phoenix';
import { startPlugin } from '..';
import listenAuth from './listenAuth';
import handleNotifications from './handleNotifications';
import handleWork from './handleWork';
import renderIcon from './renderIcon';
export... | /* eslint-disable no-console */
import { CONFIG } from '../constants';
import { Socket } from 'phoenix';
import { startPlugin } from '..';
import listenAuth from './listenAuth';
import handleNotifications from './handleNotifications';
import handleWork from './handleWork';
import renderIcon from './renderIcon';
export... | Add plugin state to logging | Add plugin state to logging
| JavaScript | mit | rainforestapp/tester-chrome-extension,rainforestapp/tester-chrome-extension,rainforestapp/tester-chrome-extension | ---
+++
@@ -23,8 +23,10 @@
// redux dev tools don't work with the plugin, so we have a dumb
// replacement.
store.subscribe(() => {
- const { worker, socket } = store.getState();
- console.log('Worker:', worker.toJS(), 'Socket:', socket.toJS());
+ const { worker, socket, plugin: pluginSt... |
51cebb77df8d4eec12da134b765d5fe046eefeda | karma.conf.js | karma.conf.js | var istanbul = require('browserify-istanbul');
var isparta = require('isparta');
module.exports = function (config) {
'use strict';
config.set({
browsers: [
'Chrome',
'Firefox',
'Safari',
'Opera'
],
reporters: ['progress', 'notify', 'cov... | var istanbul = require('browserify-istanbul');
var isparta = require('isparta');
module.exports = function (config) {
'use strict';
config.set({
browsers: [
//'PhantomJS',
'Chrome',
'Firefox',
'Safari',
'Opera'
],
reporters: ... | Set log level. PhantomJS off. | Set log level. PhantomJS off.
| JavaScript | mit | ekazakov/dumpjs | ---
+++
@@ -7,6 +7,7 @@
config.set({
browsers: [
+ //'PhantomJS',
'Chrome',
'Firefox',
'Safari',
@@ -46,6 +47,8 @@
notifyReporter: {
reportEachFailure: true,
reportSuccess: true
- }
+ },
+
+ logLe... |
b4cd7c829a7d17888902f5468d4ea0a0f1084c42 | src/common/Popup.js | src/common/Popup.js | /* @flow */
import React, { PureComponent } from 'react';
import type { ChildrenArray } from 'react';
import { View, Dimensions, StyleSheet } from 'react-native';
const styles = StyleSheet.create({
popup: {
marginRight: 20,
marginLeft: 20,
marginBottom: 2,
bottom: 0,
borderRadius: 5,
shadowOp... | /* @flow */
import React, { PureComponent } from 'react';
import type { ChildrenArray } from 'react';
import { View, StyleSheet } from 'react-native';
const styles = StyleSheet.create({
popup: {
marginRight: 20,
marginLeft: 20,
marginBottom: 2,
bottom: 0,
borderRadius: 5,
shadowOpacity: 0.25,... | Remove extraneous `maxHeight` prop on a `View`. | popup: Remove extraneous `maxHeight` prop on a `View`.
This is not a prop that the `View` component supports. It has never
had any effect, and the Flow 0.75 we'll pull in with RN 0.56 will
register it as an error.
This prop was added in commit ce0395cff when changing the component
used here to a `ScrollView`, and 62... | JavaScript | apache-2.0 | vishwesh3/zulip-mobile,vishwesh3/zulip-mobile,vishwesh3/zulip-mobile,vishwesh3/zulip-mobile | ---
+++
@@ -1,7 +1,7 @@
/* @flow */
import React, { PureComponent } from 'react';
import type { ChildrenArray } from 'react';
-import { View, Dimensions, StyleSheet } from 'react-native';
+import { View, StyleSheet } from 'react-native';
const styles = StyleSheet.create({
popup: {
@@ -27,12 +27,8 @@
};
... |
c6d77a8570bbd3592acc1430672e57219f418072 | Libraries/Utilities/PerformanceLoggerContext.js | Libraries/Utilities/PerformanceLoggerContext.js | /**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict-local
* @format
*/
import * as React from 'react';
import {useContext} from 'react';
import GlobalPerformanceLogg... | /**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict
* @format
*/
import * as React from 'react';
import {useContext} from 'react';
import GlobalPerformanceLogger fro... | Make some modules flow strict | Make some modules flow strict
Summary:
TSIA
Changelog: [Internal]
Reviewed By: mdvacca
Differential Revision: D28412774
fbshipit-source-id: 899a78e573bb49633690275052d5e7cb069327fb
| JavaScript | mit | facebook/react-native,myntra/react-native,facebook/react-native,pandiaraj44/react-native,myntra/react-native,janicduplessis/react-native,javache/react-native,myntra/react-native,javache/react-native,pandiaraj44/react-native,javache/react-native,javache/react-native,janicduplessis/react-native,janicduplessis/react-nativ... | ---
+++
@@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
- * @flow strict-local
+ * @flow strict
* @format
*/
|
752c2c39790cf1ffb1e97850991d2f13c25f92b8 | src/config/babel.js | src/config/babel.js | // External
const mem = require('mem');
// Ours
const { merge } = require('../utils/structures');
const { getProjectConfig } = require('./project');
const PROJECT_TYPES_CONFIG = {
preact: {
plugins: [
[
require.resolve('@babel/plugin-transform-react-jsx'),
{
pragma: 'h'
}... | // External
const mem = require('mem');
// Ours
const { merge } = require('../utils/structures');
const { getProjectConfig } = require('./project');
const PROJECT_TYPES_CONFIG = {
preact: {
plugins: [
[
require.resolve('@babel/plugin-transform-react-jsx'),
{
pragma: 'h'
}... | Update target browsers. IE 11 needs to be manually specified now becuase it's dropped below 1% in Australia, but is still supported by ABC. | Update target browsers. IE 11 needs to be manually specified now becuase it's dropped below 1% in Australia, but is still supported by ABC.
| JavaScript | mit | abcnews/aunty,abcnews/aunty,abcnews/aunty | ---
+++
@@ -32,8 +32,8 @@
{
targets: {
browsers: isModernJS
- ? ['Chrome >= 76', 'Safari >= 12.1', 'iOS >= 12.3', 'Firefox >= 69', 'Edge >= 18']
- : pkg.browserslist || ['> 1% in au', '> 5%', 'Firefox ESR']
+ ? ['Chrome >= 80', 'Safar... |
2525fe4097ff124239ed56956209d4d0ffefac27 | test/unit/util/walk-tree.js | test/unit/util/walk-tree.js | import walkTree from '../../../src/util/walk-tree';
describe('utils/walk-tree', function () {
it('should walk parents before walking descendants', function () {
var order = [];
var one = document.createElement('one');
one.innerHTML = '<two><three></three></two>';
walkTree(one, function (elem) {
... | import walkTree from '../../../src/util/walk-tree';
describe('utils/walk-tree', function () {
var one, order;
beforeEach(function () {
order = [];
one = document.createElement('one');
one.innerHTML = '<two><three></three></two>';
});
it('should walk parents before walking descendants', function (... | Write test for walkTre() filter. | Write test for walkTre() filter.
| JavaScript | mit | skatejs/skatejs,antitoxic/skatejs,chrisdarroch/skatejs,skatejs/skatejs,skatejs/skatejs,chrisdarroch/skatejs | ---
+++
@@ -1,18 +1,33 @@
import walkTree from '../../../src/util/walk-tree';
describe('utils/walk-tree', function () {
+ var one, order;
+
+ beforeEach(function () {
+ order = [];
+ one = document.createElement('one');
+ one.innerHTML = '<two><three></three></two>';
+ });
+
it('should walk parents... |
1a07a7c7900cc14582fdaf41a96933d221a439e0 | tests/client/unit/s.Spec.js | tests/client/unit/s.Spec.js | describe('Satellite game', function () {
beforeEach(function () {
});
it('should exists', function () {
expect(s).to.be.an('object');
expect(s).to.have.property('config');
expect(s).to.have.property('init');
});
it('should contains ship properties', function () {
expect(s).to.have.dee... | describe('Satellite game', function () {
it('should exists', function () {
expect(s).to.be.an('object');
expect(s).to.have.property('config');
expect(s).to.have.property('init');
});
it('should contains ship properties', function () {
expect(s).to.have.deep.property('config.ship.hull');
... | Remove unused before each call | Remove unused before each call
| JavaScript | bsd-2-clause | satellite-game/Satellite,satellite-game/Satellite,satellite-game/Satellite | ---
+++
@@ -1,8 +1,4 @@
describe('Satellite game', function () {
- beforeEach(function () {
-
- });
-
it('should exists', function () {
expect(s).to.be.an('object');
expect(s).to.have.property('config'); |
3f934607b9404a5edca6b6a7f68c934d90c899ce | static/js/featured-projects.js | static/js/featured-projects.js | $('.project-toggle-featured').on('click', function() {
const projectId = $(this).data("project-id"),
featured = $(this).data("featured") === "True";
method = featured ? "DELETE" : "POST";
$.ajax({
type: method,
url: `/admin/featured/${projectId}`,
dataType:... | $('.project-toggle-featured').on('click', function() {
const projectId = $(this).data("project-id"),
featured = $(this).val() === "Remove";
method = featured ? "DELETE" : "POST";
$.ajax({
type: method,
url: `/admin/featured/${projectId}`,
dataType: 'json'
... | Update featured projects button text | Update featured projects button text
| JavaScript | bsd-3-clause | LibCrowds/libcrowds-bs4-pybossa-theme,LibCrowds/libcrowds-bs4-pybossa-theme | ---
+++
@@ -1,14 +1,13 @@
$('.project-toggle-featured').on('click', function() {
const projectId = $(this).data("project-id"),
- featured = $(this).data("featured") === "True";
+ featured = $(this).val() === "Remove";
method = featured ? "DELETE" : "POST";
$.ajax({
... |
06e880b204d4b19edb42116d7a7fad85e8889de9 | webpack.common.js | webpack.common.js | var webpack = require('webpack'),
path = require('path'),
CleanWebpackPlugin = require('clean-webpack-plugin');
var libraryName = 'webstompobs',
dist = '/dist';
module.exports = {
entry: __dirname + '/src/index.ts',
context: path.resolve("./src"),
output: {
path: path.join(__dirname, dist),
... | var webpack = require('webpack'),
path = require('path'),
CleanWebpackPlugin = require('clean-webpack-plugin');
var libraryName = 'webstompobs',
dist = '/dist';
module.exports = {
target: 'node',
entry: __dirname + '/src/index.ts',
context: path.resolve("./src"),
output: {
path: path.join(__di... | FIX : Version was not compatible with node | FIX : Version was not compatible with node
Reason : webpack was using window
| JavaScript | apache-2.0 | fpozzobon/webstomp-obs,fpozzobon/webstomp-obs,fpozzobon/webstomp-obs | ---
+++
@@ -6,6 +6,7 @@
dist = '/dist';
module.exports = {
+ target: 'node',
entry: __dirname + '/src/index.ts',
context: path.resolve("./src"),
output: { |
f75613d01d047cfbc5b8cc89154ad6eee64d6155 | lib/Filter.js | lib/Filter.js | import React, { Component, PropTypes } from 'react';
import FormControl from 'react-bootstrap/lib/FormControl';
class Filter extends Component {
constructor(props){
super(props);
this.state = {filterValue : this.props.query};
this.inputChanged = this.inputChanged.bind(this);
}
com... | import React, { Component, PropTypes } from 'react';
import FormControl from 'react-bootstrap/lib/FormControl';
class Filter extends Component {
constructor(props){
super(props);
this.state = {filterValue : this.props.query};
this.inputChanged = this.inputChanged.bind(this);
}
com... | Use single quotes for strings | Use single quotes for strings | JavaScript | mit | eddyson-de/react-grid,eddyson-de/react-grid | ---
+++
@@ -36,7 +36,7 @@
render(){
return(
- <FormControl id={'filter_for_'+this.props.column} type='search' key={this.props.column} value={this.state.filterValue} onChange={this.inputChanged} placeholder={"Filter..."} />
+ <FormControl id={'filter_for_'+this.props.column} type=... |
4c141ac898f6a7bad42db55445bb5fecf99639bd | src/user/user-interceptor.js | src/user/user-interceptor.js | export default function userInterceptor($localStorage){
function request(config){
if(config.headers.Authorization){
return config;
}
if($localStorage.token){
config.headers.Authorization = 'bearer ' + $localStorage.token;
}
return config;
}
return {request};
}
userInterceptor.$inje... | export default function userInterceptor(user){
function request(config){
if(config.headers.Authorization){
return config;
}
if(user.token){
config.headers.Authorization = 'bearer ' + user.token;
}
return config;
}
return {request};
}
userInterceptor.$inject = ['$localStorage'];
| Use user service in interceptor | Use user service in interceptor
| JavaScript | mit | tamaracha/wbt-framework,tamaracha/wbt-framework,tamaracha/wbt-framework | ---
+++
@@ -1,10 +1,10 @@
-export default function userInterceptor($localStorage){
+export default function userInterceptor(user){
function request(config){
if(config.headers.Authorization){
return config;
}
- if($localStorage.token){
- config.headers.Authorization = 'bearer ' + $localStor... |
5841cf3eb49b17d5c851d8e7e2f6b4573b8fe620 | src/components/nlp/template.js | src/components/nlp/template.js | /**
* Created by Tomasz Gabrysiak @ Infermedica on 08/02/2017.
*/
import html from '../../templates/helpers';
const template = (context) => {
return new Promise((resolve) => {
resolve(html`
<h5 class="card-title">Tell us how you feel.</h5>
<div class="card-text">
<form>
<div clas... | /**
* Created by Tomasz Gabrysiak @ Infermedica on 08/02/2017.
*/
import html from '../../templates/helpers';
const template = (context) => {
return new Promise((resolve) => {
resolve(html`
<h5 class="card-title">Tell us how you feel.</h5>
<div class="card-text">
<form>
<div clas... | Fix typos in text about NLP | Fix typos in text about NLP
| JavaScript | mit | infermedica/js-symptom-checker-example,infermedica/js-symptom-checker-example | ---
+++
@@ -18,7 +18,7 @@
<p>Identified observations:</p>
<ul class="list-unstyled" id="observations">
</ul>
- <p class="text-muted small"><i class="fa fa-info-circle"></i> This screen uses our NLP engine to find symptoms in a written text. Evidences found in text will be marked as i... |
434fcc48ae69280d9295327ec6592c462ba55ab3 | webpack.config.js | webpack.config.js | // Used to run webpack dev server to test the demo in local
const webpack = require('webpack');
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = (env, options) => ({
mode: options.mode,
devtool: 'source-map',
entry: path.resolve(__dirname, 'demo/js/de... | // Used to run webpack dev server to test the demo in local
const webpack = require('webpack');
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = (env, options) => ({
mode: options.mode,
devtool: 'source-map',
entry: path.resolve(__dirname, 'demo/js/de... | Fix chunkhash not allowed in development | Fix chunkhash not allowed in development
| JavaScript | mit | springload/react-accessible-accordion,springload/react-accessible-accordion,springload/react-accessible-accordion | ---
+++
@@ -9,7 +9,10 @@
entry: path.resolve(__dirname, 'demo/js/demo.js'),
output: {
path: path.resolve(__dirname, 'pages'),
- filename: '[name][chunkhash].js',
+ filename:
+ options.mode === 'production'
+ ? '[name][chunkhash].js'
+ : '[name]... |
458790663023230f78c75753bb2619bd437c1117 | webpack.config.js | webpack.config.js | const path = require('path');
module.exports = {
entry: {
'acrolinx-sidebar-integration': './src/acrolinx-sidebar-integration.ts',
'tests': './test/index.ts'
},
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/
}
]
},
resolve: ... | const path = require('path');
module.exports = {
entry: {
'acrolinx-sidebar-integration': './src/acrolinx-sidebar-integration.ts',
'tests': './test/index.ts'
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
exclude: /node_modules/,
options: {
... | Use webpack just for transpileOnly of ts to js. | Use webpack just for transpileOnly of ts to js.
Type checking is done by IDE, npm run tscWatch or build anyway.
| JavaScript | apache-2.0 | acrolinx/acrolinx-sidebar-demo | ---
+++
@@ -9,8 +9,11 @@
rules: [
{
test: /\.tsx?$/,
- use: 'ts-loader',
- exclude: /node_modules/
+ loader: 'ts-loader',
+ exclude: /node_modules/,
+ options: {
+ transpileOnly: true
+ }
}
]
}, |
3f2d406174bdeec38478bf1cb342266a0c1c6554 | webpack.config.js | webpack.config.js | var webpack = require('webpack')
module.exports = {
entry: {
ui: './lib/ui/main.js',
vendor: ['react', 'debug']
},
output: {
path: 'dist',
filename: '[name].js'
},
module: {
loaders: [
{test: /\.jsx?$/, exclude: /node_modules/, loader: 'babel'},
{test: /\.json$/, loader: 'json... | var webpack = require('webpack')
module.exports = {
entry: {
ui: './lib/ui/main.js',
vendor: ['react', 'debug', 'd3', 'react-bootstrap']
},
output: {
path: 'dist',
filename: '[name].js'
},
module: {
loaders: [
{test: /\.jsx?$/, exclude: /node_modules/, loader: 'babel'},
{test:... | Move stuff to vendor bundle | Move stuff to vendor bundle
| JavaScript | apache-2.0 | SignalK/instrumentpanel,SignalK/instrumentpanel | ---
+++
@@ -3,7 +3,7 @@
module.exports = {
entry: {
ui: './lib/ui/main.js',
- vendor: ['react', 'debug']
+ vendor: ['react', 'debug', 'd3', 'react-bootstrap']
},
output: {
path: 'dist', |
a6854e7f88a94b09a0f15400463af8693249de09 | lib/config.js | lib/config.js | 'use strict'
const path = require('path')
const nconf = require('nconf')
const defaults = {
port: 5000,
mongo: {
url: 'mongodb://localhost/link-analyzer',
},
redis: {
host: 'localhost',
port: 6379,
},
kue: {
prefix: 'q',
},
}
nconf
.file({ file: path.join(__dirname, '..', 'config... | 'use strict'
const path = require('path')
const nconf = require('nconf')
const defaults = {
port: 6000,
mongo: {
url: 'mongodb://localhost/link-analyzer',
},
redis: {
host: 'localhost',
port: 6379,
},
kue: {
prefix: 'q',
},
}
nconf
.file({ file: path.join(__dirname, '..', 'config... | Change default port to 6000 as specified in geogw | Change default port to 6000 as specified in geogw
| JavaScript | mit | inspireteam/link-analyzer | ---
+++
@@ -5,7 +5,7 @@
const defaults = {
- port: 5000,
+ port: 6000,
mongo: {
url: 'mongodb://localhost/link-analyzer', |
a752e6c1c2eadfaf2a278c7d5ee7f0494b8ed163 | lib/batch/translator.js | lib/batch/translator.js | function Translator(domain) {
this.domain = domain;
this.init();
}
Translator.prototype = {
TYPE_ADD: 'add',
MAPPED_FIELDS: {
'id': '_key'
},
init: function() {
this.table = this.getTableName(this.domain);
},
getTableName: function(domain) {
return domain;
},
translate: function(batch)... | function Translator(domain) {
this.domain = domain;
this.init();
}
Translator.prototype = {
TYPE_ADD: 'add',
MAPPED_FIELDS: {
'id': '_key'
},
init: function() {
this.table = this.getTableName(this.domain);
},
getTableName: function(domain) {
return domain;
},
translate: function(batch)... | Add padding space between table name and loaded data | Add padding space between table name and loaded data
| JavaScript | mit | groonga/gcs,groonga/gcs | ---
+++
@@ -35,7 +35,7 @@
continue;
line[field] = batch.fields[field];
}
- var command = 'load --table ' + this.table + JSON.stringify([line]);
+ var command = 'load --table ' + this.table + ' ' + JSON.stringify([line]);
return command;
}
}; |
ed45aff0857eeac70aef4d339f6f97c805cadc82 | src/model/settings.js | src/model/settings.js | import {Events} from 'tabris';
import {mixin} from './helpers';
const store = {};
class Settings {
get serverUrl() {
return store.serverUrl;
}
set serverUrl(url) {
store.serverUrl = url;
localStorage.setItem('serverUrl', url);
this.trigger('change:serverUrl');
}
load() {
store.serverU... | import {Events} from 'tabris';
import {mixin} from './helpers';
const store = {};
class Settings {
get serverUrl() {
return store.serverUrl;
}
set serverUrl(url) {
store.serverUrl = url;
localStorage.setItem('serverUrl', url);
this.trigger('change:serverUrl');
}
load() {
store.serverU... | Use complete IP address as default | Use complete IP address as default
Work around crash due to tabris-js issue 956
| JavaScript | mit | ralfstx/kitchen-radio-app | ---
+++
@@ -16,7 +16,7 @@
}
load() {
- store.serverUrl = localStorage.getItem('serverUrl') || 'http://192.168.1.';
+ store.serverUrl = localStorage.getItem('serverUrl') || 'http://192.168.1.1';
}
} |
68b7afc956bf0dc2802f266183abb08e9930b3e9 | lib/errors.js | lib/errors.js | var inherits = require('inherits');
var self = module.exports = {
FieldValidationError: FieldValidationError,
ModelValidationError: ModelValidationError,
messages: {
"en-us": {
"generic": "Failed to validate field",
"required": "The field is required",
"wrong_type": "Field value is not o... | var inherits = require('inherits');
var self = module.exports = {
FieldValidationError: FieldValidationError,
ModelValidationError: ModelValidationError,
messages: {
"en-us": {
"generic": "Failed to validate field",
"required": "The field is required",
"wrong_type": "Field value is not o... | Improve formatting of ModelValidationError toString() | Improve formatting of ModelValidationError toString()
| JavaScript | mit | mariocasciaro/minimodel,D4H/minimodel | ---
+++
@@ -20,9 +20,6 @@
}
};
-
-
-
function FieldValidationError(type, params) {
this.type = type || 'generic';
this.params = params;
@@ -33,10 +30,13 @@
inherits(FieldValidationError, Error);
-
function ModelValidationError(errors) {
this.errors = errors;
- this.message = "Error validating t... |
b9129f100079a6bf96d086b95c8f65fa8f82d8d4 | lib/memdash/server/public/charts.js | lib/memdash/server/public/charts.js | $(document).ready(function(){
$.jqplot('gets-sets', [$("#gets-sets").data("gets"), $("#gets-sets").data("sets")], {
title: 'Gets & Sets',
grid: {
drawBorder: false,
shadow: false,
background: '#fefefe'
},
axesDefaults: {
labelRenderer: $.jqplot.CanvasAxisLabelRenderer
},
... | $(document).ready(function(){
$.jqplot('gets-sets', [$("#gets-sets").data("gets"), $("#gets-sets").data("sets")], {
title: 'Gets & Sets',
grid: {
drawBorder: false,
shadow: false,
background: '#fefefe'
},
axesDefaults: {
labelRenderer: $.jqplot.CanvasAxisLabelRenderer
},
... | Set legends and colors of series | Set legends and colors of series
| JavaScript | mit | bryckbost/memdash,bryckbost/memdash | ---
+++
@@ -13,7 +13,15 @@
rendererOptions: {
smooth: true
}
- }
+ },
+ series: [
+ {label: 'Gets'},
+ {label: 'Sets'}
+ ],
+ legend: {
+ show: true
+ },
+ seriesColors: ["rgb(36, 173, 227)", "rgb(227, 36, 132)"]
});
$.jqplot('hits-misses', [$("#hits-misses")... |
bf2db67a14522f853bd0e898286947fdb0ed626b | src/js/constants.js | src/js/constants.js | /* eslint-disable max-len */
import dayjs from "dayjs";
export const GDQ_API_ENDPOINT = "https://api.gdqstat.us";
export const OFFLINE_MODE = true;
const LIVE_STORAGE_ENDPOINT = "https://storage.api.gdqstat.us";
// Note: Keep this up-to-date with the most recent event
export const EVENT_YEAR = 2019;
export const EV... | /* eslint-disable max-len */
import dayjs from "dayjs";
export const GDQ_API_ENDPOINT = "https://api.gdqstat.us";
export const OFFLINE_MODE = true;
const LIVE_STORAGE_ENDPOINT = "https://storage.api.gdqstat.us";
// Note: Keep this up-to-date with the most recent event
export const EVENT_YEAR = 2020;
export const EV... | Fix offline endpoint to point to 2020 instead of 2019 | Fix offline endpoint to point to 2020 instead of 2019
| JavaScript | mit | bcongdon/sgdq-stats,bcongdon/gdq-stats,bcongdon/sgdq-stats,bcongdon/gdq-stats,bcongdon/sgdq-stats | ---
+++
@@ -8,7 +8,7 @@
const LIVE_STORAGE_ENDPOINT = "https://storage.api.gdqstat.us";
// Note: Keep this up-to-date with the most recent event
-export const EVENT_YEAR = 2019;
+export const EVENT_YEAR = 2020;
export const EVENT_SHORT_NAME = "agdq";
export const EVENT_START_DATE = dayjs("01-05-20");
|
24c1af11a108aa8be55337f057b453cb1052cab6 | test/components/Button_test.js | test/components/Button_test.js | // import { test, getRenderedComponent } from '../spec_helper'
// import { default as subject } from '../../src/components/buttons/Button'
// test('#render', (assert) => {
// const button = getRenderedComponent(subject, {className: 'MyButton'}, 'Yo')
// assert.equal(button.type, 'button')
// assert.equal(button.... | import { expect, getRenderedComponent } from '../spec_helper'
import { default as subject } from '../../src/components/buttons/Button'
describe('Button#render', () => {
it('renders correctly', () => {
const button = getRenderedComponent(subject, {className: 'MyButton'}, 'Yo')
expect(button.type).to.equal('bu... | Add back in the button tests | Add back in the button tests | JavaScript | mit | ello/webapp,ello/webapp,ello/webapp | ---
+++
@@ -1,12 +1,13 @@
-// import { test, getRenderedComponent } from '../spec_helper'
-// import { default as subject } from '../../src/components/buttons/Button'
+import { expect, getRenderedComponent } from '../spec_helper'
+import { default as subject } from '../../src/components/buttons/Button'
-// test('#r... |
0178ee1c94589270d78af013cf7ad493de04b637 | src/reducers/index.js | src/reducers/index.js | import { combineReducers } from 'redux'
import { RECEIVE_STOP_DATA } from '../actions'
const cardsReducer = () => {
return {cards: [{name: 'Fruängen', stopId: '9260', updating: false, error: false},{name: 'Slussen', stopId: '9192', updating: false, error: false}]}
}
const stopsReducer = (state, action) => {
switc... | import { combineReducers } from 'redux'
import { RECEIVE_STOP_DATA } from '../actions'
const cardsReducer = () => {
return {cards: [
{
name: 'Fruängen',
stopId: '9260',
updating: false,
error: false,
lines: [{
line: '14',
direction: 1
}]
},
{
name... | Add direction information to cards | Add direction information to cards
| JavaScript | apache-2.0 | Ozzee/sl-departures,Ozzee/sl-departures | ---
+++
@@ -2,15 +2,38 @@
import { RECEIVE_STOP_DATA } from '../actions'
const cardsReducer = () => {
- return {cards: [{name: 'Fruängen', stopId: '9260', updating: false, error: false},{name: 'Slussen', stopId: '9192', updating: false, error: false}]}
+ return {cards: [
+ {
+ name: 'Fruängen',
+ s... |
6648b1b1027a7fcc099f88339b312c7a03de1cd8 | src/server/loggers.js | src/server/loggers.js | 'use strict';
var winston = require('winston');
var expressWinston = require('express-winston');
var requestLogger = expressWinston.logger({
transports: [
new winston.transports.Console({
json: true,
colorize: true
})
],
meta: true,
msg: 'HTTP {{req.method}} {{req.url}}',
expressFormat: ... | 'use strict';
var winston = require('winston');
var expressWinston = require('express-winston');
var requestLogger = expressWinston.logger({
transports: [
new winston.transports.Console({
json: true,
colorize: true
})
],
meta: true,
msg: 'HTTP {{req.method}} {{req.url}}',
expressFormat: ... | Change log level to lowercase | Change log level to lowercase
| JavaScript | mit | rangle/the-clusternator,rafkhan/the-clusternator,bennett000/the-clusternator,alanthai/the-clusternator,rangle/the-clusternator,bennett000/the-clusternator,bennett000/the-clusternator,rangle/the-clusternator,rafkhan/the-clusternator,alanthai/the-clusternator | ---
+++
@@ -33,7 +33,7 @@
},
formatter: function(options) {
// Return string will be passed to logger.
- return options.timestamp() +' '+ options.level.toUpperCase() +' '+ (undefined !== options.message ? options.message : '') +
+ return options.timestamp() +' '+ options.level.toL... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.