diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/test/utils/image/manifest.go b/test/utils/image/manifest.go index <HASH>..<HASH> 100644 --- a/test/utils/image/manifest.go +++ b/test/utils/image/manifest.go @@ -219,7 +219,7 @@ func initImageConfigs() (map[int]Config, map[int]Config) { configs[AuthenticatedWindowsNanoServer] = Config{gcAuthenticatedRegi...
update busybox that includes windows nltest
diff --git a/dist/protractor-helpers.js b/dist/protractor-helpers.js index <HASH>..<HASH> 100644 --- a/dist/protractor-helpers.js +++ b/dist/protractor-helpers.js @@ -155,7 +155,7 @@ Helpers.prototype.selectOption = function (optionElement) { Helpers.prototype.scrollToElement = function (element) { return element...
feat(Helpers): add ability to scroll to an element and click it with x axis too
diff --git a/lib/substation/chain.rb b/lib/substation/chain.rb index <HASH>..<HASH> 100644 --- a/lib/substation/chain.rb +++ b/lib/substation/chain.rb @@ -141,6 +141,10 @@ module Substation return response unless processor.success?(response) processor.result(response) rescue => exception ...
Support ENV['DEBUG_SUBSTATION'] for now
diff --git a/Kwc/Root/DomainRoot/Component.php b/Kwc/Root/DomainRoot/Component.php index <HASH>..<HASH> 100644 --- a/Kwc/Root/DomainRoot/Component.php +++ b/Kwc/Root/DomainRoot/Component.php @@ -17,6 +17,9 @@ class Kwc_Root_DomainRoot_Component extends Kwc_Root_Abstract public function formatPath($parsedUrl) ...
if port is not <I> add it to host for domainRoot
diff --git a/code/MultiFormObjectDecorator.php b/code/MultiFormObjectDecorator.php index <HASH>..<HASH> 100644 --- a/code/MultiFormObjectDecorator.php +++ b/code/MultiFormObjectDecorator.php @@ -14,7 +14,7 @@ * * @package multiform */ -class MultiFormObjectDecorator extends DataObjectDecorator { +class MultiFormO...
Fixing class to extend DataExtension for SS3 compatibility
diff --git a/src/TryCatchMiddleware.php b/src/TryCatchMiddleware.php index <HASH>..<HASH> 100644 --- a/src/TryCatchMiddleware.php +++ b/src/TryCatchMiddleware.php @@ -20,7 +20,7 @@ class TryCatchMiddleware implements IMiddleware return $response; } catch (Throwable $throwable) { $response = $response->wit...
Remove error message output. It could reveal sensitive informations.
diff --git a/ruby/command-t/match_window.rb b/ruby/command-t/match_window.rb index <HASH>..<HASH> 100644 --- a/ruby/command-t/match_window.rb +++ b/ruby/command-t/match_window.rb @@ -407,12 +407,12 @@ module CommandT # Cursor xxx cleared -> :hi! clear Cursor highlight = VIM::capture 'sile...
Cursor saving now looks for newlines and removes them Original pull request: <URL>
diff --git a/mod/assign/gradingtable.php b/mod/assign/gradingtable.php index <HASH>..<HASH> 100644 --- a/mod/assign/gradingtable.php +++ b/mod/assign/gradingtable.php @@ -485,6 +485,13 @@ class assign_grading_table extends table_sql implements renderable { if ($this->quickgrading && !$gradingdisabled) { ...
MDL-<I>: assign - prevent loss of associated marker certain markers don't see the marker allocation column.
diff --git a/pyvodb/load.py b/pyvodb/load.py index <HASH>..<HASH> 100644 --- a/pyvodb/load.py +++ b/pyvodb/load.py @@ -9,6 +9,7 @@ import yaml from sqlalchemy import create_engine from sqlalchemy.orm import sessionmaker from sqlalchemy.sql.expression import select +from dateutil import rrule from . import tables ...
Check rrule syntax when loading the data The "tests" for pyvo-data involve loading the DB. Make loading fail when the data includes an invalid recurrence rule for meetups.
diff --git a/elasticsearch-extensions/lib/elasticsearch/extensions/test/cluster.rb b/elasticsearch-extensions/lib/elasticsearch/extensions/test/cluster.rb index <HASH>..<HASH> 100644 --- a/elasticsearch-extensions/lib/elasticsearch/extensions/test/cluster.rb +++ b/elasticsearch-extensions/lib/elasticsearch/extensions/t...
[EXT] Fixed, that the `@@number_of_nodes` variable is initialized on module load This was preventing a use case like: time SERVER=y ruby -I lib:test test/integration/yaml_test_runner.rb
diff --git a/audio/vorbis/vorbis.go b/audio/vorbis/vorbis.go index <HASH>..<HASH> 100644 --- a/audio/vorbis/vorbis.go +++ b/audio/vorbis/vorbis.go @@ -157,6 +157,7 @@ func (d *decoded) Close() error { if err := d.source.Close(); err != nil { return err } + d.decoder = nil return nil }
audio/vorbis: Unretain the Ogg decoder on Close (#<I>)
diff --git a/lib/hcl/commands.rb b/lib/hcl/commands.rb index <HASH>..<HASH> 100644 --- a/lib/hcl/commands.rb +++ b/lib/hcl/commands.rb @@ -94,7 +94,7 @@ module HCl command ||= $PROGRAM_NAME.split('/').last $stderr.puts \ "The hcl completion command is deprecated (and slow!), instead use something...
command#completion: fix example in deprecation warning
diff --git a/test.js b/test.js index <HASH>..<HASH> 100644 --- a/test.js +++ b/test.js @@ -53,7 +53,8 @@ QUnit.test('basics set', function () { prop: { set: function(newVal) { return "foo" + newVal; - } + }, + configurable: true } }); @@ -63,7 +64,11 @@ QUnit.test('basics set', function...
basic setter and not working test with setter callback
diff --git a/lib/raven/interfaces/http.rb b/lib/raven/interfaces/http.rb index <HASH>..<HASH> 100644 --- a/lib/raven/interfaces/http.rb +++ b/lib/raven/interfaces/http.rb @@ -24,9 +24,16 @@ module Raven self.url = req.scheme && req.url.split('?').first self.method = req.request_method self.query_st...
Ignore HTTP_VERSION headers since Rack misbehaves
diff --git a/src/Row.php b/src/Row.php index <HASH>..<HASH> 100644 --- a/src/Row.php +++ b/src/Row.php @@ -92,6 +92,12 @@ class Row extends Nette\Object return $this->item->{$this->formatDibiRowKey($key)}; } else if ($this->item instanceof ActiveRow) { + if (preg_match("/^:([a-zA-Z0-9_$]*)\.([a-zA-Z0-9_$]*)$...
Basic support for related column names (#<I>) Added basic support for syntax $grid->addColumnType('name', 'Title', ':related_table.column')
diff --git a/test/lib/redis-store-zlib-spec.js b/test/lib/redis-store-zlib-spec.js index <HASH>..<HASH> 100644 --- a/test/lib/redis-store-zlib-spec.js +++ b/test/lib/redis-store-zlib-spec.js @@ -42,6 +42,12 @@ describe('Compression Tests', function () { testJson = JSON.stringify(testObject); }); + beforeEach...
Add beforeEach method to reset cache prior to each test.
diff --git a/client.go b/client.go index <HASH>..<HASH> 100644 --- a/client.go +++ b/client.go @@ -1891,7 +1891,7 @@ func (c *Client) RecursivePushFile(container string, source string, target strin appendLen-- } - targetPath := path.Join(target, p[appendLen:]) + targetPath := path.Join(target, filepath.ToSla...
Fix recursive file push on Windows filepath.Walk() sends filenames with backslashes there
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -37,9 +37,10 @@ function proxy(callback) { if (!socket.writable) { return socket.destroy(err); } - var stack = util.getErrorStack('clientError: Bad request'); - var code = err && err.code...
refactor: clientError
diff --git a/src/Themosis/User/UserFactory.php b/src/Themosis/User/UserFactory.php index <HASH>..<HASH> 100644 --- a/src/Themosis/User/UserFactory.php +++ b/src/Themosis/User/UserFactory.php @@ -4,7 +4,6 @@ namespace Themosis\User; use Illuminate\View\View; use Themosis\Field\Wrapper; -use Themosis\Facades\Action; ...
Remove unused instance from User factory.
diff --git a/lib/puppet/file_serving/content.rb b/lib/puppet/file_serving/content.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/file_serving/content.rb +++ b/lib/puppet/file_serving/content.rb @@ -41,6 +41,6 @@ class Puppet::FileServing::Content < Puppet::FileServing::Base end def to_raw - File.new(full_pa...
(#<I>) Serve file content in binary mode Previously, Puppet::FileServing::Content opened files in text mode. Changed to binary mode.
diff --git a/lib/entasis/model.rb b/lib/entasis/model.rb index <HASH>..<HASH> 100644 --- a/lib/entasis/model.rb +++ b/lib/entasis/model.rb @@ -25,7 +25,7 @@ module Entasis # # Takes a hash and assigns keys and values to it's attributes members # - def initialize(hash) + def initialize(hash={}) ...
Do not require attribute hash at initialization
diff --git a/lib/active_record_shards/default_slave_patches.rb b/lib/active_record_shards/default_slave_patches.rb index <HASH>..<HASH> 100644 --- a/lib/active_record_shards/default_slave_patches.rb +++ b/lib/active_record_shards/default_slave_patches.rb @@ -60,6 +60,10 @@ module ActiveRecordShards CLASS_FORCE_S...
Wrap to_sql and Sanitzation with force_on_slave
diff --git a/resources/lang/hu-HU/notifications.php b/resources/lang/hu-HU/notifications.php index <HASH>..<HASH> 100644 --- a/resources/lang/hu-HU/notifications.php +++ b/resources/lang/hu-HU/notifications.php @@ -51,7 +51,7 @@ return [ 'action' => 'View', ], 'slack' => [ - ...
New translations notifications.php (Hungarian)
diff --git a/expr/http_endpoint.go b/expr/http_endpoint.go index <HASH>..<HASH> 100644 --- a/expr/http_endpoint.go +++ b/expr/http_endpoint.go @@ -249,7 +249,7 @@ func (e *HTTPEndpointExpr) Prepare() { // Make sure there's a default response if none define explicitly if len(e.Responses) == 0 { status := StatusOK...
Fix issue with empty body and SkipEncodeDecodeResultBody (#<I>)
diff --git a/lib/mongo/protocol/query.rb b/lib/mongo/protocol/query.rb index <HASH>..<HASH> 100644 --- a/lib/mongo/protocol/query.rb +++ b/lib/mongo/protocol/query.rb @@ -252,7 +252,7 @@ module Mongo # # @since 2.1.0 def command_name - command? && filter[:$query].nil? ? filter.keys.f...
RUBY-<I> Helper method for query filter
diff --git a/opencensus/trace/ext/requests/trace.py b/opencensus/trace/ext/requests/trace.py index <HASH>..<HASH> 100644 --- a/opencensus/trace/ext/requests/trace.py +++ b/opencensus/trace/ext/requests/trace.py @@ -28,7 +28,7 @@ SESSION_CLASS_NAME = 'Session' def trace_integration(): - """Wrap the mysql connect...
Fix docstring for trace_integration (#<I>)
diff --git a/server/server_test.go b/server/server_test.go index <HASH>..<HASH> 100644 --- a/server/server_test.go +++ b/server/server_test.go @@ -40,6 +40,7 @@ import ( "github.com/pingcap/tidb/config" "github.com/pingcap/tidb/errno" "github.com/pingcap/tidb/kv" + "github.com/pingcap/tidb/session" "github.com/...
server: make CI faster (#<I>)
diff --git a/salt/utils/cache.py b/salt/utils/cache.py index <HASH>..<HASH> 100644 --- a/salt/utils/cache.py +++ b/salt/utils/cache.py @@ -142,12 +142,10 @@ class CacheDisk(CacheDict): """ if not salt.utils.msgpack.HAS_MSGPACK or not os.path.exists(self._path): return - try: - ...
make proper use of msgpack
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -78,6 +78,18 @@ try: if (match and match[4]) or not match: VERSION += ('' if match else 'a') + COMMIT_COUNT.decode('utf-8').strip() + '+g' + COMMIT_HASH.decode('utf-8').strip() + ...
Include branches in versions for future feature testing
diff --git a/test/Redmine/Tests/Api/IssueTest.php b/test/Redmine/Tests/Api/IssueTest.php index <HASH>..<HASH> 100644 --- a/test/Redmine/Tests/Api/IssueTest.php +++ b/test/Redmine/Tests/Api/IssueTest.php @@ -150,6 +150,39 @@ class IssueTest extends \PHPUnit_Framework_TestCase } /** + * Test show(). + ...
Added Test for correct imploding of include parameters in issue::show
diff --git a/src/ErrorHandler/ErrorCatcher.php b/src/ErrorHandler/ErrorCatcher.php index <HASH>..<HASH> 100644 --- a/src/ErrorHandler/ErrorCatcher.php +++ b/src/ErrorHandler/ErrorCatcher.php @@ -113,7 +113,7 @@ final class ErrorCatcher implements MiddlewareInterface private function getContentType(ServerRequestInt...
Use header constant in ErrorCatcher
diff --git a/subprojects/sonar-update-center/sonar-update-center-common/src/main/java/org/sonar/updatecenter/common/PluginManifest.java b/subprojects/sonar-update-center/sonar-update-center-common/src/main/java/org/sonar/updatecenter/common/PluginManifest.java index <HASH>..<HASH> 100644 --- a/subprojects/sonar-update-...
SONAR-<I> Sonar startup crashes during use of Update Center if manifest uses wrong date format
diff --git a/springloaded/src/main/java/org/springsource/loaded/agent/SpringLoadedPreProcessor.java b/springloaded/src/main/java/org/springsource/loaded/agent/SpringLoadedPreProcessor.java index <HASH>..<HASH> 100644 --- a/springloaded/src/main/java/org/springsource/loaded/agent/SpringLoadedPreProcessor.java +++ b/spri...
Check for null codeSource before attempting to access codeSource.getLocation()
diff --git a/lib/rest-ftp-daemon/notification.rb b/lib/rest-ftp-daemon/notification.rb index <HASH>..<HASH> 100644 --- a/lib/rest-ftp-daemon/notification.rb +++ b/lib/rest-ftp-daemon/notification.rb @@ -32,7 +32,7 @@ module RestFtpDaemon # Params body = { - id: params[:id], + id: ...
last minute demo fix: Job.id as a string for notifications
diff --git a/spacy/tests/tokens/test_tokens_api.py b/spacy/tests/tokens/test_tokens_api.py index <HASH>..<HASH> 100644 --- a/spacy/tests/tokens/test_tokens_api.py +++ b/spacy/tests/tokens/test_tokens_api.py @@ -108,7 +108,7 @@ def test_set_ents(EN): assert len(tokens.ents) == 0 tokens.ents = [(EN.vocab.string...
Fix test, after IOB tweak.
diff --git a/lib/bibformat_engine.py b/lib/bibformat_engine.py index <HASH>..<HASH> 100644 --- a/lib/bibformat_engine.py +++ b/lib/bibformat_engine.py @@ -380,7 +380,12 @@ def decide_format_template(bfo, of): output_format = get_output_format(of) for rule in output_format['rules']: - value = bfo.fiel...
BibFormat: controlfield output format rule support * Support for output format rules that apply on controlfields.
diff --git a/src/Cli.php b/src/Cli.php index <HASH>..<HASH> 100644 --- a/src/Cli.php +++ b/src/Cli.php @@ -146,6 +146,11 @@ class Cli return true; } + // fix for "Undefined constant STDOUT" error + if (!\defined('STDOUT')) { + return false; + } + ...
Fixes "Undefined constant STDOUT" error Similar fix to Symfony's code.
diff --git a/lib/active_scaffold/finder.rb b/lib/active_scaffold/finder.rb index <HASH>..<HASH> 100644 --- a/lib/active_scaffold/finder.rb +++ b/lib/active_scaffold/finder.rb @@ -31,11 +31,11 @@ module ActiveScaffold def condition_for_column(column, value, text_search = :full) like_pattern = like_patter...
Fixed Object#type deprecated warning. This happens when search_ui is not defined and column.column is nil (virtual or association column).
diff --git a/src/Core/Communicator.php b/src/Core/Communicator.php index <HASH>..<HASH> 100644 --- a/src/Core/Communicator.php +++ b/src/Core/Communicator.php @@ -226,7 +226,7 @@ class Communicator $response = $request->send(); if ($response->hasErrors()) { - $this->$errorResponses[] = $r...
Resovled phpunit error 1 casued by last commit
diff --git a/treeherder/model/models.py b/treeherder/model/models.py index <HASH>..<HASH> 100644 --- a/treeherder/model/models.py +++ b/treeherder/model/models.py @@ -1018,6 +1018,11 @@ class Group(models.Model): class ClassifiedFailure(models.Model): + """ + Classifies zero or more TextLogErrors as a failur...
Document what ClassifiedFailures represent
diff --git a/salt/netapi/rest_cherrypy/app.py b/salt/netapi/rest_cherrypy/app.py index <HASH>..<HASH> 100644 --- a/salt/netapi/rest_cherrypy/app.py +++ b/salt/netapi/rest_cherrypy/app.py @@ -7,7 +7,8 @@ A REST API for Salt .. py:currentmodule:: salt.netapi.rest_cherrypy.app -:depends: - CherryPy Python module +:...
Added a note about recommended CherryPy versions due to SSL errors
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -24,7 +24,7 @@ var tests = [ function rollupTestTask(name, file, to) { return rollup.rollup({ entry: file, - external: ['assert', 'react', 'enzyme', 'enzyme-adapter-react-16', 'jsdom'], + ...
Removed node resolve from test task
diff --git a/cache/queue.go b/cache/queue.go index <HASH>..<HASH> 100644 --- a/cache/queue.go +++ b/cache/queue.go @@ -24,11 +24,12 @@ func (v byOrderKey) Less(i, j int) bool { return v[i].orderKey < v[j].orderKey } func (c *Cache) makeQueue() chan *points.Points { c.Lock() writeStrategy := c.writeStrategy + prevB...
get queueLastBuild inside lock
diff --git a/tldap/base.py b/tldap/base.py index <HASH>..<HASH> 100644 --- a/tldap/base.py +++ b/tldap/base.py @@ -132,8 +132,9 @@ class LDAPmeta(type): # an attribute in this class has replaced the field pass elif field.name in parent_field_names: - ...
Trick pep8 into ignoring E<I>. We really do need to compare types here, the types should be identical. Change-Id: I<I>d8e<I>b1b7be<I>b<I>a<I>c<I>fecac
diff --git a/lib/agent.js b/lib/agent.js index <HASH>..<HASH> 100644 --- a/lib/agent.js +++ b/lib/agent.js @@ -1,7 +1,9 @@ -// Packages +// Native const {parse} = require('url') const http = require('http') const https = require('https') + +// Packages const fetch = require('node-fetch') /**
Fix `Native` and `Packages` comment structure (#<I>)
diff --git a/xml-parser.class.php b/xml-parser.class.php index <HASH>..<HASH> 100644 --- a/xml-parser.class.php +++ b/xml-parser.class.php @@ -44,9 +44,24 @@ class XMLParser { return isset($xml) ? $xml : null; // isset() essentially to make editor happy. } + public static function objectToArray($std) { + ...
Added stdClass / stdObject support
diff --git a/examples/basic/flatarrow.py b/examples/basic/flatarrow.py index <HASH>..<HASH> 100644 --- a/examples/basic/flatarrow.py +++ b/examples/basic/flatarrow.py @@ -7,7 +7,7 @@ for i in range(10): s, c = sin(i), cos(i) l1 = [[sin(x)+c, -cos(x)+s, x] for x in arange(0,3, 0.1)] l2 = [[sin(...
Removed trailing spaces in examples/basic/flatarrow.py
diff --git a/phonopy/interface/vasp.py b/phonopy/interface/vasp.py index <HASH>..<HASH> 100644 --- a/phonopy/interface/vasp.py +++ b/phonopy/interface/vasp.py @@ -564,7 +564,7 @@ class Vasprun(object): if self._is_version528(): return self._parse_by_expat(VasprunWrapper(self._filename)) e...
Minor update for vasp <I> and expat
diff --git a/spec/views/wobauth/roles/index.html.erb_spec.rb b/spec/views/wobauth/roles/index.html.erb_spec.rb index <HASH>..<HASH> 100644 --- a/spec/views/wobauth/roles/index.html.erb_spec.rb +++ b/spec/views/wobauth/roles/index.html.erb_spec.rb @@ -1,19 +1,16 @@ require 'rails_helper' -RSpec.describe "roles/index"...
rewrite, but url_helper doesn't work
diff --git a/src/Klein/Klein.php b/src/Klein/Klein.php index <HASH>..<HASH> 100644 --- a/src/Klein/Klein.php +++ b/src/Klein/Klein.php @@ -748,19 +748,24 @@ class Klein */ private function validateRegularExpression($regex) { - $handled = false; - - $error_handler = function ($errno, $errst...
Making sure to restore the error handler correctly
diff --git a/MAVProxy/modules/lib/wxsettings.py b/MAVProxy/modules/lib/wxsettings.py index <HASH>..<HASH> 100644 --- a/MAVProxy/modules/lib/wxsettings.py +++ b/MAVProxy/modules/lib/wxsettings.py @@ -59,7 +59,7 @@ if __name__ == "__main__": print("Changing %s to %s" % (setting.name, setting.value)) # tes...
lib: wxsettings conversion to py3
diff --git a/src/js/plugin/dendrogram.js b/src/js/plugin/dendrogram.js index <HASH>..<HASH> 100644 --- a/src/js/plugin/dendrogram.js +++ b/src/js/plugin/dendrogram.js @@ -365,7 +365,10 @@ }); nodeUpdate.select("circle") - .attr("r", this.options.nodesize); + ...
On update, transition node colors as well.
diff --git a/spec/unit/pops/benchmark_spec.rb b/spec/unit/pops/benchmark_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/pops/benchmark_spec.rb +++ b/spec/unit/pops/benchmark_spec.rb @@ -31,7 +31,6 @@ $a = "interpolate ${foo} and stuff" class MyJSonSerializer < RGen::Serializer::JsonSerializer def attribute...
(maint) Remove calls to debugger in performance / serialization tests
diff --git a/Bridge/Symfony/Serializer/Normalizer/SaleNormalizer.php b/Bridge/Symfony/Serializer/Normalizer/SaleNormalizer.php index <HASH>..<HASH> 100644 --- a/Bridge/Symfony/Serializer/Normalizer/SaleNormalizer.php +++ b/Bridge/Symfony/Serializer/Normalizer/SaleNormalizer.php @@ -16,22 +16,6 @@ use Ekyna\Component\Re...
[Commerce] Remove formatter from sale normalizer.
diff --git a/dns_check/check.py b/dns_check/check.py index <HASH>..<HASH> 100644 --- a/dns_check/check.py +++ b/dns_check/check.py @@ -57,11 +57,11 @@ class DNSCheck(NetworkCheck): # If a specific DNS server was defined use it, else use the system default nameserver = instance.get('nameserver') - ...
[dns] fixing broken port changes. (#<I>)
diff --git a/vivarium/test_util.py b/vivarium/test_util.py index <HASH>..<HASH> 100644 --- a/vivarium/test_util.py +++ b/vivarium/test_util.py @@ -43,7 +43,7 @@ def pump_simulation(simulation, time_step_days=None, duration=None, iterations=N if isinstance(duration, numbers.Number): duration = pd.T...
Fixed off by one error in pump simulation
diff --git a/test/integration/client/api-tests.js b/test/integration/client/api-tests.js index <HASH>..<HASH> 100644 --- a/test/integration/client/api-tests.js +++ b/test/integration/client/api-tests.js @@ -6,7 +6,7 @@ var log = function() { //console.log.apply(console, arguments); } -var sink = new helper.Sink(4...
failing test for multiple calls of callback when multiple commands are executed
diff --git a/lib/OpenLayers/Control/Navigation.js b/lib/OpenLayers/Control/Navigation.js index <HASH>..<HASH> 100644 --- a/lib/OpenLayers/Control/Navigation.js +++ b/lib/OpenLayers/Control/Navigation.js @@ -261,8 +261,11 @@ OpenLayers.Control.Navigation = OpenLayers.Class(OpenLayers.Control, { * deltaZ - {Integer...
Don't round wheel change zoom for maps with fractional zoom
diff --git a/autopep8.py b/autopep8.py index <HASH>..<HASH> 100755 --- a/autopep8.py +++ b/autopep8.py @@ -556,9 +556,7 @@ class FixPEP8(object): ' ' * num_indent + target.lstrip()) def fix_e125(self, result): - """ Fix badly indented continuation lines when they don't distinguish - fr...
Return modified lines correctly Lines are indexed at 1.
diff --git a/code/pages/WikiPage.php b/code/pages/WikiPage.php index <HASH>..<HASH> 100644 --- a/code/pages/WikiPage.php +++ b/code/pages/WikiPage.php @@ -258,12 +258,23 @@ class WikiPage extends Page include_once SIMPLEWIKI_DIR.'/thirdparty/htmlpurifier-4.0.0-lite/library/HTMLPurifier.auto.php'; $purifier = ne...
BUGFIX: Convert purified shortcodes back to what they once were
diff --git a/hamster/reports.py b/hamster/reports.py index <HASH>..<HASH> 100644 --- a/hamster/reports.py +++ b/hamster/reports.py @@ -18,6 +18,7 @@ # along with Project Hamster. If not, see <http://www.gnu.org/licenses/>. from hamster import stuff import os +import datetime as dt def simple(facts, start_date, e...
Added missing datetime's import to fix an issue with dt.date.today() on simple report svn path=/trunk/; revision=<I>
diff --git a/src/components/View/View.js b/src/components/View/View.js index <HASH>..<HASH> 100644 --- a/src/components/View/View.js +++ b/src/components/View/View.js @@ -99,9 +99,19 @@ export default class View extends Component { })} key={panel.key || panel.props.id || `panel-hea...
Don't show aside in panel header if it isn't exists
diff --git a/lib/puppet/defaults.rb b/lib/puppet/defaults.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/defaults.rb +++ b/lib/puppet/defaults.rb @@ -627,10 +627,7 @@ module Puppet :factsync => [false, "Whether facts should be synced with the central server."], :factsignore => [".svn CVS...
[#<I>] Do not create a reports settings block Puts reportdir and reporturl back in the "main" block because this makes tests break for reasons I don't understand.
diff --git a/lib/nydp/builtin.rb b/lib/nydp/builtin.rb index <HASH>..<HASH> 100644 --- a/lib/nydp/builtin.rb +++ b/lib/nydp/builtin.rb @@ -5,8 +5,10 @@ module Nydp::Builtin module Base def invoke vm, args builtin_invoke vm, args + rescue Nydp::Error => ne + raise ne rescue Exception => e - ...
builtins: special handling for Nydp::Error, no longer need to special-case builtin/error
diff --git a/src/Service.php b/src/Service.php index <HASH>..<HASH> 100644 --- a/src/Service.php +++ b/src/Service.php @@ -58,14 +58,14 @@ final class Service $server = $useSsl ? self::ADCOPY_API_SECURE_SERVER : self::ADCOPY_API_SERVER; $errorpart = $error ? ';error=1' : ''; - return '<script...
Use heredoc rather than concatenated strings to simplify syntax.
diff --git a/src/event.js b/src/event.js index <HASH>..<HASH> 100644 --- a/src/event.js +++ b/src/event.js @@ -661,7 +661,7 @@ var withinElement = function( event ) { // Chrome does something similar, the parentNode property // can be accessed but is null. - if ( parent !== document && !parent.parentNode ) { +...
Fixes #<I>. Make sure parent is not null before crawling into its lap, so mouseenter is triggered on a mouseover event.
diff --git a/java/src/com/google/template/soy/jbcsrc/ExpressionCompiler.java b/java/src/com/google/template/soy/jbcsrc/ExpressionCompiler.java index <HASH>..<HASH> 100644 --- a/java/src/com/google/template/soy/jbcsrc/ExpressionCompiler.java +++ b/java/src/com/google/template/soy/jbcsrc/ExpressionCompiler.java @@ -449,1...
Comment-out filter expr logic in ExpressionCompiler for jbcsrc, since this is giving errors in [] for LineNumberTest. We decided to fix in a follow-up. GITHUB_BREAKING_CHANGES=NA ------------- Created by MOE: <URL>
diff --git a/middleman-core/lib/middleman-core/util.rb b/middleman-core/lib/middleman-core/util.rb index <HASH>..<HASH> 100644 --- a/middleman-core/lib/middleman-core/util.rb +++ b/middleman-core/lib/middleman-core/util.rb @@ -122,7 +122,7 @@ module Middleman Hamster::Set.new(res) when Hamster::Vector, ...
Update util.rb line <I>, Float type is also not something that can be dup'ed, similar to Fixnum and friends
diff --git a/sling_test.go b/sling_test.go index <HASH>..<HASH> 100644 --- a/sling_test.go +++ b/sling_test.go @@ -345,7 +345,7 @@ func TestBodySetter(t *testing.T) { t.Errorf("expected nil, got %v", err) } if body != c.expected { - t.Errorf("expected %v, got %v", c.expected, sling.Body) + t.Errorf("expec...
Fix a test printf format which is an error on Go tip
diff --git a/pystache/template.py b/pystache/template.py index <HASH>..<HASH> 100644 --- a/pystache/template.py +++ b/pystache/template.py @@ -75,20 +75,19 @@ class Template(object): captures['whitespace'] = '' # TODO: Process the remaining tag types. - print captures['name'] - fet...
Cleaning up the fetch routine a bit. Also deleting a bit of unintended diagnostic code.
diff --git a/webpack.config.js b/webpack.config.js index <HASH>..<HASH> 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,7 +5,7 @@ module.exports = { entry: './index.js', output: { path: path.resolve(__dirname, 'dist'), - filename: 'bundle.js', + filename: 'tenderkeys.min.js', library:...
update webpack config - update file name
diff --git a/options.js b/options.js index <HASH>..<HASH> 100644 --- a/options.js +++ b/options.js @@ -46,9 +46,13 @@ module.exports = function (argv, packageOpts, files, cwd, repo) { listItemIndent: '1' }, pluginPrefix: 'remark', + // "Whether to write successfully processed files" output: arg...
Add comments to unified-engine options
diff --git a/commands/server.go b/commands/server.go index <HASH>..<HASH> 100644 --- a/commands/server.go +++ b/commands/server.go @@ -186,7 +186,9 @@ func server(cmd *cobra.Command, args []string) error { if err != nil { return err } - language.Set("baseURL", baseURL) + if isMultiHost { + language....
commands: Fix baseURL server regression for multilingual sites This was introduced in <I>f<I>e<I>d<I>a<I>a7edbaae<I>aa a couple of days ago, and demonstrates that we really need better tests for the server/commands package. Fixes #<I>
diff --git a/web/mux.go b/web/mux.go index <HASH>..<HASH> 100644 --- a/web/mux.go +++ b/web/mux.go @@ -220,6 +220,6 @@ func (m *Mux) NotFound(handler interface{}) { // after all the routes have been added, and will be called automatically for // you (at some performance cost on the first request) if you do not call i...
Fix public API f<I>e<I>bb<I>a<I>c9ed<I>d<I>fd5b<I> accidentally removed web.Mux.Compile from the public API. This restores it.
diff --git a/render/template.go b/render/template.go index <HASH>..<HASH> 100644 --- a/render/template.go +++ b/render/template.go @@ -3,6 +3,7 @@ package render import ( "html/template" "io" + "log" "os" "path/filepath" "sort" @@ -67,7 +68,8 @@ func (s templateRenderer) exec(name string, data Data) (templat...
log a warning instead of returning an error for missing template engine
diff --git a/pandas/tests/test_multilevel.py b/pandas/tests/test_multilevel.py index <HASH>..<HASH> 100644 --- a/pandas/tests/test_multilevel.py +++ b/pandas/tests/test_multilevel.py @@ -2263,6 +2263,7 @@ Thur,Lunch,Yes,51.51,17""" def test_repeat(self): # GH 9361 + # fixed by # GH 7891 ...
update test comments to reference #<I>
diff --git a/structr-core/src/main/java/org/structr/common/RelType.java b/structr-core/src/main/java/org/structr/common/RelType.java index <HASH>..<HASH> 100644 --- a/structr-core/src/main/java/org/structr/common/RelType.java +++ b/structr-core/src/main/java/org/structr/common/RelType.java @@ -31,6 +31,6 @@ public enum...
fixed relationship type for groups containing users
diff --git a/example/idp2/idp_user.py b/example/idp2/idp_user.py index <HASH>..<HASH> 100644 --- a/example/idp2/idp_user.py +++ b/example/idp2/idp_user.py @@ -68,7 +68,7 @@ USERS = { "ou": "IT", "initials": "P", #"schacHomeOrganization": "example.com", - "email": "roland@example.com", ...
Corrected attribute name: email -> mail.
diff --git a/python/thunder/rdds/series.py b/python/thunder/rdds/series.py index <HASH>..<HASH> 100644 --- a/python/thunder/rdds/series.py +++ b/python/thunder/rdds/series.py @@ -191,11 +191,7 @@ class Series(Data): perc = 20 basefunc = lambda x: percentile(x, perc) - def func(y):...
Simplify normalize call to avoid function def
diff --git a/jooby/src/main/java/io/jooby/Value.java b/jooby/src/main/java/io/jooby/Value.java index <HASH>..<HASH> 100644 --- a/jooby/src/main/java/io/jooby/Value.java +++ b/jooby/src/main/java/io/jooby/Value.java @@ -237,7 +237,7 @@ public interface Value extends Iterable<Value> { * * @return Convert this val...
Make valueOrNull nullable The method Value.valueOrNull() is marked as NonNull, this fixes that and marks it as Nullable
diff --git a/packages/material-ui/src/PaginationItem/PaginationItem.js b/packages/material-ui/src/PaginationItem/PaginationItem.js index <HASH>..<HASH> 100644 --- a/packages/material-ui/src/PaginationItem/PaginationItem.js +++ b/packages/material-ui/src/PaginationItem/PaginationItem.js @@ -253,10 +253,15 @@ const Pagin...
[Pagination] Fix className forwarding when type is ellipsis (#<I>)
diff --git a/lib/classifier-reborn/bayes.rb b/lib/classifier-reborn/bayes.rb index <HASH>..<HASH> 100644 --- a/lib/classifier-reborn/bayes.rb +++ b/lib/classifier-reborn/bayes.rb @@ -12,7 +12,7 @@ module ClassifierReborn def initialize(*args) @categories = Hash.new options = { language: 'en' } - ...
Update bayes.rb Added ability to handle and array of classifications to the constructor.
diff --git a/sharding-proxy/src/main/java/io/shardingsphere/shardingproxy/backend/jdbc/connection/BackendConnection.java b/sharding-proxy/src/main/java/io/shardingsphere/shardingproxy/backend/jdbc/connection/BackendConnection.java index <HASH>..<HASH> 100644 --- a/sharding-proxy/src/main/java/io/shardingsphere/sharding...
#<I> Only change status to TRANSACTION while setAutoCommit was false.
diff --git a/lib/topologies/replset.js b/lib/topologies/replset.js index <HASH>..<HASH> 100644 --- a/lib/topologies/replset.js +++ b/lib/topologies/replset.js @@ -1022,7 +1022,6 @@ ReplSet.prototype.destroy = function(options) { // Clear out all monitoring for (var i = 0; i < this.intervalIds.length; i++) { ...
chore(topology): removing double timeout clear This was accidentally introduced during the following refactor: cd<I>d<I>f<I>ad<I>c6a<I>ffcfa<I>d1e7d3a2
diff --git a/builtin/providers/aws/resource_aws_directory_service_directory.go b/builtin/providers/aws/resource_aws_directory_service_directory.go index <HASH>..<HASH> 100644 --- a/builtin/providers/aws/resource_aws_directory_service_directory.go +++ b/builtin/providers/aws/resource_aws_directory_service_directory.go @...
provider/aws: Bump Directory Service creation timeout to <I>m
diff --git a/conductor-support/src/main/java/com/bluelinelabs/conductor/support/ControllerPagerAdapter.java b/conductor-support/src/main/java/com/bluelinelabs/conductor/support/ControllerPagerAdapter.java index <HASH>..<HASH> 100644 --- a/conductor-support/src/main/java/com/bluelinelabs/conductor/support/ControllerPage...
Fixes issue when retrieving an existing controller from a ControllerPagerAdapter (#<I>)
diff --git a/vendor/refinerycms/core/lib/refinery/crud.rb b/vendor/refinerycms/core/lib/refinery/crud.rb index <HASH>..<HASH> 100644 --- a/vendor/refinerycms/core/lib/refinery/crud.rb +++ b/vendor/refinerycms/core/lib/refinery/crud.rb @@ -275,6 +275,17 @@ module Refinery ) end + + m...
add helper methods to expose some of the options in crud. This allows the admin views to dynamically hide or show the search box or reorder link depending on what options you set with crud
diff --git a/src/Testing/Concerns/MakesHttpRequests.php b/src/Testing/Concerns/MakesHttpRequests.php index <HASH>..<HASH> 100644 --- a/src/Testing/Concerns/MakesHttpRequests.php +++ b/src/Testing/Concerns/MakesHttpRequests.php @@ -242,11 +242,13 @@ trait MakesHttpRequests public function seeJson(array $data = null...
This is a bit of a mistery. 1. I cannot find anything related to the original `PHPUnit\Framework\Assert::assertJson()` 2. This mainly aim to check if response is actually JSON.
diff --git a/client-adapter/launcher/src/main/java/com/alibaba/otter/canal/adapter/launcher/loader/AbstractCanalAdapterWorker.java b/client-adapter/launcher/src/main/java/com/alibaba/otter/canal/adapter/launcher/loader/AbstractCanalAdapterWorker.java index <HASH>..<HASH> 100644 --- a/client-adapter/launcher/src/main/ja...
fixed issue #<I>, NPE
diff --git a/marklogic-client-api/src/test/java/com/marklogic/client/test/datamovement/RowBatcherTest.java b/marklogic-client-api/src/test/java/com/marklogic/client/test/datamovement/RowBatcherTest.java index <HASH>..<HASH> 100644 --- a/marklogic-client-api/src/test/java/com/marklogic/client/test/datamovement/RowBatche...
Unit test to verify database-specific client with row batcher
diff --git a/generator/index.js b/generator/index.js index <HASH>..<HASH> 100644 --- a/generator/index.js +++ b/generator/index.js @@ -50,6 +50,12 @@ module.exports = (api, options = {}) => { 'let mainWindow: any' ) fs.writeFileSync(api.resolve('./src/background.ts'), background) + if (api.h...
[skip ci] generator: warn about history mode if router is installed
diff --git a/src/Storefront/Pagelet/Checkout/AjaxCart/CheckoutAjaxCartPageletLoadedEvent.php b/src/Storefront/Pagelet/Checkout/AjaxCart/CheckoutAjaxCartPageletLoadedEvent.php index <HASH>..<HASH> 100644 --- a/src/Storefront/Pagelet/Checkout/AjaxCart/CheckoutAjaxCartPageletLoadedEvent.php +++ b/src/Storefront/Pagelet/Ch...
NTR - Fix doubled event names
diff --git a/src/pydocstyle/cli.py b/src/pydocstyle/cli.py index <HASH>..<HASH> 100644 --- a/src/pydocstyle/cli.py +++ b/src/pydocstyle/cli.py @@ -55,7 +55,7 @@ def run_pydocstyle(use_pep257=False): count = 0 for error in errors: - sys.stderr.write('%s\n' % error) + sys.stdout.write('%s\n' % e...
changed stderr to stdout
diff --git a/config/projects/chefdk.rb b/config/projects/chefdk.rb index <HASH>..<HASH> 100644 --- a/config/projects/chefdk.rb +++ b/config/projects/chefdk.rb @@ -66,7 +66,7 @@ override :ruby, version: "2.1.4" override :'ruby-windows', version: "2.0.0-p451" ###### override :rubygems, version: "2.4.4"...
Bump test-kitchen to <I>
diff --git a/lib/devise.rb b/lib/devise.rb index <HASH>..<HASH> 100644 --- a/lib/devise.rb +++ b/lib/devise.rb @@ -378,8 +378,7 @@ module Devise # constant-time comparison algorithm to prevent timing attacks def self.secure_compare(a, b) - return false unless a.present? && b.present? - return false unless...
simplifying comparisons (avoind too much negatives) and adding unit test cases
diff --git a/spec/mangopay/client_spec.rb b/spec/mangopay/client_spec.rb index <HASH>..<HASH> 100644 --- a/spec/mangopay/client_spec.rb +++ b/spec/mangopay/client_spec.rb @@ -96,14 +96,14 @@ describe MangoPay::Client do trns = MangoPay::Client.fetch_wallet_transactions('fees', 'EUR') expect(trns).to be_ki...
Remove non reliable tests Because their outcome depends entirely on the having the right data in the right fields on the API side :-/
diff --git a/packages/tooltip/src/Tooltip.js b/packages/tooltip/src/Tooltip.js index <HASH>..<HASH> 100644 --- a/packages/tooltip/src/Tooltip.js +++ b/packages/tooltip/src/Tooltip.js @@ -80,5 +80,10 @@ Tooltip.propTypes = { /** When provided, it overrides the flyout's open state */ open: PropTypes.bool, /** Wh...
feat: Add openOnHoverDelay prop
diff --git a/source/decode.js b/source/decode.js index <HASH>..<HASH> 100644 --- a/source/decode.js +++ b/source/decode.js @@ -129,8 +129,8 @@ var Decode = (function() { , int ; - str = str.slice( 0, endIdx ) - int = str.replace(/i/, '').replace(/e/, ''); + str = str.slice( 0, endIdx ); + int ...
changed logic in getInteger for extracting desired part of the string
diff --git a/lib/proteus/kit.rb b/lib/proteus/kit.rb index <HASH>..<HASH> 100644 --- a/lib/proteus/kit.rb +++ b/lib/proteus/kit.rb @@ -17,8 +17,12 @@ module Proteus if system "git ls-remote #{url(kit_name)} #{repo_name} > /dev/null 2>&1" puts "Starting a new proteus-#{kit_name} project in #{repo_name}" ...
Make a first commit for the user
diff --git a/lib/cli/init-deployment.js b/lib/cli/init-deployment.js index <HASH>..<HASH> 100644 --- a/lib/cli/init-deployment.js +++ b/lib/cli/init-deployment.js @@ -129,7 +129,7 @@ module.exports = function (argv) { start: 'node server.js' }, dependencies: { - 'anvil-connect': '0.1....
bump anvil-connect version in cli generated package.json prior to release