diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/server/export.js b/server/export.js
index <HASH>..<HASH> 100644
--- a/server/export.js
+++ b/server/export.js
@@ -35,6 +35,15 @@ export default async function (dir, options) {
join(outDir, '_next', buildStats['app.js'].hash, 'app.js')
)
+ // Copy static directory
+ if (existsSync(join(dir, 'sta... | Copy the static directory for static file serving. |
diff --git a/lib/Drivers/DML/sqlite.js b/lib/Drivers/DML/sqlite.js
index <HASH>..<HASH> 100644
--- a/lib/Drivers/DML/sqlite.js
+++ b/lib/Drivers/DML/sqlite.js
@@ -12,7 +12,7 @@ function Driver(config, connection, opts) {
this.db = connection;
} else {
// on Windows, paths have a drive letter which is parsed by
... | Fixes typo in sqlite3 driver |
diff --git a/lib/metamorpher/drivers/ruby.rb b/lib/metamorpher/drivers/ruby.rb
index <HASH>..<HASH> 100644
--- a/lib/metamorpher/drivers/ruby.rb
+++ b/lib/metamorpher/drivers/ruby.rb
@@ -59,7 +59,7 @@ module Metamorpher
# omitting a necessary keyword. Note that these are the symbols produced
# by Pars... | Fix bug in unparsing Ruby code with {} literal. |
diff --git a/js/src/files.js b/js/src/files.js
index <HASH>..<HASH> 100644
--- a/js/src/files.js
+++ b/js/src/files.js
@@ -559,7 +559,7 @@ module.exports = (common) => {
})
})
- it('exports a chunk of a file', (done) => {
+ it('exports a chunk of a file', function (done) {
if (wit... | fix: this.skip needs to be under a function declaration |
diff --git a/client/extjs/src/panel/attribute/ItemUi.js b/client/extjs/src/panel/attribute/ItemUi.js
index <HASH>..<HASH> 100644
--- a/client/extjs/src/panel/attribute/ItemUi.js
+++ b/client/extjs/src/panel/attribute/ItemUi.js
@@ -89,7 +89,7 @@ MShop.panel.attribute.ItemUi = Ext.extend(MShop.panel.AbstractItemUi, {
... | Changes attribute label from text area to text field |
diff --git a/lib/action_controller/parameters.rb b/lib/action_controller/parameters.rb
index <HASH>..<HASH> 100644
--- a/lib/action_controller/parameters.rb
+++ b/lib/action_controller/parameters.rb
@@ -1,7 +1,7 @@
require 'active_support/core_ext/hash/indifferent_access'
module ActionController
- class ParameterM... | use IndexError to be closer to hash fetch |
diff --git a/lib/endpoints/class-wp-rest-comments-controller.php b/lib/endpoints/class-wp-rest-comments-controller.php
index <HASH>..<HASH> 100755
--- a/lib/endpoints/class-wp-rest-comments-controller.php
+++ b/lib/endpoints/class-wp-rest-comments-controller.php
@@ -360,11 +360,11 @@ class WP_REST_Comments_Controller e... | Use Yoda Condition checks, you must |
diff --git a/lib/chef/knife/core/ui.rb b/lib/chef/knife/core/ui.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/knife/core/ui.rb
+++ b/lib/chef/knife/core/ui.rb
@@ -172,7 +172,7 @@ class Chef
tf.sync = true
tf.puts output
tf.close
- raise "Please set EDITOR environment va... | Update the knife editor error message to point to the correct document
I updated the structure of the knife documentation a while back and we have a dedicated doc for setting up knife now. |
diff --git a/src/unicode-decomposition.js b/src/unicode-decomposition.js
index <HASH>..<HASH> 100644
--- a/src/unicode-decomposition.js
+++ b/src/unicode-decomposition.js
@@ -37,6 +37,11 @@ const MAP_CONVERSION = {
'—': '-',
'―': '-',
/**
+ * @internal Normalizations (MELINDA-4172, MELINDA-4175)
+ **/
+ 'Ⓒ': '©... | Normalize Ⓒ and Ⓟ. Decompose c-cedilla and few other consonants. |
diff --git a/data/__init__.py b/data/__init__.py
index <HASH>..<HASH> 100644
--- a/data/__init__.py
+++ b/data/__init__.py
@@ -1,3 +1,5 @@
+__version__ = '0.2.dev1'
+
from six import text_type, PY2 | Added __version__ string. |
diff --git a/dciclient/v1/tests/shell_commands/utils.py b/dciclient/v1/tests/shell_commands/utils.py
index <HASH>..<HASH> 100644
--- a/dciclient/v1/tests/shell_commands/utils.py
+++ b/dciclient/v1/tests/shell_commands/utils.py
@@ -121,6 +121,29 @@ def provision(db_conn):
team_admin_id = db_insert(models.TEAMS, nam... | Roles: Create mandatory role in the dataset
This commit aims to create the mandatory roles in the dataset used to
run the test suite.
Change-Id: I<I>a<I>ad1d<I>fdaba<I>c<I>d<I>db<I>e<I>a5d |
diff --git a/src/etc/roles/literal/regionRole.js b/src/etc/roles/literal/regionRole.js
index <HASH>..<HASH> 100644
--- a/src/etc/roles/literal/regionRole.js
+++ b/src/etc/roles/literal/regionRole.js
@@ -11,6 +11,7 @@ const regionRole: ARIARoleDefinition = {
],
props: {},
relatedConcepts: [
+ // frame tag on... | frame tag is deprecated in html5, should add support to section tag |
diff --git a/config/sentry.php b/config/sentry.php
index <HASH>..<HASH> 100644
--- a/config/sentry.php
+++ b/config/sentry.php
@@ -36,6 +36,7 @@ return array(
'users_groups' => 'users_groups',
'users_metadata' => 'users_metadata',
'users_suspended' => 'users_suspended',
+ 'rules' => 'rules',
)... | Modified the configurations, now supports rules stored in the database |
diff --git a/eulfedora/server.py b/eulfedora/server.py
index <HASH>..<HASH> 100644
--- a/eulfedora/server.py
+++ b/eulfedora/server.py
@@ -124,6 +124,7 @@ class Repository(object):
default_object_type = DigitalObject
"Default type to use for methods that return fedora objects - :class:`DigitalObject`"
+ ... | define a default pidspace of None for server, to simplify passing default pidspace to DigitalObject |
diff --git a/platform/html5/html.js b/platform/html5/html.js
index <HASH>..<HASH> 100644
--- a/platform/html5/html.js
+++ b/platform/html5/html.js
@@ -68,6 +68,8 @@ StyleCache.prototype.classify = function(rules) {
}
var _modernizrCache = {}
+if (navigator.userAgent.toLowerCase().indexOf('webkit') >= 0)
+ _moderniz... | Hack for unstandard '-webkit-appearance' property. |
diff --git a/spec/helpers/canonical_rails/tag_helper_spec.rb b/spec/helpers/canonical_rails/tag_helper_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/helpers/canonical_rails/tag_helper_spec.rb
+++ b/spec/helpers/canonical_rails/tag_helper_spec.rb
@@ -4,7 +4,7 @@ describe CanonicalRails::TagHelper do
before(:each... | spec: path should include a leading slash |
diff --git a/src/Template/Pats/Pats.php b/src/Template/Pats/Pats.php
index <HASH>..<HASH> 100644
--- a/src/Template/Pats/Pats.php
+++ b/src/Template/Pats/Pats.php
@@ -73,7 +73,7 @@ EOT;
*/
public static function addPats(array $pats)
{
- self::$pats = $pats + self::$pats;
+ self::$pats = $p... | Fixes at `Pats` |
diff --git a/src/com/joml/Matrix4f.java b/src/com/joml/Matrix4f.java
index <HASH>..<HASH> 100644
--- a/src/com/joml/Matrix4f.java
+++ b/src/com/joml/Matrix4f.java
@@ -1545,9 +1545,9 @@ public class Matrix4f implements Serializable, Externalizable {
float h = (float)Math.tan(Math.toRadians(fovy) * 0.5f) * zNear... | Simpler computation of perspective frustum |
diff --git a/flurs/tests/test_evaluator.py b/flurs/tests/test_evaluator.py
index <HASH>..<HASH> 100644
--- a/flurs/tests/test_evaluator.py
+++ b/flurs/tests/test_evaluator.py
@@ -12,7 +12,7 @@ class EvaluatorTestCase(TestCase):
def setUp(self):
recommender = Popular()
recommender.init_recommender... | Explicitly pass `recommender` to Evaluator |
diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/embedded/TomcatWebServerFactoryCustomizer.java
index... | Protect against NoSuchMethodError when deploying to old Tomcats
Fixes gh-<I> |
diff --git a/main.go b/main.go
index <HASH>..<HASH> 100644
--- a/main.go
+++ b/main.go
@@ -36,6 +36,7 @@ func (d *Daemon) RunClient() (err error) {
}
func (d *Daemon) Run() (err error) {
+ G.Daemon = true
if err = d.ConfigRpcServer(); err != nil {
return
} | say we're a daemon |
diff --git a/libkbfs/config_local.go b/libkbfs/config_local.go
index <HASH>..<HASH> 100644
--- a/libkbfs/config_local.go
+++ b/libkbfs/config_local.go
@@ -1221,6 +1221,10 @@ func (c *ConfigLocal) Shutdown(ctx context.Context) error {
if dbc != nil {
dbc.Shutdown(ctx)
}
+ dmc := c.DiskMDCache()
+ if dmc != nil {
... | config_local: shutdown disk md cache
Otherwise each singleop git operation will leave one open. |
diff --git a/lib/kaminari/helpers/action_view_extension.rb b/lib/kaminari/helpers/action_view_extension.rb
index <HASH>..<HASH> 100644
--- a/lib/kaminari/helpers/action_view_extension.rb
+++ b/lib/kaminari/helpers/action_view_extension.rb
@@ -86,16 +86,10 @@ module Kaminari
# <%= page_entries_info @posts, :entry... | Following tip from @rtlong. =D |
diff --git a/tests/changelog.py b/tests/changelog.py
index <HASH>..<HASH> 100644
--- a/tests/changelog.py
+++ b/tests/changelog.py
@@ -184,13 +184,24 @@ class releases(Spec):
assert self.b not in one_0_1
assert self.b2 in one_0_1
assert self.b3 in one_0_1
- # 1.1.1 includes all 3
+ ... | Shuffle out unreleased stuff into its own test |
diff --git a/galpy/orbit_src/integrateFullOrbit.py b/galpy/orbit_src/integrateFullOrbit.py
index <HASH>..<HASH> 100644
--- a/galpy/orbit_src/integrateFullOrbit.py
+++ b/galpy/orbit_src/integrateFullOrbit.py
@@ -123,7 +123,10 @@ def _parse_pot(pot,potforactions=False):
pot_args.extend([p._amp,p._a])
... | Removed the NN multiplication from the SCFPotential case. Also added the shape of Acos and Asin, and flattened them. |
diff --git a/ara/cli/playbook.py b/ara/cli/playbook.py
index <HASH>..<HASH> 100644
--- a/ara/cli/playbook.py
+++ b/ara/cli/playbook.py
@@ -430,6 +430,12 @@ class PlaybookMetrics(Lister):
help=("List playbooks matching the provided name (full or partial)"),
)
parser.add_argument(
+ ... | cli: add missing controller arg to playbook metrics
This provides the ability to get playbook metrics for a specific
controller.
Change-Id: I<I>abfc1bf6ef5e0ceb<I>da4f9a<I>a<I>ab |
diff --git a/lib/github-auth.js b/lib/github-auth.js
index <HASH>..<HASH> 100644
--- a/lib/github-auth.js
+++ b/lib/github-auth.js
@@ -120,10 +120,14 @@ function setRoutes(server) {
// - Ensure tokens have been propagated to all servers
// - Debug GitHub badge failures
//
- // The admin can authenticate with ... | Github admin endpoint: use basic auth password instead of username (#<I>) |
diff --git a/builtin/providers/aws/resource_aws_iam_user_login_profile_test.go b/builtin/providers/aws/resource_aws_iam_user_login_profile_test.go
index <HASH>..<HASH> 100644
--- a/builtin/providers/aws/resource_aws_iam_user_login_profile_test.go
+++ b/builtin/providers/aws/resource_aws_iam_user_login_profile_test.go
@... | provider/aws: Update regex to pass test |
diff --git a/salt/modules/nix.py b/salt/modules/nix.py
index <HASH>..<HASH> 100644
--- a/salt/modules/nix.py
+++ b/salt/modules/nix.py
@@ -35,7 +35,7 @@ def __virtual__():
This only works if we have access to nix-env
'''
nixhome = os.path.join(os.path.expanduser('~{0}'.format(__opts__['user'])), '.nix-pr... | nix: Check for nix-collect-garbage
I changed this from nix-store to nix-collect-garbage as the
nix.collect_garbage function used to use `nix-store --gc`, but now just
uses nix-collect-garbage. |
diff --git a/classes/phing/tasks/system/AppendTask.php b/classes/phing/tasks/system/AppendTask.php
index <HASH>..<HASH> 100644
--- a/classes/phing/tasks/system/AppendTask.php
+++ b/classes/phing/tasks/system/AppendTask.php
@@ -166,6 +166,15 @@ class AppendTask extends Task
}
/**
+ * Sets specific file t... | Update AppendTask.php (#<I>) |
diff --git a/flight/template/View.php b/flight/template/View.php
index <HASH>..<HASH> 100644
--- a/flight/template/View.php
+++ b/flight/template/View.php
@@ -122,9 +122,7 @@ class View {
ob_start();
$this->render($file, $data);
- $output = ob_get_contents();
-
- ob_end_clean();
+ ... | Simplify output buffering code
No need to use both ob_get_contents() and ob_end_clean() when you can just use ob_get_clean(). |
diff --git a/js/kucoin.js b/js/kucoin.js
index <HASH>..<HASH> 100644
--- a/js/kucoin.js
+++ b/js/kucoin.js
@@ -356,7 +356,7 @@ module.exports = class kucoin extends Exchange {
if (feeCurrency in this.currencies_by_id)
feeCurrency = this.currencies_by_id[feeCurrency]['code'];
... | removed unnecessary semicolon from kucoin parseOrder, minor typo |
diff --git a/lib/inherited_views/base.rb b/lib/inherited_views/base.rb
index <HASH>..<HASH> 100644
--- a/lib/inherited_views/base.rb
+++ b/lib/inherited_views/base.rb
@@ -82,7 +82,7 @@ module InheritedViews
def render_or_default(name, args = {})
render name, args
rescue ActionView::MissingTemplate
- ... | Ensure that we force the proper template file to be rendered when rendering the default |
diff --git a/backend/product-browse.go b/backend/product-browse.go
index <HASH>..<HASH> 100644
--- a/backend/product-browse.go
+++ b/backend/product-browse.go
@@ -83,6 +83,9 @@ func InitProductBrowse() {
RegisterSample("samples_templates/product_page", renderProduct)
RegisterSampleEndpoint("samples_templates/produc... | Fix shopping cart (#<I>)
* Fix shopping cart
* Fix style |
diff --git a/pp/channel.py b/pp/channel.py
index <HASH>..<HASH> 100644
--- a/pp/channel.py
+++ b/pp/channel.py
@@ -108,7 +108,7 @@ class Channel(GenericChannel):
raise ValueError("Cannot define a channel with neither name "
"nor wavelength range.")
- if not isinstance... | Resolution can now be a floating point number. |
diff --git a/rest_hooks/__init__.py b/rest_hooks/__init__.py
index <HASH>..<HASH> 100644
--- a/rest_hooks/__init__.py
+++ b/rest_hooks/__init__.py
@@ -1 +1 @@
-VERSION = (1, 4, 3)
+VERSION = (1, 5, 0) | Updates version tuple for release
Updates tuple for <I> release |
diff --git a/src/Drupal/DrupalExtension/Context/DrupalContext.php b/src/Drupal/DrupalExtension/Context/DrupalContext.php
index <HASH>..<HASH> 100644
--- a/src/Drupal/DrupalExtension/Context/DrupalContext.php
+++ b/src/Drupal/DrupalExtension/Context/DrupalContext.php
@@ -420,7 +420,14 @@ class DrupalContext extends Mink... | Add support for drivers that do not support Javascript.
* <URL> |
diff --git a/bigchaindb/backend/rethinkdb/query.py b/bigchaindb/backend/rethinkdb/query.py
index <HASH>..<HASH> 100644
--- a/bigchaindb/backend/rethinkdb/query.py
+++ b/bigchaindb/backend/rethinkdb/query.py
@@ -134,7 +134,7 @@ def get_votes_by_block_id_and_voter(connection, block_id, node_pubkey):
def write_block(conn... | fix mongodb write_block without thouching mongodb code |
diff --git a/peng3d/util/__init__.py b/peng3d/util/__init__.py
index <HASH>..<HASH> 100644
--- a/peng3d/util/__init__.py
+++ b/peng3d/util/__init__.py
@@ -195,12 +195,12 @@ class calculated_from(object):
*args
)
self.multiargs: bool = len(args) != 1
- self.func: Optional[Callable[[... | Fixed broken tests/RTD builds on Python <= <I> |
diff --git a/Net/OpenID/OIDUtil.php b/Net/OpenID/OIDUtil.php
index <HASH>..<HASH> 100644
--- a/Net/OpenID/OIDUtil.php
+++ b/Net/OpenID/OIDUtil.php
@@ -21,6 +21,25 @@ $_Net_OpenID_digits = "0123456789";
$_Net_OpenID_punct = "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~";
/**
+ * Convenience function for getting array values.
... | [project @ Added array_get convenience function] |
diff --git a/tests/test_integration.py b/tests/test_integration.py
index <HASH>..<HASH> 100644
--- a/tests/test_integration.py
+++ b/tests/test_integration.py
@@ -73,7 +73,6 @@ def test_execute_conda_wrappers(tmpdir, monkeypatch):
'installed and added to PATH env var')
subprocess.check_call(['... | Don't use --offline when cloning the conda env
It's not guaranteed that all packages are already cached. |
diff --git a/lib/node_modules/@stdlib/math/generics/statistics/kstest/lib/cdf.js b/lib/node_modules/@stdlib/math/generics/statistics/kstest/lib/cdf.js
index <HASH>..<HASH> 100644
--- a/lib/node_modules/@stdlib/math/generics/statistics/kstest/lib/cdf.js
+++ b/lib/node_modules/@stdlib/math/generics/statistics/kstest/lib/... | Support arcsine in kstest |
diff --git a/spinoff/util/testing.py b/spinoff/util/testing.py
index <HASH>..<HASH> 100644
--- a/spinoff/util/testing.py
+++ b/spinoff/util/testing.py
@@ -197,6 +197,8 @@ class Container(MockActor):
# from Actor, so __exit__ is not DRY etc. There might be a way to refactor Actor to allow for a more elegant
# ... | Added support for 'with testing.contain(None) as (container, _)' for consistency/completeness |
diff --git a/lib/how_is/cli.rb b/lib/how_is/cli.rb
index <HASH>..<HASH> 100644
--- a/lib/how_is/cli.rb
+++ b/lib/how_is/cli.rb
@@ -23,7 +23,7 @@ module HowIs
# Parses +argv+ to generate an options Hash to control the behavior of
# the library.
def parse(argv)
- opts, options = parse_main(argv)
+ ... | miscellaneous cleanup of CLI code. |
diff --git a/will/__init__.py b/will/__init__.py
index <HASH>..<HASH> 100644
--- a/will/__init__.py
+++ b/will/__init__.py
@@ -0,0 +1 @@
+VERSION = "0.6.6"
\ No newline at end of file | Bugfix to tagging script. |
diff --git a/spyderlib/config.py b/spyderlib/config.py
index <HASH>..<HASH> 100644
--- a/spyderlib/config.py
+++ b/spyderlib/config.py
@@ -589,8 +589,8 @@ DEFAULTS = [
# ---- IDLE ----
# Name Color Bold Italic
'idle/background': "#ffffff",
- ... | Spyder and IDLE schemes (edited online with Bitbucket) |
diff --git a/server/src/main/java/org/cloudfoundry/identity/uaa/util/UaaMapUtils.java b/server/src/main/java/org/cloudfoundry/identity/uaa/util/UaaMapUtils.java
index <HASH>..<HASH> 100644
--- a/server/src/main/java/org/cloudfoundry/identity/uaa/util/UaaMapUtils.java
+++ b/server/src/main/java/org/cloudfoundry/identity... | Type parameter doesn't need to explictly extend Object
[#<I>] |
diff --git a/lib/jets/commands/base.rb b/lib/jets/commands/base.rb
index <HASH>..<HASH> 100644
--- a/lib/jets/commands/base.rb
+++ b/lib/jets/commands/base.rb
@@ -138,6 +138,8 @@ class Jets::Commands::Base < Thor
def eager_load!
return if Jets::Turbo.afterburner?
+ # Jets::Dotenv.load! - so ENV vars ... | allow usage of env vars in class methods |
diff --git a/src/candela/util/vega/index.js b/src/candela/util/vega/index.js
index <HASH>..<HASH> 100644
--- a/src/candela/util/vega/index.js
+++ b/src/candela/util/vega/index.js
@@ -206,7 +206,7 @@ let templateFunctions = {
type: 'linear',
zero: false,
domain: {data: params.data, field: params.fie... | Use a red-to-blue default colormap for Vega components |
diff --git a/command/agent/testagent.go b/command/agent/testagent.go
index <HASH>..<HASH> 100644
--- a/command/agent/testagent.go
+++ b/command/agent/testagent.go
@@ -130,7 +130,7 @@ func (a *TestAgent) Start() *TestAgent {
a.Agent = agent
a.Agent.LogOutput = a.LogOutput
a.Agent.LogWriter = a.LogWriter
- retry.Ru... | test: use less aggressive retry for agent startup |
diff --git a/src/PHPCoverFish/Common/Base/BaseCoverFishOutput.php b/src/PHPCoverFish/Common/Base/BaseCoverFishOutput.php
index <HASH>..<HASH> 100644
--- a/src/PHPCoverFish/Common/Base/BaseCoverFishOutput.php
+++ b/src/PHPCoverFish/Common/Base/BaseCoverFishOutput.php
@@ -45,7 +45,7 @@ abstract class BaseCoverFishOutput
... | fix base output class, scrutinizer issues |
diff --git a/core/lib/torquebox/option_utils.rb b/core/lib/torquebox/option_utils.rb
index <HASH>..<HASH> 100644
--- a/core/lib/torquebox/option_utils.rb
+++ b/core/lib/torquebox/option_utils.rb
@@ -63,7 +63,7 @@ module TorqueBox
extracted_options = {}
options.each_pair do |key, value|
if opts_ha... | Coerce symbol option values to strings.
This allows symbols to be used when the wunderboss value is a String
without requiring manual coercion. |
diff --git a/src/ModuleConfig/ModuleConfig.php b/src/ModuleConfig/ModuleConfig.php
index <HASH>..<HASH> 100644
--- a/src/ModuleConfig/ModuleConfig.php
+++ b/src/ModuleConfig/ModuleConfig.php
@@ -346,6 +346,8 @@ class ModuleConfig
*/
protected function prefixMessages($messages, $prefix)
{
+ $resul... | Replaced array_map() with foreach() for clarity (task #<I>)
Simple foreach() is easier to read than the array_map() with the
closure. Also, it might be slightly faster and/or consume less
memory.
Read more: <URL> |
diff --git a/auth_server/authn/ldap_auth.go b/auth_server/authn/ldap_auth.go
index <HASH>..<HASH> 100755
--- a/auth_server/authn/ldap_auth.go
+++ b/auth_server/authn/ldap_auth.go
@@ -92,8 +92,9 @@ func (la *LDAPAuth) bindReadOnlyUser(l *ldap.Conn) error {
if err != nil {
return err
}
- glog.V(2).Infof("Bind ... | Trim space from LDAP password before use
Makes it editor-friendly. |
diff --git a/src/Auth/ShibbolethAuthenticate.php b/src/Auth/ShibbolethAuthenticate.php
index <HASH>..<HASH> 100644
--- a/src/Auth/ShibbolethAuthenticate.php
+++ b/src/Auth/ShibbolethAuthenticate.php
@@ -11,7 +11,7 @@ use Cake\Http\Response;
class ShibbolethAuthenticate extends BaseAuthenticate
{
- protected $mod... | ShibbolethAuthenticate: try first to get Shibboleth attributes without mode_rewrite prefix |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -62,7 +62,7 @@ setup(name="ctypeslib",
author="Thomas Heller",
author_email="theller@ctypes.org",
license="MIT License",
- version = "0.5.0",
+ version = "0.5.1",
## url="http://stars... | Change the version number to the setup script (only to experiment with easy_install).
git-svn-id: <URL> |
diff --git a/lib/form/areafiles.php b/lib/form/areafiles.php
index <HASH>..<HASH> 100644
--- a/lib/form/areafiles.php
+++ b/lib/form/areafiles.php
@@ -6,16 +6,19 @@ class MoodleQuickForm_areafiles extends HTML_QuickForm_element {
protected $_helpbutton = '';
protected $_options = array('subdirs'=>0, 'maxby... | MDL-<I> minor constructor improvements |
diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -66,6 +66,9 @@ module.exports = (opts = {}) => {
if (!passthrough) {
const msg = debug ? e.message : 'Authentication Error';
ctx.throw(401, msg, { originalError: e... | error handling when passthrough is on
Let downstream middlewares handle verification exceptions |
diff --git a/lib/WeChatApp.php b/lib/WeChatApp.php
index <HASH>..<HASH> 100644
--- a/lib/WeChatApp.php
+++ b/lib/WeChatApp.php
@@ -689,6 +689,21 @@ class WeChatApp extends Base
}
/**
+ * Returns the text content or click event key
+ *
+ * @return bool|string
+ */
+ public function ... | added getKeyword for weChatApp service |
diff --git a/src/Rcm/Repository/Site.php b/src/Rcm/Repository/Site.php
index <HASH>..<HASH> 100644
--- a/src/Rcm/Repository/Site.php
+++ b/src/Rcm/Repository/Site.php
@@ -127,10 +127,10 @@ class Site extends EntityRepository
->where('site.siteId = :siteId')
->setParameter('siteId', $siteId);
... | Disable sites Enable sites
Uncomment some code |
diff --git a/app/models/multi_client/client.rb b/app/models/multi_client/client.rb
index <HASH>..<HASH> 100644
--- a/app/models/multi_client/client.rb
+++ b/app/models/multi_client/client.rb
@@ -8,6 +8,10 @@ module MultiClient
scope :enabled, -> { where(enabled: true) }
+ def self.master
+ where(identi... | Added log message when setting master.
Added master query method. |
diff --git a/tests/test_bdist.py b/tests/test_bdist.py
index <HASH>..<HASH> 100644
--- a/tests/test_bdist.py
+++ b/tests/test_bdist.py
@@ -39,6 +39,9 @@ class BuildTestCase(support.TempdirManager,
for name in names:
subcmd = cmd.get_finalized_command(name)
+ if getattr(subcmd, '_unsup... | bpo-<I>: Fixes missing venv files and other tests (GH-<I>) |
diff --git a/lib/mongoid/relations/eager.rb b/lib/mongoid/relations/eager.rb
index <HASH>..<HASH> 100644
--- a/lib/mongoid/relations/eager.rb
+++ b/lib/mongoid/relations/eager.rb
@@ -23,11 +23,9 @@ module Mongoid
def preload(relations, docs)
grouped_relations = relations.group_by(&:inverse_class_name)... | Remove double iteration on grouped relations |
diff --git a/grade/lib.php b/grade/lib.php
index <HASH>..<HASH> 100644
--- a/grade/lib.php
+++ b/grade/lib.php
@@ -1002,6 +1002,11 @@ function print_grade_page_head($courseid, $active_type, $active_plugin=null,
grade_extend_settings($plugin_info, $courseid);
}
+ // Set the current report as active in... | MDL-<I> grade: Ensure report appears in breadcrumbs |
diff --git a/Kwc/Abstract/Cards/Generator.php b/Kwc/Abstract/Cards/Generator.php
index <HASH>..<HASH> 100644
--- a/Kwc/Abstract/Cards/Generator.php
+++ b/Kwc/Abstract/Cards/Generator.php
@@ -25,8 +25,8 @@ class Kwc_Abstract_Cards_Generator extends Kwf_Component_Generator_Static
$cc = $select->getPart(Kwf_C... | use more efficient fetchColumnByPrimaryId method to get the selected component |
diff --git a/src/com/google/javascript/jscomp/DefaultPassConfig.java b/src/com/google/javascript/jscomp/DefaultPassConfig.java
index <HASH>..<HASH> 100644
--- a/src/com/google/javascript/jscomp/DefaultPassConfig.java
+++ b/src/com/google/javascript/jscomp/DefaultPassConfig.java
@@ -46,6 +46,7 @@ import com.google.javas... | [NTI] Don't run checkConsts when NTI is enabled.
-------------
Created by MOE: <URL> |
diff --git a/_demos/editbox.go b/_demos/editbox.go
index <HASH>..<HASH> 100644
--- a/_demos/editbox.go
+++ b/_demos/editbox.go
@@ -2,13 +2,14 @@ package main
import (
"github.com/nsf/termbox-go"
+ "github.com/mattn/go-runewidth"
"unicode/utf8"
)
func tbprint(x, y int, fg, bg termbox.Attribute, msg string) {
... | fix tbprint for multi-width characters |
diff --git a/core-bundle/src/Resources/contao/library/Contao/System.php b/core-bundle/src/Resources/contao/library/Contao/System.php
index <HASH>..<HASH> 100644
--- a/core-bundle/src/Resources/contao/library/Contao/System.php
+++ b/core-bundle/src/Resources/contao/library/Contao/System.php
@@ -438,7 +438,7 @@ abstract ... | [Core] Fixed a typo in the `getCountries()` phpDoc |
diff --git a/salt/runners/survey.py b/salt/runners/survey.py
index <HASH>..<HASH> 100644
--- a/salt/runners/survey.py
+++ b/salt/runners/survey.py
@@ -152,7 +152,7 @@ def _get_pool_results(*args, **kwargs):
expr_form = kwargs.get('expr_form', 'compound')
if expr_form not in ['compound', 'pcre']:
- ex... | regular expressions in specifiing targets for salt-run survey.diff, hash |
diff --git a/src/AssetManager/Service/AssetManager.php b/src/AssetManager/Service/AssetManager.php
index <HASH>..<HASH> 100644
--- a/src/AssetManager/Service/AssetManager.php
+++ b/src/AssetManager/Service/AssetManager.php
@@ -27,6 +27,20 @@ class AssetManager
return $this;
}
+ public function sen... | Added send method to send file to client |
diff --git a/yubico/yubico.py b/yubico/yubico.py
index <HASH>..<HASH> 100644
--- a/yubico/yubico.py
+++ b/yubico/yubico.py
@@ -194,13 +194,12 @@ class Yubico():
if signature != generated_signature:
raise SignatureVerificationError(generated_signature,
... | Only check otp and nonce if they are present in the response. |
diff --git a/spec/level_spec.rb b/spec/level_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/level_spec.rb
+++ b/spec/level_spec.rb
@@ -1,6 +1,10 @@
require 'level'
describe Level do
+ before(:all) do
+ IO.any_instance.stub(:puts)
+ end
+
describe '#initialize' do
it 'exits when level is not defined' do... | Stub 'puts' to avoid some echoing from the tests |
diff --git a/base/src/main/java/uk/ac/ebi/atlas/experimentimport/admin/ExperimentAdminHelpPage.java b/base/src/main/java/uk/ac/ebi/atlas/experimentimport/admin/ExperimentAdminHelpPage.java
index <HASH>..<HASH> 100644
--- a/base/src/main/java/uk/ac/ebi/atlas/experimentimport/admin/ExperimentAdminHelpPage.java
+++ b/base... | The help page explanation gets a bit longer |
diff --git a/sacred/optional.py b/sacred/optional.py
index <HASH>..<HASH> 100644
--- a/sacred/optional.py
+++ b/sacred/optional.py
@@ -13,6 +13,10 @@ class MissingDependencyMock(object):
raise ImportError('Depends on missing "{}" package.'
.format(object.__getattribute__(self, 'depen... | MissingDependencyMock is now callable |
diff --git a/cpnet/qstest.py b/cpnet/qstest.py
index <HASH>..<HASH> 100644
--- a/cpnet/qstest.py
+++ b/cpnet/qstest.py
@@ -47,7 +47,7 @@ def qstest(
significance_level=0.05,
null_model=config_model,
sfunc=sz_n,
- num_of_rand_net=300,
+ num_of_rand_net=100,
q_tilde=[],
s_tilde=[],
**p... | fix compatilibity issue with numba and add test scripts |
diff --git a/bridge/mattermost/mattermost.go b/bridge/mattermost/mattermost.go
index <HASH>..<HASH> 100644
--- a/bridge/mattermost/mattermost.go
+++ b/bridge/mattermost/mattermost.go
@@ -181,7 +181,7 @@ func (b *Bmattermost) handleMatterClient(mchan chan *MMMessage) {
m.Text = message.Text + b.Config.EditSuffix
... | Use GetFileLinks. Also show links to non-public files (mattermost) |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -34,7 +34,7 @@ setup(
maintainer_email="tribaal@gmail.com",
url="http://www.xhtml2pdf.com",
keywords="PDF, HTML, XHTML, XML, CSS",
- install_requires = ["html5lib", "pypdf", "pil", "reportlab"],
+ install_... | Update setup.py to use Pillow rather than PIL
PIL is old and broken, using Pillow instead to support modern systems. |
diff --git a/Resources/public/js/components/products/components/attributes/main.js b/Resources/public/js/components/products/components/attributes/main.js
index <HASH>..<HASH> 100644
--- a/Resources/public/js/components/products/components/attributes/main.js
+++ b/Resources/public/js/components/products/components/attr... | Remove empty line at the end of function |
diff --git a/lib/GoCardless/Request.php b/lib/GoCardless/Request.php
index <HASH>..<HASH> 100644
--- a/lib/GoCardless/Request.php
+++ b/lib/GoCardless/Request.php
@@ -84,6 +84,10 @@ class GoCardless_Request {
// Request format
$curl_options[CURLOPT_HTTPHEADER][] = 'Accept: application/json';
+ // Enable SSL... | Setting CURLOPT_SSL_VERIFYPEER to 'true' to avoid insecure default in old libcurl versions. |
diff --git a/spec/unit/azurerm_server_delete_spec.rb b/spec/unit/azurerm_server_delete_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/azurerm_server_delete_spec.rb
+++ b/spec/unit/azurerm_server_delete_spec.rb
@@ -17,8 +17,8 @@ describe Chef::Knife::AzurermServerDelete do
@arm_server_instance.name_args = ['... | Updated code logic and removed unused methods and specs related to azure
management gems |
diff --git a/core/src/test/java/io/basic/ddf/BasicDDFTests.java b/core/src/test/java/io/basic/ddf/BasicDDFTests.java
index <HASH>..<HASH> 100644
--- a/core/src/test/java/io/basic/ddf/BasicDDFTests.java
+++ b/core/src/test/java/io/basic/ddf/BasicDDFTests.java
@@ -40,7 +40,6 @@ public class BasicDDFTests {
Assert.as... | don't need to check tableName |
diff --git a/spec/active_pstore/base_spec.rb b/spec/active_pstore/base_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/active_pstore/base_spec.rb
+++ b/spec/active_pstore/base_spec.rb
@@ -124,4 +124,22 @@ describe ActivePStore::Base do
it { expect(subject.birth_date).to be_nil }
end
end
+
+ describe '#va... | add specs for `valid?` method. |
diff --git a/src/Models/MenuGenerator.php b/src/Models/MenuGenerator.php
index <HASH>..<HASH> 100755
--- a/src/Models/MenuGenerator.php
+++ b/src/Models/MenuGenerator.php
@@ -379,8 +379,8 @@ class MenuGenerator implements Countable
{
return $this->items->sortBy('properties.order')->each(function(MenuItem ... | Fix hide logic for hiding parent items without visible children, only if type is dropdown or header |
diff --git a/lib/define.js b/lib/define.js
index <HASH>..<HASH> 100755
--- a/lib/define.js
+++ b/lib/define.js
@@ -38,8 +38,6 @@ var functionWrapper = function (f, name, supers) {
}
ret = f.apply(this, arguments);
this._super = orgSuper || null;
- } else if (f.__meta && f._... | Bug fixes
* Removed dead code from define.js
* Added new test for Object Properties |
diff --git a/clustergrammer_widget/_version.py b/clustergrammer_widget/_version.py
index <HASH>..<HASH> 100644
--- a/clustergrammer_widget/_version.py
+++ b/clustergrammer_widget/_version.py
@@ -1,2 +1,2 @@
-version_info = (1, 0, 1)
+version_info = (1, 1, 0)
__version__ = '.'.join(map(str, version_info)) | going to publish clustergrammer_widget <I> |
diff --git a/drivers/python/rethinkdb/rethinkdb.py b/drivers/python/rethinkdb/rethinkdb.py
index <HASH>..<HASH> 100644
--- a/drivers/python/rethinkdb/rethinkdb.py
+++ b/drivers/python/rethinkdb/rethinkdb.py
@@ -96,7 +96,10 @@ class Connection(object):
if debug:
print "response:", response
- ... | partially fix python client |
diff --git a/salt/modules/cron.py b/salt/modules/cron.py
index <HASH>..<HASH> 100644
--- a/salt/modules/cron.py
+++ b/salt/modules/cron.py
@@ -151,7 +151,7 @@ def set_special(user, special, cmd):
'cmd': cmd}
lst['special'].append(spec)
comdat = _write_cron(user, _render_tab(lst))
- if not comd... | Fixed set_special from returning stderr on success instead of 'new'. |
diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -102,7 +102,8 @@ module.exports = function (grunt) {
grunt.registerTask('phpcs', 'PHP Codesniffer', 'exec:phpcs');
grunt.registerTask('phpmd', 'PHP Mess Detector', 'exec:phpmd');
grunt.registerTa... | Add new grunt task for QA. Set as default task. |
diff --git a/spyder/app/tests/test_mainwindow.py b/spyder/app/tests/test_mainwindow.py
index <HASH>..<HASH> 100644
--- a/spyder/app/tests/test_mainwindow.py
+++ b/spyder/app/tests/test_mainwindow.py
@@ -82,6 +82,7 @@ def main_window(request):
# Tests
#==================================================================... | Testing: Skip improved test on Windows because it hangs there |
diff --git a/lib/async.js b/lib/async.js
index <HASH>..<HASH> 100644
--- a/lib/async.js
+++ b/lib/async.js
@@ -14,7 +14,16 @@
// global on the server, window in the browser
var root, previous_async;
- root = this;
+ if (typeof window == 'object' && this === window) {
+ root = window;
+ }
+ ... | Better support for browsers.
In a RequireJS environment `this` doesn't refer to the `window` object, so async doesn't work there. |
diff --git a/firebase_test.go b/firebase_test.go
index <HASH>..<HASH> 100644
--- a/firebase_test.go
+++ b/firebase_test.go
@@ -1,7 +1,6 @@
package firebase_test
import (
- "fmt"
"os"
"reflect"
"testing"
@@ -159,10 +158,11 @@ func TestSetRules(t *testing.T) {
}
}
+/* TODO: Once circle ci supports go 1.4, ... | Disable go <I> features for now, they just make us fail more elegantly |
diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -58,7 +58,7 @@ master_doc = 'index'
# General information about the project.
project = u'ciscosparkapi'
-copyright = u'2016, Cisco DevNet'
+copyright = u'2016 Cisco Systems, Inc.'
author = u'Chris Lunsford... | Update copyright in docs/conf.py
This copyright reference shows up in the footers of the HTML docs
generated by Sphinx. |
diff --git a/Model/Api.php b/Model/Api.php
index <HASH>..<HASH> 100644
--- a/Model/Api.php
+++ b/Model/Api.php
@@ -679,7 +679,12 @@ class Api
// Must have at least ONE valid contact field (some are to be ignored since we provide them or they are core).
$ignore = ['ip', 'attribution', 'attribution_date... | Prevent exception when no fields are provided via Source API. |
diff --git a/reformulation-core/src/main/java/org/semanticweb/ontop/owlrefplatform/core/translator/IntermediateQueryToDatalogTranslator.java b/reformulation-core/src/main/java/org/semanticweb/ontop/owlrefplatform/core/translator/IntermediateQueryToDatalogTranslator.java
index <HASH>..<HASH> 100644
--- a/reformulation-c... | Makes the heads and the sub-rule atoms mutable after translation back to Datalog. |
diff --git a/src/rituals/invoke_tasks.py b/src/rituals/invoke_tasks.py
index <HASH>..<HASH> 100644
--- a/src/rituals/invoke_tasks.py
+++ b/src/rituals/invoke_tasks.py
@@ -136,8 +136,8 @@ def test():
except which.WhichError:
pytest = None
- if console and pytest:
- run('{0} --color=yes {1}'.for... | :twisted_rightwards_arrows: if py.test is found, always use it directly |
diff --git a/lib/genevalidator/version.rb b/lib/genevalidator/version.rb
index <HASH>..<HASH> 100644
--- a/lib/genevalidator/version.rb
+++ b/lib/genevalidator/version.rb
@@ -1,3 +1,3 @@
module GeneValidator
- VERSION = "1.0.0"
+ VERSION = "1.0.1"
end
\ No newline at end of file | Update the Version and add IsmailM as co-author |
diff --git a/activerecord/lib/active_record/railtie.rb b/activerecord/lib/active_record/railtie.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/railtie.rb
+++ b/activerecord/lib/active_record/railtie.rb
@@ -168,21 +168,7 @@ end_error
initializer "active_record.initialize_database" do
Act... | Remove unreachable database warning
`establish_connection` will never raise `ActiveRecord::NoDatabaseError`,
because it doesn't connect to a database; it sets up a connection pool. |
diff --git a/sitetree/management/commands/sitetreedump.py b/sitetree/management/commands/sitetreedump.py
index <HASH>..<HASH> 100644
--- a/sitetree/management/commands/sitetreedump.py
+++ b/sitetree/management/commands/sitetreedump.py
@@ -38,9 +38,9 @@ class Command(BaseCommand):
objects.extend(trees)
... | Updated tree items order in 'sitetreedump' management command. |
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -24,7 +24,7 @@ ActiveRecord::Base.establish_connection(ENV["DB"] || "sqlite")
load File.dirname(__FILE__) + "/fixtures/schema.rb"
# Freeze time to Jan 1st of this year
-Timecop.t... | Set hours, mins and sec for Timecop.travel in spec_helper.rb
This will fix by_weekend tests, and cause last commit to be reverted |
diff --git a/js/main.js b/js/main.js
index <HASH>..<HASH> 100644
--- a/js/main.js
+++ b/js/main.js
@@ -59,12 +59,19 @@ GraphNode.Impl = class {
}
}
+ /*
+ *
+ * @param {type} f
+ * @returns {unresolved} a promise thta is satisfied whne all promises returne... | returning promise in each and eachFetch |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.