hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
d4ad0a453de2b755a17f1f9e537fc07394de2cf4
diff --git a/utils/errors/errors.go b/utils/errors/errors.go index <HASH>..<HASH> 100644 --- a/utils/errors/errors.go +++ b/utils/errors/errors.go @@ -5,6 +5,7 @@ package errors import ( "fmt" + "reflect" "time" ) @@ -31,13 +32,22 @@ type Nature string // NewFailure creates a new Failure from a source erro...
[refactor.errors] Join failures built from failures
TheThingsNetwork_ttn
train
095d0abbab8e5c4f002f2d665c2d2c14cd3e09d6
diff --git a/bitset.go b/bitset.go index <HASH>..<HASH> 100644 --- a/bitset.go +++ b/bitset.go @@ -38,7 +38,7 @@ func (b *BitSet) Cap() uint { /// Test whether bit i is set. func (b *BitSet) Bit(i uint) bool { if b != nil && i < b.capacity { - return ((b.set[i/64] & (1 << (i % 64))) != 0) + return ((b.set[i>>6] ...
using bit shift instead of /: thanks to zhai
willf_bitset
train
98846249d55cec155c740f33be5004e8dc39678a
diff --git a/src/client/js/Panels/SnapEditor/SnapEditorControl.js b/src/client/js/Panels/SnapEditor/SnapEditorControl.js index <HASH>..<HASH> 100644 --- a/src/client/js/Panels/SnapEditor/SnapEditorControl.js +++ b/src/client/js/Panels/SnapEditor/SnapEditorControl.js @@ -747,14 +747,6 @@ console.log("Object changed to "...
Fixed attrInfo to pass schema as well on update Former-commit-id: fc<I>bf<I>b<I>e<I>d<I>ba0f6d6afd<I>
webgme_webgme-engine
train
246defd63f4ea1f911d31a9c203e4c15876a15a0
diff --git a/bibliopixel/drivers/serial/driver.py b/bibliopixel/drivers/serial/driver.py index <HASH>..<HASH> 100644 --- a/bibliopixel/drivers/serial/driver.py +++ b/bibliopixel/drivers/serial/driver.py @@ -84,9 +84,10 @@ class Serial(DriverBase): def _connect(self): try: - self.devices.find_...
Allow serial driver to hardcode self.dev (fix #<I>)
ManiacalLabs_BiblioPixel
train
ec54f5a76d6c1b7539fdbfd44b81ab4c15b3e387
diff --git a/robolectric/src/test/java/org/robolectric/shadows/ShadowTextToSpeechTest.java b/robolectric/src/test/java/org/robolectric/shadows/ShadowTextToSpeechTest.java index <HASH>..<HASH> 100644 --- a/robolectric/src/test/java/org/robolectric/shadows/ShadowTextToSpeechTest.java +++ b/robolectric/src/test/java/org/r...
Tweak ShadowTextToSpeech OnInitListener API Currently, ShadowTextToSpeech's OnInitListener API is inconsistent and confusing because the success case requires flushing the main Looper and the error case is executed inline. This does not allow for testing some scenarios, such as calling the error case asynchronously. ...
robolectric_robolectric
train
0f8f268e0a4f8ea2c948243afc10a97369355e96
diff --git a/web/modeshape-web-jcr-webdav/src/main/java/org/modeshape/web/jcr/webdav/ContentMapper.java b/web/modeshape-web-jcr-webdav/src/main/java/org/modeshape/web/jcr/webdav/ContentMapper.java index <HASH>..<HASH> 100644 --- a/web/modeshape-web-jcr-webdav/src/main/java/org/modeshape/web/jcr/webdav/ContentMapper.jav...
MODE-<I> WebDAV service should support customizing the node types that are treated as files Corrected calculation of last modified date on files.
ModeShape_modeshape
train
716b92aeb8bcb70cafc13a10b716a8ab2377c91c
diff --git a/public/js/main.js b/public/js/main.js index <HASH>..<HASH> 100644 --- a/public/js/main.js +++ b/public/js/main.js @@ -1,4 +1,4 @@ -function AposBlogPosts(optionsArg) { +function AposBlog(optionsArg) { var self = this; var options = { instance: 'blogPost', @@ -49,7 +49,7 @@ function AposBlogPosts...
Browser constructor name should depend on type name not instance type
apostrophecms-legacy_apostrophe-groups
train
15957928c974ca331cd719db8be3a65cf027c10e
diff --git a/remoting/src/main/java/org/jboss/as/remoting/RemotingSubsystemElement.java b/remoting/src/main/java/org/jboss/as/remoting/RemotingSubsystemElement.java index <HASH>..<HASH> 100644 --- a/remoting/src/main/java/org/jboss/as/remoting/RemotingSubsystemElement.java +++ b/remoting/src/main/java/org/jboss/as/remo...
Deployment refactoring. 1. Start to integrate deployment into the model. 2. Add mechanism to determine deployment chain and module loader was: <I>f6be<I>f<I>d<I>e<I>bd<I>d<I>f5ab
wildfly_wildfly-core
train
16773e98c46caf6b62c3ad27a3c687a914f789c5
diff --git a/lib/gds_api/need_api.rb b/lib/gds_api/need_api.rb index <HASH>..<HASH> 100644 --- a/lib/gds_api/need_api.rb +++ b/lib/gds_api/need_api.rb @@ -8,6 +8,10 @@ class GdsApi::NeedApi < GdsApi::Base get_list!("#{endpoint}/needs#{query}") end + def need(need_id) + get_json("#{endpoint}/needs/#{CGI.es...
Get a single need by its ID; add some helpers.
alphagov_gds-api-adapters
train
02f193b3574fa1b3163bdcab6da5a7cc41657c71
diff --git a/src/edit/css.js b/src/edit/css.js index <HASH>..<HASH> 100644 --- a/src/edit/css.js +++ b/src/edit/css.js @@ -14,18 +14,6 @@ insertCSS(` line-height: 1.2; } -.ProseMirror-content p:empty:after, -.ProseMirror-content li:empty:after, -.ProseMirror-content h1:empty:after, -.ProseMirror-content h2:empty:...
Use BRs instead of zwsp :after nodes to force display of empty blocks Since the old approach doesn't allow us to move the cursor into such blocks in Firefox.
ProseMirror_prosemirror-markdown
train
4fa08463df2206cf95d32152614b04836ed13143
diff --git a/tree_shaker/src/main/java/com/google/devtools/treeshaker/UsedCodeMarker.java b/tree_shaker/src/main/java/com/google/devtools/treeshaker/UsedCodeMarker.java index <HASH>..<HASH> 100644 --- a/tree_shaker/src/main/java/com/google/devtools/treeshaker/UsedCodeMarker.java +++ b/tree_shaker/src/main/java/com/goog...
Update UsedCodeMarker to export inner types of exported types. PiperOrigin-RevId: <I>
google_j2objc
train
b723b0b5968904ed7c613f6b04facb99c524ea6f
diff --git a/src/Console/Commands/Compose.php b/src/Console/Commands/Compose.php index <HASH>..<HASH> 100644 --- a/src/Console/Commands/Compose.php +++ b/src/Console/Commands/Compose.php @@ -68,8 +68,8 @@ class Compose extends Command $require = array(); if (isset($config->packages) && is_array($confi...
I forgot require was an object not an array
coenjacobs_mozart
train
32f48a156b35330440466d04be27f67dcd0c3755
diff --git a/riptide-spring-boot-starter/src/main/java/org/zalando/riptide/spring/RiptideAutoConfiguration.java b/riptide-spring-boot-starter/src/main/java/org/zalando/riptide/spring/RiptideAutoConfiguration.java index <HASH>..<HASH> 100644 --- a/riptide-spring-boot-starter/src/main/java/org/zalando/riptide/spring/Ript...
Replaced class references with names Fixes #<I>
zalando_riptide
train
5a4c3f8447301a0a32f99336e407130183fb192d
diff --git a/BimCombined/src/org/bimserver/combined/LocalDevBimCombinedServerStarter.java b/BimCombined/src/org/bimserver/combined/LocalDevBimCombinedServerStarter.java index <HASH>..<HASH> 100644 --- a/BimCombined/src/org/bimserver/combined/LocalDevBimCombinedServerStarter.java +++ b/BimCombined/src/org/bimserver/comb...
changed port to <I> because some systems don't have access to ports <<I>
opensourceBIM_BIMserver
train
f9e05d8c68a4f0f107741ff30ac3d394edfe1e50
diff --git a/lib/gds_api/version.rb b/lib/gds_api/version.rb index <HASH>..<HASH> 100644 --- a/lib/gds_api/version.rb +++ b/lib/gds_api/version.rb @@ -1,3 +1,3 @@ module GdsApi - VERSION = '7.25.0' + VERSION = '8.0.0' end
Bump the version to <I> This release includes changes to the Content API adapter from #<I> and #<I>. Changes to stub tag data in test helpers, which now inserts the tag type into the URL, will break tests in clients that rely on this legacy behaviour.
alphagov_gds-api-adapters
train
de2838c3fbb66f597d08b8432d826ff13cef3c3d
diff --git a/pymemcache/client/base.py b/pymemcache/client/base.py index <HASH>..<HASH> 100644 --- a/pymemcache/client/base.py +++ b/pymemcache/client/base.py @@ -372,9 +372,10 @@ class Client(object): flags Returns: - If noreply is True, the return value is always True. Otherwise...
Clarify noreply + self.default_noreply behavior (#<I>) For add(), replace(), cas(), and delete(), if noreply is True (or if it is unset and self.default_noreply is True), the return value is always True.
pinterest_pymemcache
train
8f8b39c1de2a77f91564a93366ea5b746884bfd2
diff --git a/lib/rubocop/ast/builder.rb b/lib/rubocop/ast/builder.rb index <HASH>..<HASH> 100644 --- a/lib/rubocop/ast/builder.rb +++ b/lib/rubocop/ast/builder.rb @@ -13,11 +13,21 @@ module RuboCop # parser = Parser::CurrentRuby.new(builder) # root_node = parser.parse(buffer) class Builder < Parser::...
Move builder node mapping to a human readable constant
rubocop-hq_rubocop
train
8c8a1fda63dcc5a9255c1af4b1e01bc52a1254fb
diff --git a/src/main/groovy/util/FactoryBuilderSupport.java b/src/main/groovy/util/FactoryBuilderSupport.java index <HASH>..<HASH> 100644 --- a/src/main/groovy/util/FactoryBuilderSupport.java +++ b/src/main/groovy/util/FactoryBuilderSupport.java @@ -735,7 +735,7 @@ public abstract class FactoryBuilderSupport extends B...
GROOVY-<I> open up FBS resolve* methods for extension
groovy_groovy-core
train
8b366cc82f78172f31fecb4c95d2ad300f28582d
diff --git a/howdoi/howdoi.py b/howdoi/howdoi.py index <HASH>..<HASH> 100755 --- a/howdoi/howdoi.py +++ b/howdoi/howdoi.py @@ -97,6 +97,11 @@ def _get_result(url): raise e +def _get_text(element): + ''' return inner text in pyquery element ''' + return element.text(squash_space=False) + + def _extra...
using new pyquery extract text API to fix no new line in the code answer issue
gleitz_howdoi
train
ec712b1143d5ce34dec901f2b02430b46c668497
diff --git a/spec/io_spec.rb b/spec/io_spec.rb index <HASH>..<HASH> 100644 --- a/spec/io_spec.rb +++ b/spec/io_spec.rb @@ -57,15 +57,15 @@ describe ChildProcess do it "pumps all output" do 10.times do |i| process = echo - + out = Tempfile.new("duplex") - + begin process...
Poll for expected output. This was the only way I could get this spec consistently working on both MRI and JRuby.
enkessler_childprocess
train
822c761758e6a31f54d87763b3108b58957f3898
diff --git a/albumentations/augmentations/functional.py b/albumentations/augmentations/functional.py index <HASH>..<HASH> 100644 --- a/albumentations/augmentations/functional.py +++ b/albumentations/augmentations/functional.py @@ -1136,3 +1136,7 @@ def py3round(number): return int(2.0 * round(number / 2.0)) ...
Fix the Lambda transform (#<I>)
albu_albumentations
train
d0f9f92c9d5492562bba869b1af2dab589625dc6
diff --git a/admin/settings/server.php b/admin/settings/server.php index <HASH>..<HASH> 100644 --- a/admin/settings/server.php +++ b/admin/settings/server.php @@ -261,7 +261,7 @@ $temp->add(new admin_setting_configselect('memcachedpconn', get_string('memcache get_string('confi...
MDL-<I> Fix registration link to old script
moodle_moodle
train
b5d6c36574696a10cfdb98a656c73c1f797ff38d
diff --git a/findbugs/src/java/edu/umd/cs/findbugs/FindBugs2.java b/findbugs/src/java/edu/umd/cs/findbugs/FindBugs2.java index <HASH>..<HASH> 100644 --- a/findbugs/src/java/edu/umd/cs/findbugs/FindBugs2.java +++ b/findbugs/src/java/edu/umd/cs/findbugs/FindBugs2.java @@ -148,7 +148,7 @@ public class FindBugs2 implements...
When reporting number of archives scanned to the progress callback, include archives on the aux classpath. git-svn-id: <URL>
spotbugs_spotbugs
train
527a23cb4d478db547d21bc23f1697bfdcc9ed6e
diff --git a/src/Breadcrumb/ActiveBreadcrumb.php b/src/Breadcrumb/ActiveBreadcrumb.php index <HASH>..<HASH> 100644 --- a/src/Breadcrumb/ActiveBreadcrumb.php +++ b/src/Breadcrumb/ActiveBreadcrumb.php @@ -6,7 +6,7 @@ use CrudView\Breadcrumb\Breadcrumb; class ActiveBreadcrumb extends Breadcrumb { /** - * @inher...
fix: use correct docblock syntax for inheritdoc
FriendsOfCake_crud-view
train
8ac422e8964739d7e32b8046bbaecd1fb3e75a45
diff --git a/lib/runcom/paths/common.rb b/lib/runcom/paths/common.rb index <HASH>..<HASH> 100644 --- a/lib/runcom/paths/common.rb +++ b/lib/runcom/paths/common.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true require "forwardable" -require "pathname" +require "refinements/pathnames" module Runcom module Paths...
Fixed common path to answer empty pathname when nil Necessary to make relative path behavior consistent for both empty and `nil` paths.
bkuhlmann_runcom
train
2ca10a5671d7cf3aee2e4249245040cee4de3087
diff --git a/lib/dm-core/associations/one_to_many.rb b/lib/dm-core/associations/one_to_many.rb index <HASH>..<HASH> 100644 --- a/lib/dm-core/associations/one_to_many.rb +++ b/lib/dm-core/associations/one_to_many.rb @@ -153,7 +153,6 @@ module DataMapper assert_mutable attributes = default_attribute...
Fixed a bug where OneToMany#build added the built object to the association twice
datamapper_dm-core
train
ad6ded482ed1ae6a8a59518579848c8cd6e38975
diff --git a/proselint/checks/garner/misspelling.py b/proselint/checks/garner/misspelling.py index <HASH>..<HASH> 100644 --- a/proselint/checks/garner/misspelling.py +++ b/proselint/checks/garner/misspelling.py @@ -61,6 +61,7 @@ def check(blob): ["jujitsu", ["jiujutsu"]], ["kaleidoscope", ...
Add examples from Garner's tip of the day
amperser_proselint
train
737801a3942fc0340ae6c419af35da6a6233fd32
diff --git a/lib/geocoder/stores/active_record.rb b/lib/geocoder/stores/active_record.rb index <HASH>..<HASH> 100644 --- a/lib/geocoder/stores/active_record.rb +++ b/lib/geocoder/stores/active_record.rb @@ -105,6 +105,8 @@ module Geocoder::Store # * +:order+ - column(s) for ORDER BY SQL clause; default...
Allow for setting a custom distance and bearing column.
alexreisner_geocoder
train
852b5f1a8b4f705b386a4aab4f130bd245c960dd
diff --git a/classes/Error.php b/classes/Error.php index <HASH>..<HASH> 100644 --- a/classes/Error.php +++ b/classes/Error.php @@ -12,11 +12,12 @@ */ class Error { - const MODE_SIMPLE = 0; - const MODE_HTML = 1; - const MODE_SILENT = 2; + const SIMPLE = 0; + const HTML = 1; + const SILENT = 2; + ...
[Error] added JSON mode
caffeina-core_core
train
c9a9c621b4ac2ca15aa846113dc4a38abb8472e8
diff --git a/Controller/Crud/Action/AddCrudAction.php b/Controller/Crud/Action/AddCrudAction.php index <HASH>..<HASH> 100644 --- a/Controller/Crud/Action/AddCrudAction.php +++ b/Controller/Crud/Action/AddCrudAction.php @@ -67,6 +67,8 @@ class AddCrudAction extends CrudAction { */ protected function _handle() { i...
Preset request data with db defaults in AddCrudAction
FriendsOfCake_crud-json-api
train
b29f7486c188b4096cea55d4148250244c6d0d14
diff --git a/spec/component/attrs/attrs.spec.js b/spec/component/attrs/attrs.spec.js index <HASH>..<HASH> 100644 --- a/spec/component/attrs/attrs.spec.js +++ b/spec/component/attrs/attrs.spec.js @@ -42,28 +42,28 @@ describe('attrs', () => { it('should merge passed with default attributes', done => { const...
Don't override default attributes values with undefined ones (closes #<I>) (#<I>)
dfilatov_vidom
train
04a3c492aa62d0f98bb964b6beb3b200da63f1ed
diff --git a/lib/jspath.js b/lib/jspath.js index <HASH>..<HASH> 100644 --- a/lib/jspath.js +++ b/lib/jspath.js @@ -271,7 +271,7 @@ var parse = (function() { expr = { type : SYNTAX.MATH_EXPR, op : lex().val, - args : [expr, parseAdditiveExpr()] + ...
fix order of arithmetic operations (close #<I>)
dfilatov_jspath
train
6c2cdc0b2029dba6c6811188ef351f2feaed21cc
diff --git a/mama_cas/locale/zh_CN/LC_MESSAGES/django.po b/mama_cas/locale/zh_CN/LC_MESSAGES/django.po index <HASH>..<HASH> 100644 --- a/mama_cas/locale/zh_CN/LC_MESSAGES/django.po +++ b/mama_cas/locale/zh_CN/LC_MESSAGES/django.po @@ -128,7 +128,7 @@ msgstr "你已使用 %s 的身份登录" msgid "Do you want to access %s as %s?" msgs...
Support "service" parameter in /logout The endpoint will continue to support both the "service" and "url" parameters for now, although CAS <I> has dropped the "url" parameter entirely.
jbittel_django-mama-cas
train
3148f3b4e2e654874e7bc0f62a4bf49d00615b26
diff --git a/core/Common.php b/core/Common.php index <HASH>..<HASH> 100644 --- a/core/Common.php +++ b/core/Common.php @@ -1549,7 +1549,13 @@ class Piwik_Common $refererParsed['query'] = ''; } $query = $refererParsed['query']; - + + // Google Referrers URLs sometimes have the fragment which contains the ke...
Improve google detection by getting the keyword from the URL fragment as it was found sometimes to appear as such in referer url git-svn-id: <URL>
matomo-org_matomo
train
2a4bccedee715b464ddf5d610f30a32d7eb6ec52
diff --git a/rules_callback.go b/rules_callback.go index <HASH>..<HASH> 100644 --- a/rules_callback.go +++ b/rules_callback.go @@ -101,6 +101,9 @@ func scanCallbackFunc(ctx *C.YR_SCAN_CONTEXT, message C.int, messageData, userDa if !ok { return C.CALLBACK_ERROR } + if cbc.ScanCallback == nil { + return C.CALLBAC...
Allow for nil (real nil) scan callback objects This does not make a lot of sense, but it should not cause a runtime panic.
hillu_go-yara
train
d42c71b6342f6ed7677255ab9748738ce93f74f1
diff --git a/modules/uadetector-core/src/test/java/net/sf/uadetector/parser/UpdateServiceTest.java b/modules/uadetector-core/src/test/java/net/sf/uadetector/parser/UpdateServiceTest.java index <HASH>..<HASH> 100644 --- a/modules/uadetector-core/src/test/java/net/sf/uadetector/parser/UpdateServiceTest.java +++ b/modules...
Improved the tests for class 'UpdateService'
before_uadetector
train
83cf3c65ed0f3390fe007d0639f9e6926a745c14
diff --git a/poloniex/poloniex.py b/poloniex/poloniex.py index <HASH>..<HASH> 100644 --- a/poloniex/poloniex.py +++ b/poloniex/poloniex.py @@ -68,7 +68,9 @@ class PoloniexPublic(object): def _public(self, command, **params): """Invoke the 'command' public API with optional params.""" params['comm...
raise for HTTP status code if not <I> This will help fix hard to investigate problems such as captcha problems.
Aula13_poloniex
train
62c435aab57f5fd180571a26253bb9281d025502
diff --git a/ontrack-extension-git/src/main/java/net/nemerosa/ontrack/extension/git/model/GitConfiguration.java b/ontrack-extension-git/src/main/java/net/nemerosa/ontrack/extension/git/model/GitConfiguration.java index <HASH>..<HASH> 100644 --- a/ontrack-extension-git/src/main/java/net/nemerosa/ontrack/extension/git/mo...
#<I> Git issues refactoring - removed obsolete method
nemerosa_ontrack
train
99cd45122ec0c89475645bdf532743d59f7bcf49
diff --git a/plugins/MultiSites/Controller.php b/plugins/MultiSites/Controller.php index <HASH>..<HASH> 100644 --- a/plugins/MultiSites/Controller.php +++ b/plugins/MultiSites/Controller.php @@ -68,60 +68,50 @@ class Piwik_MultiSites_Controller extends Piwik_Controller foreach ($siteIds as $idSite) { ...
Reverting wrong changes, fixes JS error
matomo-org_matomo
train
3e618888841fece5f57a114590799a4d2720b6fe
diff --git a/src/__test__/selianize/suite.spec.js b/src/__test__/selianize/suite.spec.js index <HASH>..<HASH> 100644 --- a/src/__test__/selianize/suite.spec.js +++ b/src/__test__/selianize/suite.spec.js @@ -39,7 +39,7 @@ describe("suite emitter", () => { name: "example suite", tests: ["1"] }; - ex...
added an expect to make sure the test doesnt prematuraly ends
SeleniumHQ_selenium-ide
train
3cc16f96356c149f031a4951fabfe2f234c898e2
diff --git a/tests/tests.py b/tests/tests.py index <HASH>..<HASH> 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -254,6 +254,28 @@ class LoginTest(UserMixin, TestCase): # Check that the signal was fired. mock_signal.assert_called_with(sender=ANY, request=ANY, user=user, device=device) + def ...
Fixed #<I> -- Login wizard should handle changing passwords Thanks to Jay McEntire for the bug report.
Bouke_django-two-factor-auth
train
5a67b87183b56208b5387c2c50dc92ef6fa692c1
diff --git a/invenio_deposit/api.py b/invenio_deposit/api.py index <HASH>..<HASH> 100644 --- a/invenio_deposit/api.py +++ b/invenio_deposit/api.py @@ -92,7 +92,7 @@ def has_status(method=None, status='draft'): @wraps(method) def wrapper(self, *args, **kwargs): """Check current deposit status.""" - ...
api: status property addition * Adds property to access deposit status through.
inveniosoftware_invenio-deposit
train
8271081777c305ecc883faaa762b9a024bcc3654
diff --git a/applications/commuter/components/contents/directory-listing.js b/applications/commuter/components/contents/directory-listing.js index <HASH>..<HASH> 100644 --- a/applications/commuter/components/contents/directory-listing.js +++ b/applications/commuter/components/contents/directory-listing.js @@ -1,6 +1,7 ...
introduce dependencies to jupyter extenstion * react-router-dom * webpack@4 * @nteract/octicons, @nteract/timeago
nteract_nteract
train
1739dc3d4170bd9f0808678ed67393cc72757bae
diff --git a/go.mod b/go.mod index <HASH>..<HASH> 100644 --- a/go.mod +++ b/go.mod @@ -71,7 +71,6 @@ require ( github.com/maxbrunsfeld/counterfeiter/v6 v6.4.1 github.com/pelletier/go-toml v1.9.3 github.com/peterbourgon/diskv v2.0.1+incompatible - github.com/pkg/errors v0.9.1 github.com/prometheus/client_golang ...
Avoid using github.com/pkg/errors The project is in maintenance mode so we can safely switch to the golang native `errors` package.
kubernetes_test-infra
train
0b65befe89ca554f9af64a8cccb331d7f5082c63
diff --git a/src/currencyEngine/indexEngine.js b/src/currencyEngine/indexEngine.js index <HASH>..<HASH> 100644 --- a/src/currencyEngine/indexEngine.js +++ b/src/currencyEngine/indexEngine.js @@ -338,9 +338,11 @@ export default (bcoin:any, txLibInfo:any) => class CurrencyEngine implements Abc async getTransactions (o...
harden to not fail when address has no txs.
EdgeApp_edge-currency-bitcoin
train
c84d6b1abb73ed7e69b9b6a4e39699853f5979a1
diff --git a/model/DataStore/MetaDataDeliverySyncTask.php b/model/DataStore/MetaDataDeliverySyncTask.php index <HASH>..<HASH> 100644 --- a/model/DataStore/MetaDataDeliverySyncTask.php +++ b/model/DataStore/MetaDataDeliverySyncTask.php @@ -150,7 +150,7 @@ class MetaDataDeliverySyncTask extends AbstractAction implements ...
refactor: modfiied to getResource the test init
oat-sa_extension-tao-delivery-rdf
train
3e71d2353493a9e2cc5bc114bb8f1a070d820e4e
diff --git a/packages/NetteTesterToPHPUnit/src/AssertManipulator.php b/packages/NetteTesterToPHPUnit/src/AssertManipulator.php index <HASH>..<HASH> 100644 --- a/packages/NetteTesterToPHPUnit/src/AssertManipulator.php +++ b/packages/NetteTesterToPHPUnit/src/AssertManipulator.php @@ -206,11 +206,7 @@ final class AssertMa...
apply code-quality on Rector code
rectorphp_rector
train
7e1215c39d18380eaab70ec14dc44ab5855f612c
diff --git a/components/rack/rack-int/src/main/java/org/torquebox/rack/deployers/RackWebApplicationDeployer.java b/components/rack/rack-int/src/main/java/org/torquebox/rack/deployers/RackWebApplicationDeployer.java index <HASH>..<HASH> 100644 --- a/components/rack/rack-int/src/main/java/org/torquebox/rack/deployers/Rac...
Per Adam Warski, we only turn on session replication (setDistributable) if web.xml is missing. To turn off session replication, provide a web.xml containing a minimum of <web-app/>.
torquebox_torquebox
train
4284d5f9b4f1991f6557339c11e2f9006570ad41
diff --git a/src/daemon/index.js b/src/daemon/index.js index <HASH>..<HASH> 100644 --- a/src/daemon/index.js +++ b/src/daemon/index.js @@ -28,6 +28,16 @@ const proxy = httpProxy.createServer({ ws: true }) +proxy.on('proxyReq', (proxyReq, req) => { + req._proxyReq = proxyReq +}) + +proxy.on('error', (err, req) =>...
fix http-proxy's crash when refresh quickly
typicode_hotel
train
9c22a193deafaa254c10f3583b288640ae33403d
diff --git a/specs/as_javascript/www_applet.js b/specs/as_javascript/www_applet.js index <HASH>..<HASH> 100644 --- a/specs/as_javascript/www_applet.js +++ b/specs/as_javascript/www_applet.js @@ -8,6 +8,10 @@ var assert = require("assert"); var fs = require("fs"); +var last = function (arr) { + return arr[arr.lengt...
Added: spec-related helper computers.
da99_www_app
train
4b99b14f0c4a3e3811360cc0894dcb7d284bc22c
diff --git a/telemetry/telemetry/core/backends/chrome/desktop_browser_backend.py b/telemetry/telemetry/core/backends/chrome/desktop_browser_backend.py index <HASH>..<HASH> 100644 --- a/telemetry/telemetry/core/backends/chrome/desktop_browser_backend.py +++ b/telemetry/telemetry/core/backends/chrome/desktop_browser_back...
[Telemetry] Fix unittests on mac. We needed to be more robust to products from previous builds. BUG=<I> Review URL: <URL>
catapult-project_catapult
train
0f605dae5cd04d826cfee9ed542732c278bd9df3
diff --git a/framework/core/CApplication.php b/framework/core/CApplication.php index <HASH>..<HASH> 100644 --- a/framework/core/CApplication.php +++ b/framework/core/CApplication.php @@ -243,7 +243,7 @@ abstract class CApplication extends CComponent { if(($runtimePath=realpath($path))===false || !is_dir($runtimePa...
Fixed a typo in exception message about runtime.
yiisoft_yii
train
d4b8edf2009cb484b3e50cdbc8503e992c841d49
diff --git a/sprd/model/DesignCategory.js b/sprd/model/DesignCategory.js index <HASH>..<HASH> 100644 --- a/sprd/model/DesignCategory.js +++ b/sprd/model/DesignCategory.js @@ -4,12 +4,31 @@ define(["sprd/data/SprdModel", "sprd/model/Design", "js/data/Collection"], funct schema: { designs: Collectio...
DEV-<I> - Upon first opening of partner tab designs, no designs are shown
spreadshirt_rAppid.js-sprd
train
7bd5e7c2890fafe2765bf99c0ef4ce7feb99334a
diff --git a/tests/ipopo_bundle.py b/tests/ipopo_bundle.py index <HASH>..<HASH> 100644 --- a/tests/ipopo_bundle.py +++ b/tests/ipopo_bundle.py @@ -96,11 +96,19 @@ class TestComponentFactory(object): @ComponentFactory(name=FACTORY_A) @Property("usable", PROP_USABLE, True) @Provides(specifications=IEchoService) -@Prov...
Added a test for the service controller
tcalmant_ipopo
train
96470694c7bda8c3ff4946386ef64d284fe735b3
diff --git a/lxd/main_activateifneeded.go b/lxd/main_activateifneeded.go index <HASH>..<HASH> 100644 --- a/lxd/main_activateifneeded.go +++ b/lxd/main_activateifneeded.go @@ -145,6 +145,21 @@ func (c *cmdActivateifneeded) Run(cmd *cobra.Command, args []string) error { } } + // Check for scheduled volume snapshot...
lxd/main_activateifneeded: Check for scheduled volume snapshots This checks for scheduled volume snapshots, and activates LXD if enabled.
lxc_lxd
train
d55c40b5925a60cae16c0c6571b175a3155b5f1f
diff --git a/sdk/storage/azure-storage-blob/azure/storage/blob/_blob_client.py b/sdk/storage/azure-storage-blob/azure/storage/blob/_blob_client.py index <HASH>..<HASH> 100644 --- a/sdk/storage/azure-storage-blob/azure/storage/blob/_blob_client.py +++ b/sdk/storage/azure-storage-blob/azure/storage/blob/_blob_client.py @...
Fixed delete_snapshots type (#<I>)
Azure_azure-sdk-for-python
train
ca1e01519d7356be50bdbaf514c3ddf57cf5297a
diff --git a/app/models/kuhsaft/page.rb b/app/models/kuhsaft/page.rb index <HASH>..<HASH> 100644 --- a/app/models/kuhsaft/page.rb +++ b/app/models/kuhsaft/page.rb @@ -166,7 +166,7 @@ module Kuhsaft self.bricks.unscoped.where(:locale => locale).destroy_all end - def clone_brick_to(brick, locale) + def clone_...
recursive brick cloning - wip
brandleadership_kuhsaft
train
09824d853b177524edbf167cf201e58c9afda993
diff --git a/snap7/server.py b/snap7/server.py index <HASH>..<HASH> 100644 --- a/snap7/server.py +++ b/snap7/server.py @@ -1,16 +1,10 @@ from ctypes import cdll, sizeof, byref, CFUNCTYPE, POINTER, c_int, c_char -#TODO: somehow find_lib doesn't work -""" from ctypes.util import find_library lib_location = find_libr...
found out why find_library didn't worked
gijzelaerr_python-snap7
train
de654dbb4e814ecd4ac705fb688577bb7c7929c7
diff --git a/scout/core/views.py b/scout/core/views.py index <HASH>..<HASH> 100644 --- a/scout/core/views.py +++ b/scout/core/views.py @@ -449,6 +449,7 @@ def email_sanger(institute_id, case_id, variant_id): # build variant page URL variant_url = url_for('.variant', institute_id=institute_id, ...
include gene lists for a variant sent for sanger sequencing
Clinical-Genomics_scout
train
af0305827b30cbe5ec2be7fc2ae84782c9f4bf5b
diff --git a/parsl/executors/high_throughput/process_worker_pool.py b/parsl/executors/high_throughput/process_worker_pool.py index <HASH>..<HASH> 100755 --- a/parsl/executors/high_throughput/process_worker_pool.py +++ b/parsl/executors/high_throughput/process_worker_pool.py @@ -253,8 +253,8 @@ class Manager(object): ...
Fix spacing in ready workers log message (#<I>)
Parsl_parsl
train
d87159e0e4a41e67b8f61518d25243fa137732f0
diff --git a/microcosm_flask/conventions/encoding.py b/microcosm_flask/conventions/encoding.py index <HASH>..<HASH> 100644 --- a/microcosm_flask/conventions/encoding.py +++ b/microcosm_flask/conventions/encoding.py @@ -89,8 +89,13 @@ def make_response(response_data, status_code=200, headers=None): # swagger do...
default Content-Type header in response as application/json
globality-corp_microcosm-flask
train
4c3533f4efa522bff2f65159e0154800c9bbdfab
diff --git a/misc/__init__.py b/misc/__init__.py index <HASH>..<HASH> 100644 --- a/misc/__init__.py +++ b/misc/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- import logging -__version__ = VERSION = '0.0.5' +__version__ = VERSION = '0.0.6' __project__ = PROJECT = 'django-misc' log = logging.getLogger( __nam...
remove html comments in clean_html
ilblackdragon_django-misc
train
2e390a12508789902114e7549ed08391380230db
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,8 @@ * Added support for Electron 5 (by [`KoenLav`](https://github.com/KoenLav) in [`#227`](https://github.com/wojtkowiak/meteor-desktop/pull/227)) * Allow config header Access-Control-Allow-Origin on...
Added support for private npm repository
wojtkowiak_meteor-desktop
train
ab98bffbb1a9d8e1df9fb673406f892ac7f8a414
diff --git a/cmd/tmsp-cli/tmsp-cli.go b/cmd/tmsp-cli/tmsp-cli.go index <HASH>..<HASH> 100644 --- a/cmd/tmsp-cli/tmsp-cli.go +++ b/cmd/tmsp-cli/tmsp-cli.go @@ -9,10 +9,10 @@ import ( "os" "strings" - "github.com/codegangsta/cli" . "github.com/tendermint/go-common" "github.com/tendermint/tmsp/client" "github....
codegangsta => urfave
tendermint_abci
train
a2b3487228e0d3fdf9a8f54356e18847168f9c99
diff --git a/src/job/index.js b/src/job/index.js index <HASH>..<HASH> 100644 --- a/src/job/index.js +++ b/src/job/index.js @@ -53,7 +53,7 @@ export const makeCallSync = (jobDesc) => { return (ctx, responseCb) => { // ctx.logger.debug('execute: ', jobDesc) - const job = _.hasIn(ctx, jobDesc.name) ?...
Fix wrong function name of missing job in makeCallSync
tombenke_npac
train
3fc19c072c84af16c996629ff410209af44bbb76
diff --git a/plugins/jobs/server/models/job.py b/plugins/jobs/server/models/job.py index <HASH>..<HASH> 100644 --- a/plugins/jobs/server/models/job.py +++ b/plugins/jobs/server/models/job.py @@ -174,7 +174,22 @@ class Job(AccessControlledModel): return job def filter(self, job, user): - # TODO re...
Add filter hook for job records. Plenty of downstream users of jobs will need the ability to redact or extend job information, so we add a nice event hook for that.
girder_girder
train
545d60839c9d047b1287d43a5e2377b74e4db68f
diff --git a/src/client.js b/src/client.js index <HASH>..<HASH> 100644 --- a/src/client.js +++ b/src/client.js @@ -25,7 +25,10 @@ const Client = class Client extends EventEmitter { var message = { port: port || 1 }; - if (payload instanceof Buffer) { + if (Array.isArray(payload)) { + payload...
accept array as payload, closes #<I> (#<I>) * accept array as payload, closes #<I> * use Buffer.isBuffer
TheThingsNetwork_node-app-sdk
train
a37a6197fea1334632fb7d31bbefe9ae10919551
diff --git a/dev/run_regression_test.py b/dev/run_regression_test.py index <HASH>..<HASH> 100755 --- a/dev/run_regression_test.py +++ b/dev/run_regression_test.py @@ -123,7 +123,7 @@ class BasicTests(TDLTemplate): clone = pickle.loads(pickled) self.compareConsoles(self.console, clone, 'pickled console...
set font at runtime experiment, still unreliable
libtcod_python-tcod
train
0fe3a70599cb36924141b43d6d9857d501e5e5ab
diff --git a/src/Charcoal/Model/AbstractModel.php b/src/Charcoal/Model/AbstractModel.php index <HASH>..<HASH> 100644 --- a/src/Charcoal/Model/AbstractModel.php +++ b/src/Charcoal/Model/AbstractModel.php @@ -148,7 +148,7 @@ abstract class AbstractModel implements * * @return boolean */ - public functio...
post_update, pre_save, etc. are now public.
locomotivemtl_charcoal-core
train
556b6ec22c94c5791cb9dc60b2e2c801ccb552f2
diff --git a/src/connection/enterprise/actions.js b/src/connection/enterprise/actions.js index <HASH>..<HASH> 100644 --- a/src/connection/enterprise/actions.js +++ b/src/connection/enterprise/actions.js @@ -39,7 +39,8 @@ export function logIn(id) { return logInSSO(id, ssoConnection); } - logInAD(id, findADCo...
Fix connection selection for enterprise user/pass
auth0_lock
train
3e10d28c8e0a1f40f8e3d447c939845c5c491584
diff --git a/plugin/geomajas-widget-utility/utility-common-gwt/src/main/java/org/geomajas/widget/utility/common/client/action/AbstractButtonAction.java b/plugin/geomajas-widget-utility/utility-common-gwt/src/main/java/org/geomajas/widget/utility/common/client/action/AbstractButtonAction.java index <HASH>..<HASH> 100644...
GUW-<I>: To be able to determine the layout of a button (in the ribbon to start with) the buttonLayout field is added.
geomajas_geomajas-project-server
train
a52ea9c10eade7b9ca269ac005893fccfa0b0c88
diff --git a/addon/hint/xml-hint.js b/addon/hint/xml-hint.js index <HASH>..<HASH> 100644 --- a/addon/hint/xml-hint.js +++ b/addon/hint/xml-hint.js @@ -37,6 +37,7 @@ Pos(cur.line, token.type == "string" ? token.start : token.end)); var atName = before.match(/([^\s\u00a0=<>\"\']...
[xml-hint addon] Allow attribute values to be dynamically computed
codemirror_CodeMirror
train
c8f12462ac27106c832dabcf0559bc03e77288bb
diff --git a/server/middleware/apiProxy.js b/server/middleware/apiProxy.js index <HASH>..<HASH> 100644 --- a/server/middleware/apiProxy.js +++ b/server/middleware/apiProxy.js @@ -21,7 +21,7 @@ function apiProxy(dataAdapter) { api.path = apiProxy.getApiPath(req.path); api.api = apiProxy.getApiName(req.path); ...
use ip instead of connection.remoteAddress see express.js request documentation
rendrjs_rendr
train
59034984e23562f6daaba129ab833a89c3496185
diff --git a/lib/manager/maven/update.js b/lib/manager/maven/update.js index <HASH>..<HASH> 100644 --- a/lib/manager/maven/update.js +++ b/lib/manager/maven/update.js @@ -20,6 +20,9 @@ function updateAtPosition(fileContent, upgrade, endingAnchor = '"') { const replacedPart = versionPart.replace(currentValue, newVa...
fix(maven): Fix issues with updating for grouped versions (#<I>)
renovatebot_renovate
train
a31bddbe916e7b6b152576fe8ccfd091de0cb43a
diff --git a/quest-owlapi3/src/test/java/org/semanticweb/ontop/reformulation/tests/ComplexSelectMappingVirtualABoxTest.java b/quest-owlapi3/src/test/java/org/semanticweb/ontop/reformulation/tests/ComplexSelectMappingVirtualABoxTest.java index <HASH>..<HASH> 100644 --- a/quest-owlapi3/src/test/java/org/semanticweb/ontop...
More explicit message if a non-eliminated self-join is detected.
ontop_ontop
train
d1f04647dbad4d942bf29795b246045e23e38338
diff --git a/NavigationReactNative/sample/web/twitter/navigation-react-native-web.js b/NavigationReactNative/sample/web/twitter/navigation-react-native-web.js index <HASH>..<HASH> 100644 --- a/NavigationReactNative/sample/web/twitter/navigation-react-native-web.js +++ b/NavigationReactNative/sample/web/twitter/navigati...
When back to functional component now state removed
grahammendick_navigation
train
878ce9acbe69d5d7aff9ddc4cbfb773461975c87
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup(name='GeminiMotorDrive', url='https://github.com/frejanordsiek/GeminiMotorDrive', py_modules=['GeminiMotorDrive'], requires=['serial'], - license='BSD', + license='Apache', ...
Changed a forgotten setup option for changing the license from 2-clause BSD to Apache <I>
frejanordsiek_GeminiMotorDrive
train
acfd079dbebd53a6d753550e46866392e9ab495f
diff --git a/client/state/notices/middleware.js b/client/state/notices/middleware.js index <HASH>..<HASH> 100644 --- a/client/state/notices/middleware.js +++ b/client/state/notices/middleware.js @@ -209,19 +209,19 @@ const onSiteMonitorSettingsUpdateFailure = ( dispatch ) => dispatch( const onSiteDelete = ( dispatch, ...
Fix usage of notice id in notices middleware for site deletion actions (#<I>)
Automattic_wp-calypso
train
a3ddb22e28d1343e4833bdd20c11ce83e7893409
diff --git a/chess_py/core/algebraic/location.py b/chess_py/core/algebraic/location.py index <HASH>..<HASH> 100644 --- a/chess_py/core/algebraic/location.py +++ b/chess_py/core/algebraic/location.py @@ -36,13 +36,11 @@ Examples (shown on board below): Copyright © 2016 Aubhro Sengupta. All rights reserved. """ -from...
Rewrite Knight move generator to handle exceptions
LordDarkula_chess_py
train
77303ad97cc58deb8ea7d93ec973a8872dd1cb4c
diff --git a/go/vt/primecache/primecache.go b/go/vt/primecache/primecache.go index <HASH>..<HASH> 100644 --- a/go/vt/primecache/primecache.go +++ b/go/vt/primecache/primecache.go @@ -263,21 +263,21 @@ func (pc *PrimeCache) OneRun() { // get the slave status slavestat, err := pc.getSlaveStatus() if err != nil { - ...
Reducing log in primecache.
vitessio_vitess
train
ac14717bb98372f2059b41c8832b4cefa6e4bc9d
diff --git a/lib/ticketmaster.rb b/lib/ticketmaster.rb index <HASH>..<HASH> 100644 --- a/lib/ticketmaster.rb +++ b/lib/ticketmaster.rb @@ -3,6 +3,7 @@ interacter project ticket + rubygems systems/github }.each {|lib| require 'ticketmaster/' + lib } @@ -17,4 +18,4 @@ module TicketMaster end github = ...
Rubygems as dependency, debug stuff.
hybridgroup_taskmapper
train
b09114ec1d14e10e43c1977fefc476f39d1cd4b2
diff --git a/tests/integration/modules/cmdmod.py b/tests/integration/modules/cmdmod.py index <HASH>..<HASH> 100644 --- a/tests/integration/modules/cmdmod.py +++ b/tests/integration/modules/cmdmod.py @@ -28,7 +28,10 @@ class CMDModuleTest(integration.ModuleCase): ''' cmd.run ''' - shell...
avoid key error is not SHELL env var
saltstack_salt
train
0a5bbe35ce546613cafe1c5b4d90e75d15d96625
diff --git a/indra/assemblers/html/assembler.py b/indra/assemblers/html/assembler.py index <HASH>..<HASH> 100644 --- a/indra/assemblers/html/assembler.py +++ b/indra/assemblers/html/assembler.py @@ -273,43 +273,44 @@ class HtmlAssembler(object): # Update the top level grouping. if isinstance...
Fix handling of agents in assembler.
sorgerlab_indra
train
ee8a8ec7fbefb60fab961d7abaa605f44b3d61ad
diff --git a/nfc/ndef/bt_record.py b/nfc/ndef/bt_record.py index <HASH>..<HASH> 100644 --- a/nfc/ndef/bt_record.py +++ b/nfc/ndef/bt_record.py @@ -111,9 +111,12 @@ class BluetoothConfigRecord(Record): @simple_pairing_hash.setter def simple_pairing_hash(self, value): - if len(value) != 16: - ...
allow setting the BT hash and rand attributes to None
nfcpy_nfcpy
train
7949ecdddee925e88a93edf7d75b6ab442bdfa95
diff --git a/lionengine-core-awt/src/main/java/com/b3dgs/lionengine/awt/KeyboardAwt.java b/lionengine-core-awt/src/main/java/com/b3dgs/lionengine/awt/KeyboardAwt.java index <HASH>..<HASH> 100644 --- a/lionengine-core-awt/src/main/java/com/b3dgs/lionengine/awt/KeyboardAwt.java +++ b/lionengine-core-awt/src/main/java/com...
#<I>: Keyboard Control key left and right separated.
b3dgs_lionengine
train
b18ceea2f6a4d1cc8950d5dfda87b015dfe83afd
diff --git a/bots.go b/bots.go index <HASH>..<HASH> 100644 --- a/bots.go +++ b/bots.go @@ -1198,7 +1198,7 @@ func sendMessage(m *OutgoingMessage) error { db := mongoSession.Clone().DB(mongo.Database) defer db.Session.Close() - removeHooksForChat(db, m.ChatID) + removeHooksForChat(db, m.BotID, m.ChatID) ...
fix removeHooksForChat bug kicking one bot from chat with multiple Integram's bot have resulted in other bots hooks for that chat removed from user's data
requilence_integram
train
c1d9dc8e2331e9135190a1e6a4dbfbe1e617b52b
diff --git a/Klein/Klein.php b/Klein/Klein.php index <HASH>..<HASH> 100644 --- a/Klein/Klein.php +++ b/Klein/Klein.php @@ -232,55 +232,56 @@ class Klein * </code> * * @param string | array $method HTTP Method to match - * @param string $route Route URI to match + * @param string...
Changing variable name to resolve some potential confusion due to ambiguity
klein_klein.php
train
5310885c40631af06e92d68ea3eaa9036b1fb455
diff --git a/lib/ripl/irb.rb b/lib/ripl/irb.rb index <HASH>..<HASH> 100644 --- a/lib/ripl/irb.rb +++ b/lib/ripl/irb.rb @@ -1,6 +1,6 @@ module Ripl module Irb - VERSION = '0.1.1' + VERSION = '0.1.2' def before_loop mock_irb
Bumped to version <I>
cldwalker_ripl-irb
train
c64d1fb0d76834f2e4c986d25a292e96e835a3e8
diff --git a/server/src/main/java/org/jboss/as/server/deployment/module/VFSResourceLoader.java b/server/src/main/java/org/jboss/as/server/deployment/module/VFSResourceLoader.java index <HASH>..<HASH> 100644 --- a/server/src/main/java/org/jboss/as/server/deployment/module/VFSResourceLoader.java +++ b/server/src/main/jav...
[WFLY-<I>] Avoid signing issues due to concurrent stream reading
wildfly_wildfly
train
b4a622922c99f756c9b2e997845d4dd68e550386
diff --git a/core/src/main/java/hudson/FilePath.java b/core/src/main/java/hudson/FilePath.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/hudson/FilePath.java +++ b/core/src/main/java/hudson/FilePath.java @@ -2891,11 +2891,7 @@ public final class FilePath implements SerializableOnlyOverRemoting { } ...
Improve FilePath API and Javadoc (#<I>)
jenkinsci_jenkins
train
91acee4ecabc054135ea19de7179377df2daccfe
diff --git a/src/lokijs.js b/src/lokijs.js index <HASH>..<HASH> 100644 --- a/src/lokijs.js +++ b/src/lokijs.js @@ -697,7 +697,7 @@ var loki = (function () { /** Transactions properties */ // is collection transactional - this.transactional = transactionOptions.method || false; + this.transactional = t...
clone function fixed to support only parse stringify
techfort_LokiJS
train
dace1a1a346c39c6b3786e0f6df8a6c2fa6c2d42
diff --git a/Library/Ldap/Ldap.php b/Library/Ldap/Ldap.php index <HASH>..<HASH> 100644 --- a/Library/Ldap/Ldap.php +++ b/Library/Ldap/Ldap.php @@ -22,6 +22,7 @@ class Ldap private $host; private $port; private $rootdn; + private $conn; /** * @DI\InjectParams({"ch" = @DI\Inject("claroline....
Fixing ldap test.
claroline_CoreBundle
train
7292f91f502cf039ee8eedfb894fb01ba515dd17
diff --git a/lib/Form.php b/lib/Form.php index <HASH>..<HASH> 100644 --- a/lib/Form.php +++ b/lib/Form.php @@ -106,7 +106,8 @@ class Form extends AbstractView { * @param string $msg message to show */ function showAjaxError($field,$msg){ - $this->ajax()->displayAlert(strip_tags($msg))->execute(); + //$this->a...
Form in AJAX mode will now show pretty errors instead of alerts
atk4_atk4
train
2cd5b426a8548c87f75e4afa0f27fca50918b715
diff --git a/src/ossos/utils/assess_blinking_progress.py b/src/ossos/utils/assess_blinking_progress.py index <HASH>..<HASH> 100755 --- a/src/ossos/utils/assess_blinking_progress.py +++ b/src/ossos/utils/assess_blinking_progress.py @@ -19,13 +19,13 @@ def print_progress_stats(task, directory): user_progress = colle...
more useful for this to display total progress through all types of files (fk, scrambled, p).
OSSOS_MOP
train
05ef77c8554ead48386ca03d11b1c29b4383b904
diff --git a/lib/rabl/version.rb b/lib/rabl/version.rb index <HASH>..<HASH> 100644 --- a/lib/rabl/version.rb +++ b/lib/rabl/version.rb @@ -1,3 +1,3 @@ module Rabl - VERSION = "0.6.1" + VERSION = "0.6.2" end
Bump to version <I>
nesquena_rabl
train
f2591b666419e06017b2327f7729440c122bf675
diff --git a/gson/src/main/java/com/google/gson/Gson.java b/gson/src/main/java/com/google/gson/Gson.java index <HASH>..<HASH> 100644 --- a/gson/src/main/java/com/google/gson/Gson.java +++ b/gson/src/main/java/com/google/gson/Gson.java @@ -420,6 +420,10 @@ public final class Gson { */ public <T> TypeAdapter<T> ge...
adjusted factory finding code to take into account non-present factories
google_gson
train
f6cc363ea8891077c37f1f86712ecf76a48cc7cc
diff --git a/ford/sourceform.py b/ford/sourceform.py index <HASH>..<HASH> 100644 --- a/ford/sourceform.py +++ b/ford/sourceform.py @@ -351,7 +351,13 @@ class FortranBase(object): self.meta['summary'] = md.convert(self.meta['summary']) self.meta['summary'] = ford.utils.sub_macros(ford.utils.sub...
Fix <I>: Inc. all proc doc when missing read more
Fortran-FOSS-Programmers_ford
train
3a71bcc9952664b1a16073c8018531ccb236f29b
diff --git a/core/src/services/routing.js b/core/src/services/routing.js index <HASH>..<HASH> 100644 --- a/core/src/services/routing.js +++ b/core/src/services/routing.js @@ -189,6 +189,26 @@ class RoutingClass { const pathUrlRaw = path && path.length ? GenericHelpers.getPathWithoutHash(path) : ''; const ...
Prevent to open a node w/o children and empty viewUrl (#<I>)
kyma-project_luigi
train
c0535ec20b629ec9cf4e13c75cf65563ae2bbb4c
diff --git a/Kwf/Exception/Logger/Raven.php b/Kwf/Exception/Logger/Raven.php index <HASH>..<HASH> 100644 --- a/Kwf/Exception/Logger/Raven.php +++ b/Kwf/Exception/Logger/Raven.php @@ -17,8 +17,6 @@ class Kwf_Exception_Logger_Raven extends Kwf_Exception_Logger_Abstract if (!$dsn) { throw new Kwf_Exc...
Remove autoload for raven because it's done from composer
koala-framework_koala-framework
train
d5d9479003f075549111c0cdec12fd623f89aa68
diff --git a/catalog/app/website/pages/Landing/Highlights/Highlights.js b/catalog/app/website/pages/Landing/Highlights/Highlights.js index <HASH>..<HASH> 100644 --- a/catalog/app/website/pages/Landing/Highlights/Highlights.js +++ b/catalog/app/website/pages/Landing/Highlights/Highlights.js @@ -58,7 +58,17 @@ export def...
Landing/Hightlights: revert content changes (#<I>)
quiltdata_quilt
train