diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/base/src/main/java/uk/ac/ebi/atlas/profiles/ExpressionsRowDeserializer.java b/base/src/main/java/uk/ac/ebi/atlas/profiles/ExpressionsRowDeserializer.java index <HASH>..<HASH> 100644 --- a/base/src/main/java/uk/ac/ebi/atlas/profiles/ExpressionsRowDeserializer.java +++ b/base/src/main/java/uk/ac/ebi/atlas/pr...
Some better explanation of why this raises a warning and, unless we change the var-args method, it can’t be avoided
diff --git a/johnny/tests/web.py b/johnny/tests/web.py index <HASH>..<HASH> 100644 --- a/johnny/tests/web.py +++ b/johnny/tests/web.py @@ -6,6 +6,7 @@ from django.conf import settings from django.db import connection from johnny import middleware +import django import base try: @@ -40,6 +41,9 @@ class TestTransa...
the check for the bug in django's TransactionMiddleware was actually failing in <I> because that bug is fixed in <I>; lets not check for it anymore; all non-multidb tests are now working in stable django releases > <I>, and django-trunk to boot
diff --git a/javascript/webdriver-jsapi/locators.js b/javascript/webdriver-jsapi/locators.js index <HASH>..<HASH> 100644 --- a/javascript/webdriver-jsapi/locators.js +++ b/javascript/webdriver-jsapi/locators.js @@ -66,7 +66,7 @@ webdriver.Locator.factory_ = function(type) { webdriver.Locator.Strategy = { 'className...
JasonLeyba: Use the correct strategy name for CSS locators. r<I>
diff --git a/news-bundle/src/Resources/contao/dca/tl_news.php b/news-bundle/src/Resources/contao/dca/tl_news.php index <HASH>..<HASH> 100644 --- a/news-bundle/src/Resources/contao/dca/tl_news.php +++ b/news-bundle/src/Resources/contao/dca/tl_news.php @@ -681,7 +681,7 @@ class tl_news extends Backend while ($objAl...
[News] Move the column names into their own language namespace (see #<I>)
diff --git a/assets/live-tools/tools.js b/assets/live-tools/tools.js index <HASH>..<HASH> 100644 --- a/assets/live-tools/tools.js +++ b/assets/live-tools/tools.js @@ -52,7 +52,6 @@ if(!window.crabfarm) { var removeOverlay = function() { overlay.remove(); - window.crabfarm.showSelectorGadget(); }; ...
feat(live): adds examine method Also disables selector gadget by default
diff --git a/src/models/Part.php b/src/models/Part.php index <HASH>..<HASH> 100644 --- a/src/models/Part.php +++ b/src/models/Part.php @@ -108,7 +108,7 @@ class Part extends \hipanel\base\Model [['id', 'src_id', 'dst_id', 'move_type'], 'required', 'on' => 'repair'], // Update - [[...
Fixed: `order_id` is not required at part update
diff --git a/src/Panda/Views/Viewer.php b/src/Panda/Views/Viewer.php index <HASH>..<HASH> 100644 --- a/src/Panda/Views/Viewer.php +++ b/src/Panda/Views/Viewer.php @@ -102,11 +102,7 @@ class Viewer } // Load the view file - if ($this->executable) { - $this->output = include $this->v...
Simplify if to a ternary operator
diff --git a/src/Form/TermsOfUseForm.php b/src/Form/TermsOfUseForm.php index <HASH>..<HASH> 100644 --- a/src/Form/TermsOfUseForm.php +++ b/src/Form/TermsOfUseForm.php @@ -219,7 +219,7 @@ class TermsOfUseForm extends FormBase { $config->save(); $this->messenger->addMessage($this->t('Open Y Terms and Cond...
OS-<I> updated redirect route
diff --git a/BaseBundle/Tests/DependencyInjection/Compiler/TwigGlobalsCompilerPassTest.php b/BaseBundle/Tests/DependencyInjection/Compiler/TwigGlobalsCompilerPassTest.php index <HASH>..<HASH> 100644 --- a/BaseBundle/Tests/DependencyInjection/Compiler/TwigGlobalsCompilerPassTest.php +++ b/BaseBundle/Tests/DependencyInje...
delete comment auto-generate by ide
diff --git a/gcs/conn.go b/gcs/conn.go index <HASH>..<HASH> 100644 --- a/gcs/conn.go +++ b/gcs/conn.go @@ -18,6 +18,8 @@ import ( "net/http" "time" + "golang.org/x/oauth2" + "github.com/jacobsa/reqtrace" storagev1 "google.golang.org/api/storage/v1" @@ -40,10 +42,11 @@ type Conn interface { // Configurati...
Accept a token source instead of an HTTP client. This slightly reduces the user's cognitive load for boilerplate, and makes it easier to centralize wiring of httputil debugging.
diff --git a/timber.php b/timber.php index <HASH>..<HASH> 100644 --- a/timber.php +++ b/timber.php @@ -113,7 +113,7 @@ class Timber { */ public static function get_posts($query = false, $PostClass = 'TimberPost'){ $posts = TimberPostGetter::get_posts($query, $PostClass); - return self::maybe_...
replaced call to self with TimberPostGetter #<I>
diff --git a/library/Theme/Navigation.php b/library/Theme/Navigation.php index <HASH>..<HASH> 100644 --- a/library/Theme/Navigation.php +++ b/library/Theme/Navigation.php @@ -111,9 +111,9 @@ class Navigation $label = 'Translate'; if (get_field('google_translate_show_as', 'option') == 'icon') { - ...
Default to normal sized icon in header
diff --git a/src/webroot/cms/blog-manager/blog/blog.js b/src/webroot/cms/blog-manager/blog/blog.js index <HASH>..<HASH> 100644 --- a/src/webroot/cms/blog-manager/blog/blog.js +++ b/src/webroot/cms/blog-manager/blog/blog.js @@ -1052,7 +1052,7 @@ function (Y) { if (this.options.standalone) { // Open content...
#<I> Blog app - Fixed incorrect path being opened after blog post is created
diff --git a/grimoire_elk/enriched/mediawiki.py b/grimoire_elk/enriched/mediawiki.py index <HASH>..<HASH> 100644 --- a/grimoire_elk/enriched/mediawiki.py +++ b/grimoire_elk/enriched/mediawiki.py @@ -75,8 +75,7 @@ class MediaWikiEnrich(Enrich): for revision in revisions: user = self.get_sh_identi...
[enrich-mediawiki] Replace list with yield This code replaces the list used in the method get_identities with a yield, thus reducing the memory footprint.
diff --git a/vulcan/errors.py b/vulcan/errors.py index <HASH>..<HASH> 100644 --- a/vulcan/errors.py +++ b/vulcan/errors.py @@ -2,7 +2,7 @@ from twisted.python.failure import Failure from twisted.web.error import Error from twisted.web import http -from vulcan import log +from twisted.python import log from vulcan....
use trial TestCase instead of treq import log from twisted instead of vulcan
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -46,15 +46,13 @@ if __name__ == "__main__": python_requires='>=3.6', packages=[ 'codespell_lib', + 'codespell_lib.tests', 'codespell_lib.data', ], ...
MAINT: Add tests as submodule (#<I>)
diff --git a/javascript/web/LiveSearchGOlr.js b/javascript/web/LiveSearchGOlr.js index <HASH>..<HASH> 100644 --- a/javascript/web/LiveSearchGOlr.js +++ b/javascript/web/LiveSearchGOlr.js @@ -31,7 +31,10 @@ function LiveSearchGOlrInit(){ ll('Using _establish_buttons'); if( personality == 'annotation' ){ manage...
only show ann matrix button in labs/beta
diff --git a/lib/Core/SourceCodeLocator/TemporarySourceLocator.php b/lib/Core/SourceCodeLocator/TemporarySourceLocator.php index <HASH>..<HASH> 100644 --- a/lib/Core/SourceCodeLocator/TemporarySourceLocator.php +++ b/lib/Core/SourceCodeLocator/TemporarySourceLocator.php @@ -8,6 +8,27 @@ use Phpactor\WorseReflection\Cor...
Add note about the suitability of the temporary source locator
diff --git a/source/test/common/test_error_preemption_handling.py b/source/test/common/test_error_preemption_handling.py index <HASH>..<HASH> 100644 --- a/source/test/common/test_error_preemption_handling.py +++ b/source/test/common/test_error_preemption_handling.py @@ -28,8 +28,7 @@ class TestErrorPreemptionHandling()...
fix wrong path error occured during merge
diff --git a/packages/perspective-viewer/src/js/view.js b/packages/perspective-viewer/src/js/view.js index <HASH>..<HASH> 100644 --- a/packages/perspective-viewer/src/js/view.js +++ b/packages/perspective-viewer/src/js/view.js @@ -748,6 +748,14 @@ registerElement(template, { } }, + 'index': { + ...
Added warning when index is set after data load.
diff --git a/conductor/src/main/java/com/bluelinelabs/conductor/Controller.java b/conductor/src/main/java/com/bluelinelabs/conductor/Controller.java index <HASH>..<HASH> 100644 --- a/conductor/src/main/java/com/bluelinelabs/conductor/Controller.java +++ b/conductor/src/main/java/com/bluelinelabs/conductor/Controller.ja...
Fix NPE when removing view reference (#<I>) Great catch, thanks!
diff --git a/mysql/client.js b/mysql/client.js index <HASH>..<HASH> 100644 --- a/mysql/client.js +++ b/mysql/client.js @@ -83,7 +83,6 @@ function dump(d) this.write_packet = function(packet, pnum) { packet.addHeader(pnum); - sys.puts("writing: " + sys.inspect(packet)); ...
binary encoding in write; debug output removed
diff --git a/lib/transforms/serializeSourceMaps.js b/lib/transforms/serializeSourceMaps.js index <HASH>..<HASH> 100644 --- a/lib/transforms/serializeSourceMaps.js +++ b/lib/transforms/serializeSourceMaps.js @@ -6,6 +6,11 @@ module.exports = function () { var potentiallyOrphanedAssetsById = {}; asset...
serializeSourceMaps: Don't attempt to introduce source maps for data-bind="..." and <!-- ko ... -->
diff --git a/lib/jazzy/config.rb b/lib/jazzy/config.rb index <HASH>..<HASH> 100644 --- a/lib/jazzy/config.rb +++ b/lib/jazzy/config.rb @@ -248,13 +248,13 @@ module Jazzy default: [] config_attr :theme_directory, - command_line: '--theme [apple | DIRPATH]', - description: "Which theme to use. Spe...
add fullwidth as a --theme option
diff --git a/lib/unsound/version.rb b/lib/unsound/version.rb index <HASH>..<HASH> 100644 --- a/lib/unsound/version.rb +++ b/lib/unsound/version.rb @@ -1,3 +1,3 @@ module Unsound - VERSION = "0.0.3" + VERSION = "0.1.1" end
bump to <I> since i released from the feature branch again =/
diff --git a/actstream/jsonfield.py b/actstream/jsonfield.py index <HASH>..<HASH> 100644 --- a/actstream/jsonfield.py +++ b/actstream/jsonfield.py @@ -2,12 +2,13 @@ Decide on a JSONField implementation based on available packages. -There are two possible options, preferred in the following order: - - JSONField fr...
Remove mysql details from docstring (#<I>) * Remove mysql details from docstring The django-mysql JSONField option (introduced before Django had its own builtin JSONField) has been removed, so we should not mention it in the docstring anymore. * Fix typos
diff --git a/lib/epub/cfi.rb b/lib/epub/cfi.rb index <HASH>..<HASH> 100644 --- a/lib/epub/cfi.rb +++ b/lib/epub/cfi.rb @@ -14,6 +14,8 @@ module EPUB end class Location + include Comparable + attr_reader :paths def initialize(paths=[])
Make EPUB::CFI comparable
diff --git a/packages/legacy-sensor/test/tracing/test.js b/packages/legacy-sensor/test/tracing/test.js index <HASH>..<HASH> 100644 --- a/packages/legacy-sensor/test/tracing/test.js +++ b/packages/legacy-sensor/test/tracing/test.js @@ -48,11 +48,6 @@ describe('legacy sensor/tracing', function () { }).registerTestHook...
chore: removed node version check in packages/legacy-sensor/test/tracing/test.js refs <I> - no one is using Node < <I> - CI uses <I> - IMO its fine to remove these checks although we define >= <I> as engine
diff --git a/ginkgo/run_command.go b/ginkgo/run_command.go index <HASH>..<HASH> 100644 --- a/ginkgo/run_command.go +++ b/ginkgo/run_command.go @@ -193,7 +193,7 @@ func (r *SpecRunner) combineCoverprofiles(runners []*testrunner.TestRunner) erro _, err = combined.Write(contents) // Add a newline to the end of eve...
Test if a coverprofile content is empty before checking its latest character (#<I>)
diff --git a/lib/wired/builders/facebook_builder.rb b/lib/wired/builders/facebook_builder.rb index <HASH>..<HASH> 100644 --- a/lib/wired/builders/facebook_builder.rb +++ b/lib/wired/builders/facebook_builder.rb @@ -51,16 +51,12 @@ Home pagina, show fangate: <%= @show_fangate %> copy_file 'facebook/sessions_contr...
iframe_requests is not a helper but a method, and filters are deprecated, use actions
diff --git a/src/CacheProfiles/BaseCacheProfile.php b/src/CacheProfiles/BaseCacheProfile.php index <HASH>..<HASH> 100644 --- a/src/CacheProfiles/BaseCacheProfile.php +++ b/src/CacheProfiles/BaseCacheProfile.php @@ -24,7 +24,7 @@ abstract class BaseCacheProfile implements CacheProfile public function useCacheNameSu...
Use Auth::id() instead of Auth::user()->id (#<I>) This PR allows greater flexibility when using other authentication drivers by requesting the users ID via `Authenticatable::getAuthIdentifier()` through the `Auth` facade.
diff --git a/src/Illuminate/Foundation/Auth/AuthenticatesAndRegistersUsers.php b/src/Illuminate/Foundation/Auth/AuthenticatesAndRegistersUsers.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Foundation/Auth/AuthenticatesAndRegistersUsers.php +++ b/src/Illuminate/Foundation/Auth/AuthenticatesAndRegistersUsers.php @...
Return to login page with remember input checkbox too
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ here = path.abspath(path.dirname(__file__)) setup( name='wikitextparser', # Scheme: [N!]N(.N)*[{a|b|rc}N][.postN][.devN] - version='0.8.5.dev1', + version='0.8.6.dev1', description='A simple,...
Bump the version to '<I>.dev1'
diff --git a/Application.php b/Application.php index <HASH>..<HASH> 100644 --- a/Application.php +++ b/Application.php @@ -29,6 +29,7 @@ class Application extends BaseApplication $sfRequest = SymfonyRequest::create($request->getPath(), $request->getMethod()); $sfRequest->attributes->set('react.espress...
Run CS fixer on code base
diff --git a/drivers/chown.go b/drivers/chown.go index <HASH>..<HASH> 100644 --- a/drivers/chown.go +++ b/drivers/chown.go @@ -5,10 +5,10 @@ import ( "encoding/json" "fmt" "os" - "path/filepath" "github.com/containers/storage/pkg/idtools" "github.com/containers/storage/pkg/reexec" + "github.com/opencontaine...
drivers/chown: use pwalk.Walk This is a parallel Walk implementation and we're expecting some speedup
diff --git a/e2e_test/playground/transaction_service/app.js b/e2e_test/playground/transaction_service/app.js index <HASH>..<HASH> 100644 --- a/e2e_test/playground/transaction_service/app.js +++ b/e2e_test/playground/transaction_service/app.js @@ -32,21 +32,30 @@ app.directive('customDirective', function () { } ...
add big datasets to e2e_test/playground
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -60,6 +60,7 @@ setup( 'requests==2.9.1', 'gevent==1.1.2', 'gevent-websocket==0.9.5', + 'pyzmq==17.1.2' ], extras_require = {
GUI Issue #<I> - Adding pyzmq installation requirement
diff --git a/select2.js b/select2.js index <HASH>..<HASH> 100644 --- a/select2.js +++ b/select2.js @@ -961,12 +961,19 @@ the specific language governing permissions and limitations under the Apache Lic // mozilla and IE el.bind("propertychange.select2 DOMAttrModified.select2", sync); + + + ...
work around chrome and mutation observer bug. fixes #<I>
diff --git a/satpy/modifiers/_crefl.py b/satpy/modifiers/_crefl.py index <HASH>..<HASH> 100644 --- a/satpy/modifiers/_crefl.py +++ b/satpy/modifiers/_crefl.py @@ -118,7 +118,7 @@ class ReflectanceCorrector(ModifierBase, DataDownloadMixin): @staticmethod def _read_var_from_hdf4_file(local_filename, var_name): ...
Fix typo in crefl DEM reading
diff --git a/Command/Command.php b/Command/Command.php index <HASH>..<HASH> 100644 --- a/Command/Command.php +++ b/Command/Command.php @@ -68,9 +68,13 @@ class Command extends AbstractCommand */ protected function doExecute() { + $this->input->args = array($this->name); + $output = $this->application ->g...
Add color support when default doExecute call HelpCommand
diff --git a/lib/fuzzystringmatch/inline/jarowinkler.rb b/lib/fuzzystringmatch/inline/jarowinkler.rb index <HASH>..<HASH> 100644 --- a/lib/fuzzystringmatch/inline/jarowinkler.rb +++ b/lib/fuzzystringmatch/inline/jarowinkler.rb @@ -34,8 +34,8 @@ double getDistance( char *s1, char *s2 ) { char *_max; char *_min; -...
Quiet warnings when loading into Rails <I> with Ruby <I> on Mac OSX, to the effect of 'jarowinkler.rb:<I>: warning: implicit conversion shortens <I>-bit value into a <I>-bit value'
diff --git a/core/ArrayLib.php b/core/ArrayLib.php index <HASH>..<HASH> 100755 --- a/core/ArrayLib.php +++ b/core/ArrayLib.php @@ -4,7 +4,7 @@ * @package sapphire * @subpackage misc */ -class ArrayLib extends Object { +class ArrayLib { /** * Inverses the first and second level keys of an associative
MINOR ArrayLib - removed unncessary extending of Object since this class only has a bunch of static functions (from r<I>) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@<I> <I>b<I>ca-7a2a-<I>-9d3b-<I>d<I>a<I>a9
diff --git a/src/module.js b/src/module.js index <HASH>..<HASH> 100644 --- a/src/module.js +++ b/src/module.js @@ -203,9 +203,26 @@ angular.module('stormpath', [ * @return {Object} config $http config object. */ StormpathAgentInterceptor.prototype.request = function(config){ - if ($isCurrentDomain(config....
Change agent header strategy to a whitelist strategy
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ from os import path here = path.abspath(path.dirname(__file__)) __author__ = 'Magnus Knutas' -VERSION = '1.3.2' +VERSION = '1.3.3' with open("README.md", "r") as fh: long_description = fh.read()
Update setup.py Update version number
diff --git a/_pytest/main.py b/_pytest/main.py index <HASH>..<HASH> 100644 --- a/_pytest/main.py +++ b/_pytest/main.py @@ -34,8 +34,8 @@ def pytest_addoption(parser): # "**/test_*.py", "**/*_test.py"] #) group = parser.getgroup("general", "running and selection options") - group._addoption(...
implement exitfirst as store_const option this makes it possible to override with a later maxfail
diff --git a/packages/bonde-styleguide/src/content/Button/Button.js b/packages/bonde-styleguide/src/content/Button/Button.js index <HASH>..<HASH> 100644 --- a/packages/bonde-styleguide/src/content/Button/Button.js +++ b/packages/bonde-styleguide/src/content/Button/Button.js @@ -115,7 +115,13 @@ Button.propTypes = { ...
chore(styleguide): button component type as button by default
diff --git a/choria/framework.go b/choria/framework.go index <HASH>..<HASH> 100644 --- a/choria/framework.go +++ b/choria/framework.go @@ -359,7 +359,7 @@ func (fw *Framework) MiddlewareServers() (servers srvcache.Servers, err error) { } } - if servers.Count() == 0 { + if servers.Count() == 0 && fw.Config.Choria...
(#<I>) avoid some warning level logs
diff --git a/ternary/plotting.py b/ternary/plotting.py index <HASH>..<HASH> 100644 --- a/ternary/plotting.py +++ b/ternary/plotting.py @@ -93,10 +93,10 @@ def triangle_coordinates(i, j, alt=False): # Alt refers to the inner triangles not covered by the default case return [(i/2. + j + 1, i * SQRT3OVER...
Added axes parameter to heatmap to allow for imbedding into e.g. gridspec layouts.
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -63,6 +63,7 @@ class JPypeSetup(object): self.javaHome = os.getenv("JAVA_HOME") if self.javaHome is None: possibleHomes = ['/usr/lib/jvm/default-java', + '/usr/lib/...
Add another linux java jdk path.
diff --git a/lib/beaker-hostgenerator/data.rb b/lib/beaker-hostgenerator/data.rb index <HASH>..<HASH> 100644 --- a/lib/beaker-hostgenerator/data.rb +++ b/lib/beaker-hostgenerator/data.rb @@ -68,7 +68,7 @@ module BeakerHostGenerator 'pe_ver' => options[:pe_ver] || pe_version, 'pe_upgrade_dir' => option...
Do not generate empty entries for pe_* This is not needed to specify and only increases the generated data.
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages setup(name='citrination-client', - version='3.1.0', + version='3.2.0', url='http://github.com/CitrineInformatics/python-citrination-client', ...
bump the version to <I>
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -28,8 +28,6 @@ There is no GUI here. The GUI is https://github.com/jflesch/paperwork . "/archive/unstable.tar.gz"), classifiers=[ "Development Status :: 5 - Production/Stable", - "Enviro...
setup.py: backend is not an X<I> application
diff --git a/c7n/resources/asg.py b/c7n/resources/asg.py index <HASH>..<HASH> 100644 --- a/c7n/resources/asg.py +++ b/c7n/resources/asg.py @@ -126,7 +126,7 @@ class LaunchInfo(object): lid = asg.get('LaunchTemplate') if lid is not None: - return (lid['LaunchTemplateId'], lid['LaunchTempla...
asg - not-encrypted filter launch template version key(#<I>)
diff --git a/server/const.go b/server/const.go index <HASH>..<HASH> 100644 --- a/server/const.go +++ b/server/const.go @@ -41,7 +41,7 @@ var ( const ( // VERSION is the current version for the server. - VERSION = "2.2.1" + VERSION = "2.2.2-beta" // PROTO is the currently supported protocol. // 0 was the orig...
Bump to <I>-beta
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -73,14 +73,12 @@ tests_require = [ 'logbook', 'mock', 'nose', - 'pycodestyle', 'pytz', 'pytest>=3.2.0,<3.3.0', - 'pytest-timeout==1.2.0', + 'pytest-timeout==1.2.1', 'pytest-xdist==1.18.2'...
ref: Update pytest requirements (#<I>)
diff --git a/src/main/java/org/fit/cssbox/css/DOMAnalyzer.java b/src/main/java/org/fit/cssbox/css/DOMAnalyzer.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/fit/cssbox/css/DOMAnalyzer.java +++ b/src/main/java/org/fit/cssbox/css/DOMAnalyzer.java @@ -314,7 +314,11 @@ public class DOMAnalyzer //fix the ...
Avoid exception when there is no <body> element in the DOM.
diff --git a/Settings.php b/Settings.php index <HASH>..<HASH> 100644 --- a/Settings.php +++ b/Settings.php @@ -2,29 +2,51 @@ /** * @file - * Contains Drupal\Component\Utility\Settings. + * Contains \Drupal\Component\Utility\Settings. */ namespace Drupal\Component\Utility; -class Settings { +/** + * Read onl...
Issue #<I> by Berdir, deviance, Lars Toomre: Make queue a container service.
diff --git a/views/layouts/main.php b/views/layouts/main.php index <HASH>..<HASH> 100644 --- a/views/layouts/main.php +++ b/views/layouts/main.php @@ -7,7 +7,6 @@ $user = Yii::$app->adminuser->getIdentity(); $this->beginPage() ?><!DOCTYPE html> <html ng-app="zaa" ng-controller="LayoutMenuController"> - <head> ...
removed materialize font from layout file.
diff --git a/src/main/java/com/postmark/java/PostmarkClient.java b/src/main/java/com/postmark/java/PostmarkClient.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/postmark/java/PostmarkClient.java +++ b/src/main/java/com/postmark/java/PostmarkClient.java @@ -59,6 +59,7 @@ public class PostmarkClient { ...
Disabled HTML escaping so that trailing = in Base<I> are not encoded with \u<I>d
diff --git a/src/java/com/threerings/cast/CharacterSprite.java b/src/java/com/threerings/cast/CharacterSprite.java index <HASH>..<HASH> 100644 --- a/src/java/com/threerings/cast/CharacterSprite.java +++ b/src/java/com/threerings/cast/CharacterSprite.java @@ -1,5 +1,5 @@ // -// $Id: CharacterSprite.java,v 1.39 2003/01/...
We need to composite our action frames because it's possible that during our tick we'll do something that invalidates our existing frames and we need to composite the new ones in paint(). git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@<I> <I>f4-<I>e9-<I>-aa3c-eee0fc<I>fb1
diff --git a/build/tasks/ci.js b/build/tasks/ci.js index <HASH>..<HASH> 100644 --- a/build/tasks/ci.js +++ b/build/tasks/ci.js @@ -1,4 +1,4 @@ var gulp = require('gulp'); -// gulp.task('ci', ['default', 'coveralls']); -gulp.task('ci', ['default']); +gulp.task('ci', ['default', 'coveralls']); +// gulp.task('ci', ['de...
chore(ci-build-task): changed ci task to try travis
diff --git a/tests/test_connection.py b/tests/test_connection.py index <HASH>..<HASH> 100644 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -21,7 +21,7 @@ class TestSerfConnection(object): rpc = connection.SerfConnection(port=40000) with pytest.raises(connection.SerfConnectionError) ...
Don't expect that we'll always have the same error number
diff --git a/lib/model-api/utils.rb b/lib/model-api/utils.rb index <HASH>..<HASH> 100644 --- a/lib/model-api/utils.rb +++ b/lib/model-api/utils.rb @@ -408,8 +408,9 @@ module ModelApi metadata = filtered_ext_attrs(klass, opts[:operation] || :index, opts) model_metadata = opts[:model_metadata] || model_...
Allow more flexibility in specifying includes (for ActiveRecord) in collection queries.
diff --git a/src/LayoutNode.js b/src/LayoutNode.js index <HASH>..<HASH> 100644 --- a/src/LayoutNode.js +++ b/src/LayoutNode.js @@ -50,11 +50,23 @@ define(function(require, exports, module) { */ LayoutNode.prototype.reset = function() { this._invalidated = false; - this._spec.transform = undef...
Added setSpec function for compatibility with FlowLayoutNode
diff --git a/lib/flex/utils.rb b/lib/flex/utils.rb index <HASH>..<HASH> 100644 --- a/lib/flex/utils.rb +++ b/lib/flex/utils.rb @@ -45,5 +45,29 @@ module Flex load File.expand_path('../../tasks/index.rake', __FILE__) end + module Delegation + + extend self + + def delegate(mod, *methods) + ...
added simple Delegation module (used internally)
diff --git a/nats.go b/nats.go index <HASH>..<HASH> 100644 --- a/nats.go +++ b/nats.go @@ -143,6 +143,7 @@ type Conn struct { pending *bytes.Buffer fch chan bool info serverInfo + _ uint32 // needed to correctly align the following ssid field on i386 systems ssid int64 subs map[int64]*Subsc...
fixed issue #<I> with <I>bit numbers on <I> systems
diff --git a/public_html/profiles/social/modules/social_features/social_group/src/Plugin/Block/GroupHeroBlock.php b/public_html/profiles/social/modules/social_features/social_group/src/Plugin/Block/GroupHeroBlock.php index <HASH>..<HASH> 100644 --- a/public_html/profiles/social/modules/social_features/social_group/src/...
DS-<I> - small issue
diff --git a/src/api/layers.js b/src/api/layers.js index <HASH>..<HASH> 100644 --- a/src/api/layers.js +++ b/src/api/layers.js @@ -174,7 +174,7 @@ viz.addTooltip(layerView); } if(options.legends) { - viz.addLegends([layerData], (options.mobile_layout || options.force_mobile)); + ...
Fixes a bug that prevented showing the legends when using createLayer
diff --git a/db/migrate/20140131065836_create_socializer_person_places.rb b/db/migrate/20140131065836_create_socializer_person_places.rb index <HASH>..<HASH> 100644 --- a/db/migrate/20140131065836_create_socializer_person_places.rb +++ b/db/migrate/20140131065836_create_socializer_person_places.rb @@ -4,7 +4,7 @@ class...
add `NOT NULL` to socializer_person_places.city_name - models validates its presence but it's not non-NULL in the database
diff --git a/src/extensions/parseFlex.js b/src/extensions/parseFlex.js index <HASH>..<HASH> 100644 --- a/src/extensions/parseFlex.js +++ b/src/extensions/parseFlex.js @@ -5,7 +5,7 @@ const parseFlexChar = (char) => { return 'flex: 0 0 auto;'; } - return `flex: ${char} 0 auto;` + return `flex: ${char} 0 0;` ...
Fix nested FlexFields support
diff --git a/test/setup.rb b/test/setup.rb index <HASH>..<HASH> 100644 --- a/test/setup.rb +++ b/test/setup.rb @@ -1,4 +1,4 @@ $LOAD_PATH.unshift(File.expand_path("#{__FILE__}/../../lib")) # Add PROJECT/lib to $LOAD_PATH require 'crudtree' -require '/home/freak/coding/ruby/git-sources/baretest/lib/baretest/rr' +requi...
rr doesn't work with <I> :-(
diff --git a/components/form-ng/form-ng__update-text.js b/components/form-ng/form-ng__update-text.js index <HASH>..<HASH> 100644 --- a/components/form-ng/form-ng__update-text.js +++ b/components/form-ng/form-ng__update-text.js @@ -84,13 +84,7 @@ angular.module('Ring.form') /** * Update initia...
RG-<I> Save button not appears for multiline fields: proper version Former-commit-id: e5fb<I>f2c3f<I>ac<I>b1c<I>aa<I>
diff --git a/lib/codemirror.js b/lib/codemirror.js index <HASH>..<HASH> 100644 --- a/lib/codemirror.js +++ b/lib/codemirror.js @@ -2943,7 +2943,8 @@ var CodeMirror = (function() { function e_target(e) {return e.target || e.srcElement;} function e_button(e) { - if (e.which) return e.which; + if (mac && e.c...
treat mac+ctrl+click as right-click
diff --git a/lib/mongo/monitoring/publishable.rb b/lib/mongo/monitoring/publishable.rb index <HASH>..<HASH> 100644 --- a/lib/mongo/monitoring/publishable.rb +++ b/lib/mongo/monitoring/publishable.rb @@ -33,18 +33,24 @@ module Mongo # # @since 2.1.0 def publish_command(messages) - start = Tim...
SPEC-<I>: Monitoring defaults to true, allow user customization
diff --git a/anyconfig/api.py b/anyconfig/api.py index <HASH>..<HASH> 100644 --- a/anyconfig/api.py +++ b/anyconfig/api.py @@ -269,7 +269,8 @@ def multi_load(paths, ac_parser=None, ac_template=False, ac_context=None, cups = single_load(path, ac_parser=ac_parser, ac_template=...
fix: only update cnf if needed (diff is not empty)
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -45,7 +45,8 @@ module.exports = function(grunt) { waitsFor: false, runs: false, exports: false, - process: false + process: false, + setImmediate: fal...
fix #1 use setImmediate instead of process next tick
diff --git a/routes.js b/routes.js index <HASH>..<HASH> 100644 --- a/routes.js +++ b/routes.js @@ -289,7 +289,7 @@ function getSearchQuery(model, searchValue) { }).join('||'); } else { - return searchRule.replace('__value__', valueRegex); + return searchRule.replace(/__value__/g, valueR...
Support for multiple occurrences of __value__ in search string
diff --git a/test/test.js b/test/test.js index <HASH>..<HASH> 100644 --- a/test/test.js +++ b/test/test.js @@ -9,11 +9,11 @@ mockery.enable({ warnOnUnregistered: false }) global.testing = true // Run tests -const assets = require('./lib/assets'); -const deploy = require('./lib/deploy'); -const makeappx = require('....
:wrench: Improve test code
diff --git a/src/modules/PublicLab.MapModule.js b/src/modules/PublicLab.MapModule.js index <HASH>..<HASH> 100644 --- a/src/modules/PublicLab.MapModule.js +++ b/src/modules/PublicLab.MapModule.js @@ -13,7 +13,7 @@ module.exports = PublicLab.MapModule = PublicLab.Module.extend({ _module.options = options || _editor....
updated privacy link (#<I>)
diff --git a/demos/blog/protected/models/User.php b/demos/blog/protected/models/User.php index <HASH>..<HASH> 100644 --- a/demos/blog/protected/models/User.php +++ b/demos/blog/protected/models/User.php @@ -100,11 +100,12 @@ class User extends CActiveRecord * * @param int cost parameter for Blowfish hash algorith...
Demo blog, User model enhancements: 1. Added EOL at the end of file. 2. Added @throws tag to the User::generateSalt() method. 3. Removed invalid and unnecessary Yii::t() translation call. 4. Fixes #<I>. `str_pad` replaced with `sprintf`.
diff --git a/src/adafruit_blinka/microcontroller/generic_linux/sysfs_pwmout.py b/src/adafruit_blinka/microcontroller/generic_linux/sysfs_pwmout.py index <HASH>..<HASH> 100644 --- a/src/adafruit_blinka/microcontroller/generic_linux/sysfs_pwmout.py +++ b/src/adafruit_blinka/microcontroller/generic_linux/sysfs_pwmout.py @...
add '_is_deinited()' to guard against reads/writes on an inactive pin.
diff --git a/abydos/stemmer.py b/abydos/stemmer.py index <HASH>..<HASH> 100644 --- a/abydos/stemmer.py +++ b/abydos/stemmer.py @@ -805,9 +805,9 @@ def dutch(word): return word # lowercase, normalize, decompose, filter umlauts & acutes out, and compose - word = unicodedata.normalize('NFKD', _unicode(w...
fixed index bug error switched from removing all umlauts & acute accents to just removing those attached to aeiou
diff --git a/src/Plugin/CatalogInventory/Model/Stock/Item.php b/src/Plugin/CatalogInventory/Model/Stock/Item.php index <HASH>..<HASH> 100644 --- a/src/Plugin/CatalogInventory/Model/Stock/Item.php +++ b/src/Plugin/CatalogInventory/Model/Stock/Item.php @@ -22,7 +22,7 @@ class Item \Magento\CatalogInventory\Model...
MOBI-<I> - Send PV info from Odoo to Magento
diff --git a/lib/document/Document.js b/lib/document/Document.js index <HASH>..<HASH> 100644 --- a/lib/document/Document.js +++ b/lib/document/Document.js @@ -104,6 +104,14 @@ class Document extends NativeMethod { return new Record(this, data, _.defaults(options, this.options)); } /** + * find and return s...
[Document] document: added findById method
diff --git a/lib/her/model.rb b/lib/her/model.rb index <HASH>..<HASH> 100644 --- a/lib/her/model.rb +++ b/lib/her/model.rb @@ -40,6 +40,7 @@ module Her # Supported ActiveModel modules include ActiveModel::AttributeMethods include ActiveModel::Validations + include ActiveModel::Validations::Callbacks ...
Adding Active model before and after validation We have method valid? which is requested from ActiveModel and don't have any callback to update values before it
diff --git a/tweepy/api.py b/tweepy/api.py index <HASH>..<HASH> 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -219,7 +219,14 @@ class API(object): :allowed_param: """ f = kwargs.pop('file', None) - headers, post_data = API._pack_image(filename, 4883, + + file_type = imgh...
increase max image size for gif
diff --git a/vent/api/menu_helpers.py b/vent/api/menu_helpers.py index <HASH>..<HASH> 100644 --- a/vent/api/menu_helpers.py +++ b/vent/api/menu_helpers.py @@ -98,8 +98,10 @@ class MenuHelper: output = check_output(shlex.split(cmd), ...
changed line lengths to satisify codeclimate
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ here = path.abspath(path.dirname(__file__)) setup( name='vcf2clinvar', - version='0.1.dev2', + version='0.1.dev3', description='Match a personal genome VCF datafile to ClinVar', url='https:...
Fall back to "next" if no "readline"
diff --git a/lib/puppet/pops/parser/pn_parser.rb b/lib/puppet/pops/parser/pn_parser.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/pops/parser/pn_parser.rb +++ b/lib/puppet/pops/parser/pn_parser.rb @@ -164,7 +164,7 @@ class PNParser end when TYPE_DIGIT - dc = skip_decimal_digits + skip_decimal_...
(PUP-<I>) Remove unused variable causing rubocop failure
diff --git a/packages/ember-routing-handlebars/lib/helpers/query_params.js b/packages/ember-routing-handlebars/lib/helpers/query_params.js index <HASH>..<HASH> 100644 --- a/packages/ember-routing-handlebars/lib/helpers/query_params.js +++ b/packages/ember-routing-handlebars/lib/helpers/query_params.js @@ -13,7 +13,7 @@...
[DOC release] Fix invalid Handlebars syntax in query-params docs.
diff --git a/lib/beaker-aws/version.rb b/lib/beaker-aws/version.rb index <HASH>..<HASH> 100644 --- a/lib/beaker-aws/version.rb +++ b/lib/beaker-aws/version.rb @@ -1,3 +1,3 @@ module BeakerAws - VERSION = '0.2.0' + VERSION = '0.3.0' end
(GEM) update beaker-aws version to <I>
diff --git a/app/controllers/socializer/likes_controller.rb b/app/controllers/socializer/likes_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/socializer/likes_controller.rb +++ b/app/controllers/socializer/likes_controller.rb @@ -1,6 +1,7 @@ module Socializer class LikesController < ApplicationCont...
dry @activity for likes_controller
diff --git a/src/Serializer/JmsSerializer.php b/src/Serializer/JmsSerializer.php index <HASH>..<HASH> 100644 --- a/src/Serializer/JmsSerializer.php +++ b/src/Serializer/JmsSerializer.php @@ -134,7 +134,14 @@ class JmsSerializer implements SerializerInterface ); } - private function getSourceClassFrom...
typehint in class and added docblock
diff --git a/example/image-classification/train_model.py b/example/image-classification/train_model.py index <HASH>..<HASH> 100644 --- a/example/image-classification/train_model.py +++ b/example/image-classification/train_model.py @@ -26,7 +26,7 @@ def fit(args, network, data_loader): logging.basicConfig(level...
del "?" from comment "?" should not exist in comment
diff --git a/create_app.py b/create_app.py index <HASH>..<HASH> 100644 --- a/create_app.py +++ b/create_app.py @@ -252,9 +252,6 @@ for line in fileinput.input(boot_file, inplace=True): else: print(line, end='') -# To use the app's own Qt framework -subprocess.call(['macdeployqt', 'dist/%s' % MAC_APP_NAM...
Mac app: Don't call macdeployqt because we switched to use PyQt5 wheels
diff --git a/lib/active_admin/orm/active_record/comments.rb b/lib/active_admin/orm/active_record/comments.rb index <HASH>..<HASH> 100644 --- a/lib/active_admin/orm/active_record/comments.rb +++ b/lib/active_admin/orm/active_record/comments.rb @@ -11,14 +11,10 @@ ActiveAdmin::Application.inheritable_setting :comments_re...
code style updates to AA::Comment
diff --git a/lang/en/moodle.php b/lang/en/moodle.php index <HASH>..<HASH> 100644 --- a/lang/en/moodle.php +++ b/lang/en/moodle.php @@ -168,7 +168,7 @@ $string['forgotten'] = "Forgotten your username or password?"; $string['format'] = "Format"; $string['formathtml'] = "HTML format"; $string['formatsocial'] = "Social ...
Revised string for formattext to make more sense
diff --git a/test/integration/login_test.js b/test/integration/login_test.js index <HASH>..<HASH> 100644 --- a/test/integration/login_test.js +++ b/test/integration/login_test.js @@ -149,6 +149,7 @@ suite('integration - existing user flow', function(){ assert.isNull(err) }) }) + /* ...
disable broken integration tests (TODO: PB)
diff --git a/cassandra/query.py b/cassandra/query.py index <HASH>..<HASH> 100644 --- a/cassandra/query.py +++ b/cassandra/query.py @@ -507,7 +507,8 @@ class BoundStatement(Statement): components = [] for statement_index in routing_indexes: val = self.values[statement_index] - ...
Fix routing key encoding for compound primary keys - make component size big-endian - include component string size in format string
diff --git a/src/Provider/FileSession.php b/src/Provider/FileSession.php index <HASH>..<HASH> 100644 --- a/src/Provider/FileSession.php +++ b/src/Provider/FileSession.php @@ -25,7 +25,9 @@ class FileSession implements SessionInterface public function __destruct() { - file_put_contents($this->file, '<...
fileSession write if datas are exists