diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/batchAntiSpoof.php b/batchAntiSpoof.php
index <HASH>..<HASH> 100644
--- a/batchAntiSpoof.php
+++ b/batchAntiSpoof.php
@@ -12,7 +12,7 @@ $batchSize = 1000;
$result = $dbw->select( 'user', 'user_name', null, 'batchAntiSpoof.php' );
$n = 0;
-foreach( $res as $row ) {
+foreach( $result as $row ) {
if ( $... | followup r<I> typo in var name |
diff --git a/.eslintrc.js b/.eslintrc.js
index <HASH>..<HASH> 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -198,6 +198,7 @@ module.exports = {
'packages/components/**/*',
'packages/composite-checkout/**/*',
'packages/data-stores/**/*',
+ 'packages/js-utils/**/*',
'packages/launch/**/*',
'... | chore: migrate packages/js-utils to import/order (#<I>) |
diff --git a/cmsplugin_cascade/bootstrap3/image.py b/cmsplugin_cascade/bootstrap3/image.py
index <HASH>..<HASH> 100644
--- a/cmsplugin_cascade/bootstrap3/image.py
+++ b/cmsplugin_cascade/bootstrap3/image.py
@@ -24,12 +24,12 @@ class ImageFormMixin(object):
tuple(t for t in getattr(LinkForm, 'LINK_TYPE_CHOICES'... | fixed: image_file initial
The base_fields class attribute is the *class-wide* definition of fields,it will keep previous instance state. if kwargs['instance'].image is None, image_file initial wrong value. |
diff --git a/safe/impact_functions/earthquake/earthquake_building/impact_function.py b/safe/impact_functions/earthquake/earthquake_building/impact_function.py
index <HASH>..<HASH> 100644
--- a/safe/impact_functions/earthquake/earthquake_building/impact_function.py
+++ b/safe/impact_functions/earthquake/earthquake_build... | Remove not affected handling from IF Eq |
diff --git a/py/nupic/encoders/vector.py b/py/nupic/encoders/vector.py
index <HASH>..<HASH> 100644
--- a/py/nupic/encoders/vector.py
+++ b/py/nupic/encoders/vector.py
@@ -125,10 +125,10 @@ class VectorEncoderOPF(VectorEncoder):
###########################################################################################... | SimpleVector: make little more customizable |
diff --git a/lib/responders/flash_responder.rb b/lib/responders/flash_responder.rb
index <HASH>..<HASH> 100644
--- a/lib/responders/flash_responder.rb
+++ b/lib/responders/flash_responder.rb
@@ -86,6 +86,9 @@ module Responders
mattr_accessor :flash_keys
@@flash_keys = [ :notice, :alert ]
+ mattr_reader :... | Caching helper as a class variable. |
diff --git a/context/context.go b/context/context.go
index <HASH>..<HASH> 100644
--- a/context/context.go
+++ b/context/context.go
@@ -451,6 +451,10 @@ func (ctx *Context) ModifyImport(ps *pkgspec.Pkg, mod Modify) error {
}
}
+ if canonicalImportPath == "" {
+ canonicalImportPath = sourcePath
+ }
+
// Does th... | context: fix setting path when it doesn't exist anywhere yet |
diff --git a/axis/__init__.py b/axis/__init__.py
index <HASH>..<HASH> 100644
--- a/axis/__init__.py
+++ b/axis/__init__.py
@@ -120,8 +120,16 @@ class AxisDevice(object):
self._event_topics = '{}|{}'.format(self._event_topics,
event_topic)
+ def minimum_... | Added check to ensure minimum firmware version of <I> for metadatastream |
diff --git a/mod/assignment/type/offline/assignment.class.php b/mod/assignment/type/offline/assignment.class.php
index <HASH>..<HASH> 100644
--- a/mod/assignment/type/offline/assignment.class.php
+++ b/mod/assignment/type/offline/assignment.class.php
@@ -66,9 +66,8 @@ class assignment_offline extends assignment_base {
... | assignment MDL-<I> some assignment changes were left out for offline assignment type , fixed processing grading. |
diff --git a/webpack.config.js b/webpack.config.js
index <HASH>..<HASH> 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -9,7 +9,10 @@ module.exports = (env, options) => ({
entry: path.resolve(__dirname, 'demo/js/demo.js'),
output: {
path: path.resolve(__dirname, 'pages'),
- filename:... | Fix chunkhash not allowed in development |
diff --git a/src/datastore/leveldb_shard_datastore.go b/src/datastore/leveldb_shard_datastore.go
index <HASH>..<HASH> 100644
--- a/src/datastore/leveldb_shard_datastore.go
+++ b/src/datastore/leveldb_shard_datastore.go
@@ -198,14 +198,14 @@ func (self *LevelDbShardDatastore) closeOldestShard() {
}
func (self *Level... | Fix bug where I was deleting the shard reference before pulling out the shard to close it |
diff --git a/lib/MapboxInspect.js b/lib/MapboxInspect.js
index <HASH>..<HASH> 100644
--- a/lib/MapboxInspect.js
+++ b/lib/MapboxInspect.js
@@ -187,9 +187,17 @@ MapboxInspect.prototype._onMousemove = function (e) {
if (!features.length) {
this._popup.remove();
} else {
- this._popup.setLngLat(e.lng... | Support for htmlNodes (Nodes) in popups |
diff --git a/test/test_f90nml.py b/test/test_f90nml.py
index <HASH>..<HASH> 100644
--- a/test/test_f90nml.py
+++ b/test/test_f90nml.py
@@ -890,6 +890,12 @@ class Test(unittest.TestCase):
self.assert_file_equal('types.yaml', 'tmp.yaml')
os.remove('tmp.yaml')
+ def test_cli__read(self):... | CLI: YAML read test |
diff --git a/src/common.js b/src/common.js
index <HASH>..<HASH> 100644
--- a/src/common.js
+++ b/src/common.js
@@ -9,7 +9,7 @@ let __nimiqLoaded = null;
// Defaults for development. Build script replaces CONFIG.ALLOWED_ORIGIN and CONFIG.NETWORK.
const CONFIG = {
ALLOWED_ORIGIN: '*',
- NETWORK: Constants.NETWO... | revert unrelated change to constant, because it breaks tests |
diff --git a/actionpack/lib/action_controller/resources.rb b/actionpack/lib/action_controller/resources.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_controller/resources.rb
+++ b/actionpack/lib/action_controller/resources.rb
@@ -296,6 +296,10 @@ module ActionController
# article_comments_url(:art... | note on increasing performance a bit when using restful urls |
diff --git a/mod/quiz/module.js b/mod/quiz/module.js
index <HASH>..<HASH> 100644
--- a/mod/quiz/module.js
+++ b/mod/quiz/module.js
@@ -219,8 +219,8 @@ M.mod_quiz.secure_window = {
window.location = 'about:blank';
}
Y.delegate('contextmenu', M.mod_quiz.secure_window.prevent, document, '*')... | MDL-<I> mod_quiz: Scrollbar not working in Javascript Security Popup Quiz window in Chrome |
diff --git a/views/search.py b/views/search.py
index <HASH>..<HASH> 100644
--- a/views/search.py
+++ b/views/search.py
@@ -439,6 +439,10 @@ def search(collection, p, of, so, rm):
argd = argd_orig = wash_search_urlargd(request.args)
argd['of'] = 'id'
+ # fix for queries like `/search?p=+ellis`
+ if 'p'... | search: quick fix for queries with leading space
* Strips leading/trailing white space from `p` argument to `/search`.
This quick-fixes queries like `/search?p=+ellis` that were otherwise
leading to "Showing records 1 to 0 out of 0 results" situations. |
diff --git a/lib/js/Mixin.js b/lib/js/Mixin.js
index <HASH>..<HASH> 100644
--- a/lib/js/Mixin.js
+++ b/lib/js/Mixin.js
@@ -50,7 +50,7 @@ module.exports = function(settings, done) {
if ( (hasNewIndex && hasNewStep) || didToggleTooltip || hasNewX || hasNewY ) {
this._renderLayer();
- } else if ( ha... | fix completionCallback being called too soon |
diff --git a/go_agent/src/bosh/agent/applier/applyspec/v1_apply_spec.go b/go_agent/src/bosh/agent/applier/applyspec/v1_apply_spec.go
index <HASH>..<HASH> 100644
--- a/go_agent/src/bosh/agent/applier/applyspec/v1_apply_spec.go
+++ b/go_agent/src/bosh/agent/applier/applyspec/v1_apply_spec.go
@@ -10,7 +10,7 @@ type V1Appl... | Ignore ResourcePoolSpec structure in apply message but pass it through
resource_pool in apply message differs from compile vm to job vm |
diff --git a/src/babel/transformation/transformers/es6/block-scoping.js b/src/babel/transformation/transformers/es6/block-scoping.js
index <HASH>..<HASH> 100644
--- a/src/babel/transformation/transformers/es6/block-scoping.js
+++ b/src/babel/transformation/transformers/es6/block-scoping.js
@@ -139,7 +139,12 @@ var hois... | don't rely on sequence expressions for <= 1 sequence expressions in blockScoping transformer |
diff --git a/container.go b/container.go
index <HASH>..<HASH> 100644
--- a/container.go
+++ b/container.go
@@ -316,7 +316,7 @@ type PidLimits struct {
// Limits the number of pids a container may create before new forks or clones are disallowed to processes in the container.
// Note: this may only be enforced when ... | Rename pid limit
* Max better represents what type of limit is being applied
[#<I>] |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,8 @@
from setuptools import setup
+with open('requirements.txt', 'r') as f:
+ requirements = [line.strip() for line in f]
+
packages = ["qiskit",
"qiskit.backends",
"qiskit.dagcircuit",... | Issue <I> - One entry point for requirements (#<I>) |
diff --git a/download.js b/download.js
index <HASH>..<HASH> 100644
--- a/download.js
+++ b/download.js
@@ -238,12 +238,14 @@ function getFilesSizes() {
getFilesSizes();
function getFileContents(filepath) {
- return new Promise(function(resolve) {
+ return new Promise(function(resolve, reject) {
$u.xhr({
url:... | Reject promise if file does not exist |
diff --git a/buildozer/__init__.py b/buildozer/__init__.py
index <HASH>..<HASH> 100644
--- a/buildozer/__init__.py
+++ b/buildozer/__init__.py
@@ -342,8 +342,8 @@ class Buildozer(object):
else:
stderr.write(chunk)
- stdout.flush()
- stderr.flush()
+ ... | Made sure to print all lines of license question by always flushing |
diff --git a/js/server/Connection.js b/js/server/Connection.js
index <HASH>..<HASH> 100644
--- a/js/server/Connection.js
+++ b/js/server/Connection.js
@@ -26,7 +26,6 @@ exports = Class(net.protocols.rtjp.RTJPProtocol, function(supr) {
this._clientConnected = false
// TODO do we need to unsubscribe from redis chan... | Don't delete the redis client, since it seems like the closing of the connection can be called multiple times |
diff --git a/active-sync.js b/active-sync.js
index <HASH>..<HASH> 100644
--- a/active-sync.js
+++ b/active-sync.js
@@ -52,7 +52,6 @@ ActiveSync.prototype = {
onConnect: function onConnect () {
BaseSync.prototype.onConnect.apply(this, arguments)
this.sendConnect()
- this.syncSince(this.synced)
}
}
... | Move first sync after connect message to BaseSync |
diff --git a/src/Http/Client.php b/src/Http/Client.php
index <HASH>..<HASH> 100644
--- a/src/Http/Client.php
+++ b/src/Http/Client.php
@@ -4,7 +4,7 @@ namespace PeterColes\Betfair\Http;
use Exception;
use GuzzleHttp\Client as GuzzleClient;
-use GuzzleHttp\Psr7\Response;
+use Psr\Http\Message\ResponseInterface;
use... | remove redundant method and type hint to interface rather than concrete implementation |
diff --git a/res/middleware/consoler.js b/res/middleware/consoler.js
index <HASH>..<HASH> 100644
--- a/res/middleware/consoler.js
+++ b/res/middleware/consoler.js
@@ -1,4 +1,4 @@
-<script type="text/javascript" src="/socket.io/socket.io.js"></script>
+<script type="text/javascript" src="http://127.0.0.1:3000/socket.io/... | [#<I>] Fix console to load the client socket library. |
diff --git a/core/src/main/java/com/orientechnologies/orient/core/serialization/serializer/record/string/ORecordSerializerJSON.java b/core/src/main/java/com/orientechnologies/orient/core/serialization/serializer/record/string/ORecordSerializerJSON.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/orientechn... | Problem with JSON string array deserialization was fixed. |
diff --git a/h2o-core/src/test/java/water/TestUtil.java b/h2o-core/src/test/java/water/TestUtil.java
index <HASH>..<HASH> 100644
--- a/h2o-core/src/test/java/water/TestUtil.java
+++ b/h2o-core/src/test/java/water/TestUtil.java
@@ -12,6 +12,7 @@ import org.junit.runners.model.Statement;
import org.junit.runner.Descript... | Add factory method for Frame from named Vec. |
diff --git a/Neos.Neos/Tests/Functional/Fusion/Cache/ContentCacheFlusherTest.php b/Neos.Neos/Tests/Functional/Fusion/Cache/ContentCacheFlusherTest.php
index <HASH>..<HASH> 100644
--- a/Neos.Neos/Tests/Functional/Fusion/Cache/ContentCacheFlusherTest.php
+++ b/Neos.Neos/Tests/Functional/Fusion/Cache/ContentCacheFlusherTe... | BUGFIX: Remove empty comments |
diff --git a/test/test_kramdown.rb b/test/test_kramdown.rb
index <HASH>..<HASH> 100644
--- a/test/test_kramdown.rb
+++ b/test/test_kramdown.rb
@@ -14,6 +14,7 @@ class TestKramdown < JekyllUnitTest
'auto_ids' => false,
'footnote_nr' => 1,
+ 'syntax_highlighter' => 'rouge',
'sy... | kramdown: fix state leakage (#<I>) in test
fixes #<I> |
diff --git a/lib/ztk/rake/docs.rb b/lib/ztk/rake/docs.rb
index <HASH>..<HASH> 100644
--- a/lib/ztk/rake/docs.rb
+++ b/lib/ztk/rake/docs.rb
@@ -41,7 +41,7 @@ namespace :docs do
Dir.chdir(DOC_PATH) do
system(%(git add -Av))
- system(%(git commit -m"#{commit_message.join}"))
+ system(%(git ... | start gpg signing our document commits |
diff --git a/lib/dew/commands/deploy.rb b/lib/dew/commands/deploy.rb
index <HASH>..<HASH> 100755
--- a/lib/dew/commands/deploy.rb
+++ b/lib/dew/commands/deploy.rb
@@ -45,6 +45,7 @@ class DeployCommand < Clamp::Command
end
env = Environment.get(environment_name)
+ raise "Unknown environment #{enviro... | Bail with error if environment unrecognized when deploying |
diff --git a/components/dashboards-web-component/src/utils/Theme.js b/components/dashboards-web-component/src/utils/Theme.js
index <HASH>..<HASH> 100644
--- a/components/dashboards-web-component/src/utils/Theme.js
+++ b/components/dashboards-web-component/src/utils/Theme.js
@@ -62,7 +62,7 @@ export const lightTheme = g... | Remove unnecessary comma in Theme. |
diff --git a/utp.go b/utp.go
index <HASH>..<HASH> 100644
--- a/utp.go
+++ b/utp.go
@@ -1021,6 +1021,9 @@ func (c *Conn) ackSkipped(seqNr uint16) {
return
}
send.acksSkipped++
+ if send.resend == nil {
+ return
+ }
switch send.acksSkipped {
case 3, 60:
ackSkippedResends.Add(1) | Don't resend packet when ack is skipped if it's already acked |
diff --git a/dist/select.js b/dist/select.js
index <HASH>..<HASH> 100644
--- a/dist/select.js
+++ b/dist/select.js
@@ -394,7 +394,7 @@ uis.controller('uiSelectCtrl',
$scope.$uisSource = Object.keys(originalSource($scope)).map(function(v){
var result = {};
result[ctrl.parserResult.keyName] = v;
... | remove hardcoded $scope.peopleObj |
diff --git a/spam_lists/structures.py b/spam_lists/structures.py
index <HASH>..<HASH> 100644
--- a/spam_lists/structures.py
+++ b/spam_lists/structures.py
@@ -142,6 +142,12 @@ class Hostname(name.Name):
class IPAddress(object):
+ ''' A class of objects representing IP address values.
+
+ The instances are us... | Add docstring to IPAddress class |
diff --git a/libnavigation-ui/src/main/java/com/mapbox/navigation/ui/NavigationViewModel.java b/libnavigation-ui/src/main/java/com/mapbox/navigation/ui/NavigationViewModel.java
index <HASH>..<HASH> 100644
--- a/libnavigation-ui/src/main/java/com/mapbox/navigation/ui/NavigationViewModel.java
+++ b/libnavigation-ui/src/m... | [ui] register location observer fix |
diff --git a/packages/extract-svg-sprite-webpack-plugin/lib/utils/replacement-generator.js b/packages/extract-svg-sprite-webpack-plugin/lib/utils/replacement-generator.js
index <HASH>..<HASH> 100644
--- a/packages/extract-svg-sprite-webpack-plugin/lib/utils/replacement-generator.js
+++ b/packages/extract-svg-sprite-web... | fix: typo (#<I>) |
diff --git a/grunt/connect-middleware/sources.js b/grunt/connect-middleware/sources.js
index <HASH>..<HASH> 100644
--- a/grunt/connect-middleware/sources.js
+++ b/grunt/connect-middleware/sources.js
@@ -59,9 +59,10 @@ const
"/src/sources.json?map": response => {
response.setHeader("Content-Type", ... | Fixing harmless error (#<I>) |
diff --git a/code/FontAwesomeIconPickerField.php b/code/FontAwesomeIconPickerField.php
index <HASH>..<HASH> 100644
--- a/code/FontAwesomeIconPickerField.php
+++ b/code/FontAwesomeIconPickerField.php
@@ -17,6 +17,7 @@ class FontAwesomeIconPickerField extends TextField {
Requirements::css('//netdna.bootstrapcdn.... | change fontawesome picker styling from border-box to content-box |
diff --git a/lib/exonio/financial.rb b/lib/exonio/financial.rb
index <HASH>..<HASH> 100644
--- a/lib/exonio/financial.rb
+++ b/lib/exonio/financial.rb
@@ -135,7 +135,7 @@ module Exonio
begin
temp = newton_iter(guess, nper, pmt, pv, fv, end_or_beginning)
- next_guess = guess - temp
+ next... | fix infinite loop with bigscale on RATE method |
diff --git a/Resources/public/js/resource/manager.js b/Resources/public/js/resource/manager.js
index <HASH>..<HASH> 100644
--- a/Resources/public/js/resource/manager.js
+++ b/Resources/public/js/resource/manager.js
@@ -769,10 +769,11 @@
'create': function (event) {
this.create(event.action... | [CoreBundle] Fixing res manager delete menu option. |
diff --git a/src/Hal/Report/Html/template/index.php b/src/Hal/Report/Html/template/index.php
index <HASH>..<HASH> 100644
--- a/src/Hal/Report/Html/template/index.php
+++ b/src/Hal/Report/Html/template/index.php
@@ -141,7 +141,10 @@
<td><?php echo $package->name; ?></td>
... | added link to spdx license in composer report |
diff --git a/hugolib/page.go b/hugolib/page.go
index <HASH>..<HASH> 100644
--- a/hugolib/page.go
+++ b/hugolib/page.go
@@ -1506,8 +1506,8 @@ func (p *Page) copy() *Page {
}
func (p *Page) Now() time.Time {
- // Delete in Hugo 0.21
- helpers.Deprecated("Page", "Now", "Use now (the template func)", true)
+ // Delete ... | hugolib: Delay deletion of Page.Now()
Looking at the state of the themes, it will be too painful to log ERROR now. |
diff --git a/src/main/java/com/tascape/qa/th/AbstractTestResource.java b/src/main/java/com/tascape/qa/th/AbstractTestResource.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/tascape/qa/th/AbstractTestResource.java
+++ b/src/main/java/com/tascape/qa/th/AbstractTestResource.java
@@ -36,10 +36,11 @@ public abstra... | fix a problem of creating log dir |
diff --git a/tests/test_write.py b/tests/test_write.py
index <HASH>..<HASH> 100644
--- a/tests/test_write.py
+++ b/tests/test_write.py
@@ -27,15 +27,13 @@
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# ... | Fix use of paths in Python <I> |
diff --git a/elasticsearch-api/utils/thor/generate_source.rb b/elasticsearch-api/utils/thor/generate_source.rb
index <HASH>..<HASH> 100644
--- a/elasticsearch-api/utils/thor/generate_source.rb
+++ b/elasticsearch-api/utils/thor/generate_source.rb
@@ -161,6 +161,7 @@ module Elasticsearch
def __parse_path(path)
... | [API] Generator: remove trailing / from paths |
diff --git a/src/main/java/org/dita/dost/util/FileUtils.java b/src/main/java/org/dita/dost/util/FileUtils.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/dita/dost/util/FileUtils.java
+++ b/src/main/java/org/dita/dost/util/FileUtils.java
@@ -12,7 +12,6 @@ import static org.apache.commons.io.FilenameUtils.*;
i... | Use NIO Path for file path processing instead of custom code |
diff --git a/gsh/stdin.py b/gsh/stdin.py
index <HASH>..<HASH> 100644
--- a/gsh/stdin.py
+++ b/gsh/stdin.py
@@ -173,6 +173,10 @@ class pipe_notification_reader(asyncore.file_dispatcher):
else:
self._do(c)
+ def writable(self):
+ """That's a reader"""
+ return False
+
# A... | Strange that we could get away without that. |
diff --git a/lib/util/token.js b/lib/util/token.js
index <HASH>..<HASH> 100644
--- a/lib/util/token.js
+++ b/lib/util/token.js
@@ -74,7 +74,7 @@ function removeInBetween(startToken, endToken, check){
remove(startToken);
}
}
- else if (startToken.type === check) {
+ e... | improve token helpers to accept token.value instead of callback. closes #<I> |
diff --git a/tests/CallableResolverTest.php b/tests/CallableResolverTest.php
index <HASH>..<HASH> 100644
--- a/tests/CallableResolverTest.php
+++ b/tests/CallableResolverTest.php
@@ -13,7 +13,9 @@ use Prophecy\Argument;
use Prophecy\Prophecy\ObjectProphecy;
use Psr\Container\ContainerInterface;
use Slim\CallableReso... | Add test case if the object to be resolved is an instance of an error renderer |
diff --git a/lib/jets/spec_helpers/controllers.rb b/lib/jets/spec_helpers/controllers.rb
index <HASH>..<HASH> 100644
--- a/lib/jets/spec_helpers/controllers.rb
+++ b/lib/jets/spec_helpers/controllers.rb
@@ -2,12 +2,11 @@ module Jets::SpecHelpers
module Controllers
include Jets::Router::Helpers # must be at the ... | spec helpers: dont cache requeset headers between specs |
diff --git a/src/model.js b/src/model.js
index <HASH>..<HASH> 100644
--- a/src/model.js
+++ b/src/model.js
@@ -105,7 +105,9 @@ export function add (model, key, field) {
* @returns {Model} - the updated model.
*/
export function remove (model, key, field) {
- // TODO: bug - verify that the field is there to remove... | Don't remove un-owned fields from a model |
diff --git a/test/d3-funnel/d3-funnel.js b/test/d3-funnel/d3-funnel.js
index <HASH>..<HASH> 100644
--- a/test/d3-funnel/d3-funnel.js
+++ b/test/d3-funnel/d3-funnel.js
@@ -372,9 +372,9 @@ describe('D3Funnel', () => {
const paths = d3.selectAll('#funnel path');
- const quadraticPaths = paths.filter(() =>
- ... | Prevent lexical binding of `this` in chart.curve.enabled test |
diff --git a/lib/node_modules/@stdlib/repl/lib/context/math/constants.js b/lib/node_modules/@stdlib/repl/lib/context/math/constants.js
index <HASH>..<HASH> 100644
--- a/lib/node_modules/@stdlib/repl/lib/context/math/constants.js
+++ b/lib/node_modules/@stdlib/repl/lib/context/math/constants.js
@@ -18,6 +18,7 @@ NS.EPS ... | Add HALF_LN2 to REPL context |
diff --git a/src/Naderman/Composer/AWS/AwsPlugin.php b/src/Naderman/Composer/AWS/AwsPlugin.php
index <HASH>..<HASH> 100644
--- a/src/Naderman/Composer/AWS/AwsPlugin.php
+++ b/src/Naderman/Composer/AWS/AwsPlugin.php
@@ -28,16 +28,12 @@ class AwsPlugin implements PluginInterface, EventSubscriberInterface
protected $... | The composer plugin interface was changed to pass args to activate |
diff --git a/test/unit/ajax.js b/test/unit/ajax.js
index <HASH>..<HASH> 100644
--- a/test/unit/ajax.js
+++ b/test/unit/ajax.js
@@ -316,6 +316,28 @@ test(".ajax() - headers" , function() {
});
+test(".ajax() - Accept header" , function() {
+
+ expect( 1 );
+
+ stop();
+
+ jQuery.ajax(url("data/headers.php?keys=acce... | Fixes #<I>. Added a unit test to control that, since the ajax rewrite, setting the Accept header actually replaced the previous value and didn't append to it (tested in Safari <I> for which the problem was specifically reported). |
diff --git a/src/main/java/rx/internal/operators/OperatorMerge.java b/src/main/java/rx/internal/operators/OperatorMerge.java
index <HASH>..<HASH> 100644
--- a/src/main/java/rx/internal/operators/OperatorMerge.java
+++ b/src/main/java/rx/internal/operators/OperatorMerge.java
@@ -72,9 +72,6 @@ public class OperatorMerge<... | Remove Comment
This comment is no longer correct. <I> was resolved. |
diff --git a/js/btcmarkets.js b/js/btcmarkets.js
index <HASH>..<HASH> 100644
--- a/js/btcmarkets.js
+++ b/js/btcmarkets.js
@@ -332,7 +332,7 @@ module.exports = class btcmarkets extends Exchange {
return this.parseOrder (order);
}
- async prepareHistoryRequest (market, since = undefined, limit = undef... | BTCMarkets: Fix fetchOrders, fetchOpenOrders, fetchMyTrades
`prepareHistoryRequest` is declared as `async` function, but used synchronously, which makes `fetchOrders`, `fetchOpenOrders`, `fetchMyTrades` fail. Removing `async` fixes the error. |
diff --git a/app/code/community/Aoe/Scheduler/Model/Observer.php b/app/code/community/Aoe/Scheduler/Model/Observer.php
index <HASH>..<HASH> 100755
--- a/app/code/community/Aoe/Scheduler/Model/Observer.php
+++ b/app/code/community/Aoe/Scheduler/Model/Observer.php
@@ -78,8 +78,8 @@ class Aoe_Scheduler_Model_Observer /* e... | Move setRepetition method call into condition check |
diff --git a/pkg/controller/daemon/daemoncontroller.go b/pkg/controller/daemon/daemoncontroller.go
index <HASH>..<HASH> 100644
--- a/pkg/controller/daemon/daemoncontroller.go
+++ b/pkg/controller/daemon/daemoncontroller.go
@@ -480,7 +480,10 @@ func (dsc *DaemonSetsController) manage(ds *extensions.DaemonSet) error {
... | Emit events on 'Failed' daemon pods |
diff --git a/pysnmp/proto/proxy/rfc2576.py b/pysnmp/proto/proxy/rfc2576.py
index <HASH>..<HASH> 100644
--- a/pysnmp/proto/proxy/rfc2576.py
+++ b/pysnmp/proto/proxy/rfc2576.py
@@ -283,14 +283,7 @@ def v2ToV1(v2Pdu, origV1Pdu=None):
# Translate Var-Binds
for oid, v2Val in v2VarBinds:
- # 2.... | fix to IpAddress translation to match it with setVarBinds() API |
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,7 +1,7 @@
$LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
require "jekyll"
require "jekyll-seo-tag"
-require "html/proofer"
+require "html-proofer"
ENV["JEKYLL_LO... | require html-proofer, not html/proofer |
diff --git a/fluids/particle_size_distribution.py b/fluids/particle_size_distribution.py
index <HASH>..<HASH> 100644
--- a/fluids/particle_size_distribution.py
+++ b/fluids/particle_size_distribution.py
@@ -1491,7 +1491,7 @@ class ParticleSizeDistributionContinuous(object):
--------
>>> psd = PSDLogno... | Another CI fix for appveyor |
diff --git a/core/Spirit.php b/core/Spirit.php
index <HASH>..<HASH> 100644
--- a/core/Spirit.php
+++ b/core/Spirit.php
@@ -16,7 +16,7 @@ class Spirit
const LOG_ERROR = 'ERROR';
protected static $instance = null;
- protected static $useColoredTerminalOutput = true;
+ protected static $useColoredTermina... | Version <I>
Console Color Output Support Switch inside Spirit
Take it as off as default |
diff --git a/h2o-algos/src/main/java/hex/schemas/SharedTreeV3.java b/h2o-algos/src/main/java/hex/schemas/SharedTreeV3.java
index <HASH>..<HASH> 100755
--- a/h2o-algos/src/main/java/hex/schemas/SharedTreeV3.java
+++ b/h2o-algos/src/main/java/hex/schemas/SharedTreeV3.java
@@ -40,7 +40,7 @@ public class SharedTreeV3<B ext... | No longer let max_hit_ratio_k be gridable - it's not a hyper-parameter. |
diff --git a/components/pager/pager.js b/components/pager/pager.js
index <HASH>..<HASH> 100644
--- a/components/pager/pager.js
+++ b/components/pager/pager.js
@@ -10,8 +10,7 @@
/* eslint-disable react/jsx-no-literals */
/* eslint-disable no-magic-numbers */
-import React, {PropTypes} from 'react';
-import RingCompo... | ring-pager as a PureComponent
Former-commit-id: <I>e<I>e9b<I>b<I>b<I>a<I>e<I>b |
diff --git a/js/okex.js b/js/okex.js
index <HASH>..<HASH> 100644
--- a/js/okex.js
+++ b/js/okex.js
@@ -1107,7 +1107,7 @@ module.exports = class okex extends Exchange {
const symbol = ticker['symbol'];
result[symbol] = ticker;
}
- return result;
+ return this.filterByArra... | okex fetchTicker filter by symbols fix #<I> |
diff --git a/mod/lesson/report.php b/mod/lesson/report.php
index <HASH>..<HASH> 100644
--- a/mod/lesson/report.php
+++ b/mod/lesson/report.php
@@ -32,6 +32,13 @@
ORDER BY u.lastname")) {
$nothingtodisplay = true;
}
+
+// make sure people are where they should be
+ ... | Moved the require login and isteacher checks to infront of the form data processing |
diff --git a/pyinfra/api/util.py b/pyinfra/api/util.py
index <HASH>..<HASH> 100644
--- a/pyinfra/api/util.py
+++ b/pyinfra/api/util.py
@@ -189,7 +189,7 @@ def get_file_sha1(filename):
# Otherwise, assume a filename and open it up
else:
- file_io = open(filename)
+ file_io = open(filename, 'rb'... | Basic binary file support: needs tests and further verification. |
diff --git a/lib/websearch_webinterface.py b/lib/websearch_webinterface.py
index <HASH>..<HASH> 100644
--- a/lib/websearch_webinterface.py
+++ b/lib/websearch_webinterface.py
@@ -1291,8 +1291,7 @@ def display_collection(req, c, aas, verbose, ln):
req.content_type = "text/html"
req.send_http_header()
# de... | WebSearch: fix collection display normalisation
* When displaying collection page for a collection that does not
exist, the original name should be preserved for the error message
display. This fixes problems introduced as part of the collection
name normalisation call <I>cc<I>cba<I>b<I>e1be5f5a8d<I>f9b. |
diff --git a/Entity/ContactClient.php b/Entity/ContactClient.php
index <HASH>..<HASH> 100644
--- a/Entity/ContactClient.php
+++ b/Entity/ContactClient.php
@@ -121,6 +121,16 @@ class ContactClient extends FormEntity
private $schedule_exclusions;
/**
+ * ContactClient constructor.
+ */
+ public fun... | Use 'API' as the default type for a new client. |
diff --git a/src/node_modules/base/collection.js b/src/node_modules/base/collection.js
index <HASH>..<HASH> 100644
--- a/src/node_modules/base/collection.js
+++ b/src/node_modules/base/collection.js
@@ -1,6 +1,13 @@
var Base = require('ampersand-filtered-subcollection')
var lodashMixin = require('ampersand-collection... | don't sort, it's slow |
diff --git a/lib/generators/sail/install/install_generator.rb b/lib/generators/sail/install/install_generator.rb
index <HASH>..<HASH> 100644
--- a/lib/generators/sail/install/install_generator.rb
+++ b/lib/generators/sail/install/install_generator.rb
@@ -34,7 +34,7 @@ module Sail
end
def migration_versi... | Fix migration class inheritance for generators (#<I>) |
diff --git a/lxd/storage/drivers/driver_btrfs_utils.go b/lxd/storage/drivers/driver_btrfs_utils.go
index <HASH>..<HASH> 100644
--- a/lxd/storage/drivers/driver_btrfs_utils.go
+++ b/lxd/storage/drivers/driver_btrfs_utils.go
@@ -156,6 +156,12 @@ func (d *btrfs) deleteSubvolume(rootPath string, recursion bool) error {
... | lxd/storage/btrfs: Add volume delete shortcut
Most people don't have nested subvolumes and recursively deleting
subvolumes can be time consuming and has additional restrictions on path
traversal that's caused issues to some users.
Closes #<I> |
diff --git a/blackfridaytext.go b/blackfridaytext.go
index <HASH>..<HASH> 100644
--- a/blackfridaytext.go
+++ b/blackfridaytext.go
@@ -54,15 +54,18 @@ var ansiEscape = ansiEscapeCodes{
}
func GetWidth() int {
- tty, err := os.OpenFile("/dev/tty", os.O_RDWR, 0600)
- if err != nil {
+ var tty *os.File
+ var err error... | Fixed a silly fd leak |
diff --git a/influxdb/tests/test_line_protocol.py b/influxdb/tests/test_line_protocol.py
index <HASH>..<HASH> 100644
--- a/influxdb/tests/test_line_protocol.py
+++ b/influxdb/tests/test_line_protocol.py
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
import sys
if sys.version_info ... | tests: add unicode test for line_protocol.make_line.
I'm discovered problems, while try to write data,
with tags in unicode. |
diff --git a/grimoire_elk/enriched/enrich.py b/grimoire_elk/enriched/enrich.py
index <HASH>..<HASH> 100644
--- a/grimoire_elk/enriched/enrich.py
+++ b/grimoire_elk/enriched/enrich.py
@@ -935,7 +935,8 @@ class Enrich(ElasticItems):
# Create alias if output index exists (index is always created from scratch, s... | [enrich] Prevent adding ONION alias if already in use
This code prevents to add the alias `all_onion` to an index if the alias
is already used on other indexes. |
diff --git a/aws/resource_aws_instance.go b/aws/resource_aws_instance.go
index <HASH>..<HASH> 100644
--- a/aws/resource_aws_instance.go
+++ b/aws/resource_aws_instance.go
@@ -128,7 +128,8 @@ func resourceAwsInstance() *schema.Resource {
DiffSuppressFunc: func(k, old, new string, d *schema.ResourceData) bool {
... | resource/aws_instance: Ignore change of user_data from omission to empty |
diff --git a/pyramid_webassets/tests/test_webassets.py b/pyramid_webassets/tests/test_webassets.py
index <HASH>..<HASH> 100644
--- a/pyramid_webassets/tests/test_webassets.py
+++ b/pyramid_webassets/tests/test_webassets.py
@@ -715,7 +715,7 @@ class TestBaseUrlBehavior(object):
automatic_view, manual_view = s... | fix bad "not in" in tests |
diff --git a/examples/Lambda.py b/examples/Lambda.py
index <HASH>..<HASH> 100644
--- a/examples/Lambda.py
+++ b/examples/Lambda.py
@@ -113,7 +113,7 @@ LambdaExecutionRole = t.add_resource(Role(
AssumeRolePolicyDocument={
"Version": "2012-10-17",
"Statement": [{
- "Action": [ "sts:Assum... | Fix pycodestyle issues with examples/Lambda.py |
diff --git a/app/libraries/Utilities/CustomTemplate.php b/app/libraries/Utilities/CustomTemplate.php
index <HASH>..<HASH> 100644
--- a/app/libraries/Utilities/CustomTemplate.php
+++ b/app/libraries/Utilities/CustomTemplate.php
@@ -72,11 +72,11 @@ class CustomTemplate
* @param int $post_id
*
* @since 0... | Change visibility for `is()` and `slug()` of custom templates utility
They are handy methods that can be used by a child theme. |
diff --git a/lib/phoenx/gem_version.rb b/lib/phoenx/gem_version.rb
index <HASH>..<HASH> 100755
--- a/lib/phoenx/gem_version.rb
+++ b/lib/phoenx/gem_version.rb
@@ -1,5 +1,5 @@
module Phoenx
- VERSION = "0.1.0".freeze unless defined? Phoenx::VERSION
+ VERSION = "0.1.1".freeze unless defined? Phoenx::VERSION
... | Bumped version to <I> |
diff --git a/app/Http/Controllers/GedcomFileController.php b/app/Http/Controllers/GedcomFileController.php
index <HASH>..<HASH> 100644
--- a/app/Http/Controllers/GedcomFileController.php
+++ b/app/Http/Controllers/GedcomFileController.php
@@ -188,6 +188,7 @@ class GedcomFileController extends AbstractBaseController
... | Error when importing tree with invalid encoding |
diff --git a/test/api.js b/test/api.js
index <HASH>..<HASH> 100644
--- a/test/api.js
+++ b/test/api.js
@@ -66,7 +66,7 @@ describe('Graphs', function () {
var g = new GDS({ url: APIURL, username: USERNAME, password: PASSWORD });
- g.graphs().add(function (err, data) {
+ g.graphs().create(function (err, da... | fix _graphs tests after method rename |
diff --git a/src/App.php b/src/App.php
index <HASH>..<HASH> 100644
--- a/src/App.php
+++ b/src/App.php
@@ -200,12 +200,16 @@ class App extends BaseApplication
$uri = $input->getParameterOption(['--uri', '-l']);
- /*Checking if the URI has http of not in begenning*/
- if ($uri && !preg_match('... | #<I> Default value for uri option. Without it it's impossible to view messages logged during command execution in Reports UI (InvalidArgumentException). (#<I>) |
diff --git a/murmurhash/about.py b/murmurhash/about.py
index <HASH>..<HASH> 100644
--- a/murmurhash/about.py
+++ b/murmurhash/about.py
@@ -1,5 +1,5 @@
__title__ = "murmurhash"
-__version__ = "1.0.7"
+__version__ = "1.0.8"
__summary__ = "Cython bindings for MurmurHash"
__uri__ = "https://github.com/explosion/murmurha... | Set version to <I> (#<I>) |
diff --git a/lib/zertico/version.rb b/lib/zertico/version.rb
index <HASH>..<HASH> 100644
--- a/lib/zertico/version.rb
+++ b/lib/zertico/version.rb
@@ -1,3 +1,3 @@
module Zertico
- VERSION = '2.0.0.alpha.2'
+ VERSION = '2.0.0.alpha.3'
end
\ No newline at end of file | Bumping version to <I>.alpha<I> [ci skip] |
diff --git a/platform/android/build/android_tools.rb b/platform/android/build/android_tools.rb
index <HASH>..<HASH> 100644
--- a/platform/android/build/android_tools.rb
+++ b/platform/android/build/android_tools.rb
@@ -857,7 +857,7 @@ def start_emulator(cmd)
# wait while emulator appears in adb device list
... | travis: emulator can start really slow |
diff --git a/sphinxcontrib/openapi/openapi30.py b/sphinxcontrib/openapi/openapi30.py
index <HASH>..<HASH> 100644
--- a/sphinxcontrib/openapi/openapi30.py
+++ b/sphinxcontrib/openapi/openapi30.py
@@ -267,16 +267,16 @@ def _httpresource(endpoint, method, properties, render_examples,
if render_request:
reque... | Request Body: E<I> continuation line under-indented for visual indent. |
diff --git a/bcbio/install.py b/bcbio/install.py
index <HASH>..<HASH> 100644
--- a/bcbio/install.py
+++ b/bcbio/install.py
@@ -782,7 +782,7 @@ def add_subparser(subparsers):
action="append", default=[], type=_check_toolplus)
parser.add_argument("--datatarget", help="Data to install. Allows... | Add TOPMEd as a data target. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,14 +1,13 @@
from setuptools import setup, find_packages
import airflow
-# To generate install_requires from requirements.txt
-# from pip.req import parse_requirements
-# reqs = (str(ir.req) for ir in parse_requirements(... | Importing airflow in setup.py wan't a good idea, rolling back |
diff --git a/lib/link.js b/lib/link.js
index <HASH>..<HASH> 100644
--- a/lib/link.js
+++ b/lib/link.js
@@ -1,4 +1,4 @@
-import React, { Component, Children } from 'react'
+import React, { Component, Children, PropTypes } from 'react'
import Router from './router'
export default class Link extends Component {
@@ -7,... | Add warning for multiple children in Link (#<I>)
* Add warning for multiple children in Link
* Add space after if
* Use proptype validation |
diff --git a/Twig/Menu.php b/Twig/Menu.php
index <HASH>..<HASH> 100755
--- a/Twig/Menu.php
+++ b/Twig/Menu.php
@@ -88,12 +88,12 @@ class Menu extends \Twig_Extension {
}
}
- if (!in_array($sClassName, $this->aClassesLoaded)) {
+ if (!... | Issue #3:
Correction bug doublon menu |
diff --git a/sdk/appconfiguration/azure-data-appconfiguration/src/main/java/com/azure/data/appconfiguration/ConfigurationAsyncClient.java b/sdk/appconfiguration/azure-data-appconfiguration/src/main/java/com/azure/data/appconfiguration/ConfigurationAsyncClient.java
index <HASH>..<HASH> 100644
--- a/sdk/appconfiguration/... | Use service version provided in constructor (#<I>) |
diff --git a/src/Object/Product/Product.php b/src/Object/Product/Product.php
index <HASH>..<HASH> 100644
--- a/src/Object/Product/Product.php
+++ b/src/Object/Product/Product.php
@@ -971,7 +971,7 @@ class Product extends AbstractObject implements
*
* @return bool
*/
- protected function isValid()
+... | Change isValid to be public |
diff --git a/spring-social-twitter/src/main/java/org/springframework/social/twitter/connect/TwitterServiceApiAdapter.java b/spring-social-twitter/src/main/java/org/springframework/social/twitter/connect/TwitterServiceApiAdapter.java
index <HASH>..<HASH> 100644
--- a/spring-social-twitter/src/main/java/org/springframewo... | moved service api adapter to root package to avoid tangle |
diff --git a/lib/valanga/music_search.rb b/lib/valanga/music_search.rb
index <HASH>..<HASH> 100644
--- a/lib/valanga/music_search.rb
+++ b/lib/valanga/music_search.rb
@@ -20,8 +20,8 @@ module Valanga
end
def search(music_name)
- if url = pages[music_name]
- return create_music(url)
+ if mus... | `#info_url` receive `music_id` and build url |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.