rabbitmq-server/deps/rabbitmq_management/priv/www/js/global.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

870 lines
42 KiB
JavaScript
Raw Normal View History

///////////////////////
// //
// Genuine constants //
// //
///////////////////////
// Just used below
function map(list) {
var res = {};
for (i in list) {
res[list[i]] = '';
}
return res;
}
// Extension arguments that we know about and present specially in the UI.
var KNOWN_ARGS = {'alternate-exchange': {'short': 'AE', 'type': 'string'},
'x-message-ttl': {'short': 'TTL', 'type': 'int'},
'x-expires': {'short': 'Exp', 'type': 'int'},
'x-max-length': {'short': 'Lim', 'type': 'int'},
2014-08-13 00:23:23 +08:00
'x-max-length-bytes': {'short': 'Lim B', 'type': 'int'},
'x-delivery-limit': {'short': 'DlL', 'type': 'int'},
'x-overflow': {'short': 'Ovfl', 'type': 'string'},
'x-dead-letter-exchange': {'short': 'DLX', 'type': 'string'},
'x-dead-letter-routing-key': {'short': 'DLK', 'type': 'string'},
'x-queue-master-locator': {'short': 'ML', 'type': 'string'},
'x-max-priority': {'short': 'Pri', 'type': 'int'},
'x-single-active-consumer': {'short': 'SAC', 'type': 'boolean'}};
// Things that are like arguments that we format the same way in listings.
var IMPLICIT_ARGS = {'durable': {'short': 'D', 'type': 'boolean'},
'auto-delete': {'short': 'AD', 'type': 'boolean'},
'internal': {'short': 'I', 'type': 'boolean'},
'exclusive': {'short': 'Excl', 'type': 'boolean'},
'messages delayed':{'short': 'DM', 'type': 'int'}};
// Both the above
var ALL_ARGS = {};
for (var k in IMPLICIT_ARGS) ALL_ARGS[k] = IMPLICIT_ARGS[k];
for (var k in KNOWN_ARGS) ALL_ARGS[k] = KNOWN_ARGS[k];
var NAVIGATION = {'Overview': ['#/', "management"],
'Connections': ['#/connections', "management", true],
'Channels': ['#/channels', "management", true],
'Exchanges': ['#/exchanges', "management", true],
'Queues and Streams': ['#/queues', "management", true],
'Admin':
[{'Users': ['#/users', "administrator"],
'Virtual Hosts': ['#/vhosts', "administrator"],
'Feature Flags': ['#/feature-flags', "administrator"],
'Deprecated Features': ['#/deprecated-features', "administrator"],
'Policies': ['#/policies', "management"],
'Limits': ['#/limits', "management"],
'Cluster': ['#/cluster-name', "administrator"]},
"management",
true
]
};
var CHART_RANGES = {'global': [], 'basic': []};
var ALL_CHART_RANGES = {};
var ALL_COLUMNS =
{'exchanges' :
{'Overview': [['type', 'Type', true],
['features', 'Features (with policy)', true],
['features_no_policy', 'Features (no policy)', false],
['policy', 'Policy', false]],
'Message rates': [['rate-in', 'rate in', true],
['rate-out', 'rate out', true]]},
'queues' :
{'Overview': [['type', 'Type', true],
['features', 'Features (with policy)', true],
['features_no_policy', 'Features (no policy)', false],
['policy', 'Policy', false],
['consumers', 'Consumer count', false],
['consumer_capacity', 'Consumer capacity', false],
['state', 'State', true]],
2014-09-19 22:44:43 +08:00
'Messages': [['msgs-ready', 'Ready', true],
['msgs-unacked', 'Unacknowledged', true],
['msgs-ram', 'In memory', false],
['msgs-persistent', 'Persistent', false],
['msgs-total', 'Total', true]],
'Message bytes': [['msg-bytes-ready', 'Ready', false],
['msg-bytes-unacked', 'Unacknowledged', false],
['msg-bytes-ram', 'In memory', false],
['msg-bytes-persistent', 'Persistent', false],
['msg-bytes-total', 'Total', false]],
'Message rates': [['rate-incoming', 'incoming', true],
['rate-deliver', 'deliver / get', true],
['rate-redeliver', 'redelivered', false],
2014-09-20 01:15:29 +08:00
['rate-ack', 'ack', true]]},
'channels' :
{'Overview': [['user', 'User name', true],
['mode', 'Mode', true],
['state', 'State', true]],
'Details': [['msgs-unconfirmed', 'Unconfirmed', true],
['prefetch', 'Prefetch', true],
['msgs-unacked', 'Unacked', true]],
'Transactions': [['msgs-uncommitted', 'Msgs uncommitted', false],
['acks-uncommitted', 'Acks uncommitted', false]],
'Message rates': [['rate-publish', 'publish', true],
['rate-confirm', 'confirm', true],
['rate-unroutable-drop', 'unroutable (drop)', true],
['rate-unroutable-return', 'unroutable (return)', false],
2014-09-20 01:15:29 +08:00
['rate-deliver', 'deliver / get', true],
['rate-redeliver', 'redelivered', false],
2014-09-22 21:13:11 +08:00
['rate-ack', 'ack', true]]},
'connections':
{'Overview': [['user', 'User name', true],
['state', 'State', true]],
'Details': [['ssl', 'TLS', true],
['ssl_info', 'TLS details', false],
2014-09-22 21:13:11 +08:00
['protocol', 'Protocol', true],
['channels', 'Channels', true],
['channel_max', 'Channel max', false],
['frame_max', 'Frame max', false],
['auth_mechanism', 'SASL auth mechanism', false],
2014-09-22 21:13:11 +08:00
['client', 'Client', false]],
'Network': [['from_client', 'From client', true],
['to_client', 'To client', true],
['heartbeat', 'Heartbeat', false],
2014-09-22 21:29:01 +08:00
['connected_at', 'Connected at', false]]},
'vhosts':
{'Overview': [['default-queue-type', 'Default queue type', false],
['cluster-state', 'Cluster state', false],
['description', 'Description', false],
['tags', 'Tags', false]],
'Messages': [['msgs-ready', 'Ready', true],
2014-09-22 21:29:01 +08:00
['msgs-unacked', 'Unacknowledged', true],
['msgs-total', 'Total', true]],
'Network': [['from_client', 'From client', true],
['to_client', 'To client', true]],
'Message rates': [['rate-publish', 'publish', true],
2014-09-27 01:09:25 +08:00
['rate-deliver', 'deliver / get', true]]},
'overview':
{'Statistics': [['file_descriptors', 'File descriptors', true],
['socket_descriptors', 'Socket descriptors', true],
['erlang_processes', 'Erlang processes', true],
['memory', 'Memory', true],
['disk_space', 'Disk space', true]],
'General': [['uptime', 'Uptime', true],
['cores', 'Cores', true],
['info', 'Info', true],
['reset_stats', 'Reset stats', true]]}};
var DISABLED_STATS_COLUMNS =
{'exchanges' :
{'Overview': [['type', 'Type', true],
['features', 'Features (with policy)', true],
['features_no_policy', 'Features (no policy)', false],
['policy', 'Policy', false]]},
'queues' :
{'Overview': [['type', 'Type', true],
['features', 'Features (with policy)', true],
['features_no_policy', 'Features (no policy)', false],
['policy', 'Policy', false],
['state', 'State', true]],
'Messages': [['msgs-ready', 'Ready', true],
['msgs-unacked', 'Unacknowledged', true],
['msgs-ram', 'In memory', false],
['msgs-persistent', 'Persistent', false],
['msgs-total', 'Total', true]]},
'connections':
{'Overview': [['user', 'User name', true],
['state', 'State', true]]},
'vhosts':
{'Overview': [['cluster-state', 'Cluster state', false]]}};
var COLUMNS;
2020-11-19 21:48:25 +08:00
var RENDER_CALLBACKS = {};
const QUEUE_EXTRA_CONTENT = [];
const QUEUE_EXTRA_CONTENT_REQUESTS = [];
// All help ? popups
var HELP = {
'delivery-limit':
'The number of allowed unsuccessful delivery attempts. Once a message has been delivered unsuccessfully more than this many times it will be dropped or dead-lettered, depending on the queue configuration.',
'exchange-auto-delete':
'If yes, the exchange will delete itself after at least one queue or exchange has been bound to this one, and then all queues or exchanges have been unbound.',
'exchange-internal':
'If yes, clients cannot publish to this exchange directly. It can only be used with exchange to exchange bindings.',
'exchange-alternate':
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&sort_reverse=true&columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'If messages to this exchange cannot otherwise be routed, send them to the alternate exchange named here.<br/>(Sets the "<a target="_blank" href="https://rabbitmq.com/ae.html">alternate-exchange</a>" argument.)',
'queue-message-ttl':
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'How long a message published to a queue can live before it is discarded (milliseconds).<br/>(Sets the "<a target="_blank" href="https://rabbitmq.com/ttl.html#per-queue-message-ttl">x-message-ttl</a>" argument.)',
2023-05-22 16:54:51 +08:00
'queue-consumer-timeout':
'If a consumer does not ack its delivery for more than the <a href="https://www.rabbitmq.com/consumers.html#acknowledgement-timeout">timeout value</a> (30 minutes by default), its channel will be closed with a <code>PRECONDITION_FAILED</code> channel exception.',
'queue-expires':
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'How long a queue can be unused for before it is automatically deleted (milliseconds).<br/>(Sets the "<a target="_blank" href="https://rabbitmq.com/ttl.html#queue-ttl">x-expires</a>" argument.)',
'queue-max-length':
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'How many (ready) messages a queue can contain before it starts to drop them from its head.<br/>(Sets the "<a target="_blank" href="https://rabbitmq.com/maxlength.html">x-max-length</a>" argument.)',
'queue-max-length-bytes':
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'Total body size for ready messages a queue can contain before it starts to drop them from its head.<br/>(Sets the "<a target="_blank" href="https://rabbitmq.com/maxlength.html">x-max-length-bytes</a>" argument.)',
2020-08-05 00:53:34 +08:00
'queue-max-age':
'How long a message published to a stream queue can live before it is discarded.',
2023-11-18 06:48:39 +08:00
'queue-stream-filter-size-bytes':
'Size of the filter data attached to each stream chunk.<br/>(Sets the x-stream-filter-size-bytes argument.)',
'queue-auto-delete':
'If yes, the queue will delete itself after at least one consumer has connected, and then all consumers have disconnected.',
'queue-dead-letter-exchange':
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'Optional name of an exchange to which messages will be republished if they are rejected or expire.<br/>(Sets the "<a target="_blank" href="https://rabbitmq.com/dlx.html">x-dead-letter-exchange</a>" argument.)',
'queue-dead-letter-routing-key':
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'Optional replacement routing key to use when a message is dead-lettered. If this is not set, the message\'s original routing key will be used.<br/>(Sets the "<a target="_blank" href="https://rabbitmq.com/dlx.html">x-dead-letter-routing-key</a>" argument.)',
'queue-dead-letter-strategy':
'Valid values are <code>at-most-once</code> or <code>at-least-once</code>. It defaults to <code>at-most-once</code>. This setting is understood only by quorum queues. If <code>at-least-once</code> is set, <code>Overflow behaviour</code> must be set to <code>reject-publish</code>. Otherwise, dead letter strategy will fall back to <code>at-most-once</code>.',
'queue-single-active-consumer':
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'If set, makes sure only one consumer at a time consumes from the queue and fails over to another registered consumer in case the active one is cancelled or dies.<br/>(Sets the "<a target="_blank" href="https://rabbitmq.com/consumers.html#single-active-consumer">x-single-active-consumer</a>" argument.)',
'queue-max-priority':
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'Maximum number of priority levels for the queue to support; if not set, the queue will not support message priorities.<br/>(Sets the "<a target="_blank" href="https://rabbitmq.com/priority.html">x-max-priority</a>" argument.)',
2020-02-21 23:18:32 +08:00
'queue-max-age':
'Sets the data retention for stream queues in time units </br>(Y=Years, M=Months, D=Days, h=hours, m=minutes, s=seconds).<br/>E.g. "1h" configures the stream to only keep the last 1 hour of received messages.</br></br>(Sets the x-max-age argument.)',
2020-02-21 23:18:32 +08:00
'queue-version':
'Set the queue version. Defaults to version 1.<br/>Version 1 has a journal-based index that embeds small messages.<br/>Version 2 has a different index which improves memory usage and performance in many scenarios, as well as a per-queue store for messages that were previously embedded.<br/>(Sets the "x-queue-version" argument.)',
2017-11-02 07:58:23 +08:00
'queue-overflow':
'Sets the <a target="_blank" href="https://www.rabbitmq.com/maxlength.html#overflow-behaviour">queue overflow behaviour</a>. This determines what happens to messages when the maximum length of a queue is reached. Valid values are <code>drop-head</code>, <code>reject-publish</code> or <code>reject-publish-dlx</code>. The quorum queue type only supports <code>drop-head</code> and <code>reject-publish</code>.',
2017-11-02 07:58:23 +08:00
'queue-master-locator':
'Set the queue into master location mode, determining the rule by which the queue master is located when declared on a cluster of nodes.<br/>(Sets the "<a target="_blank" href="https://www.rabbitmq.com/ha.html">x-queue-master-locator</a>" argument.)',
'queue-leader-locator':
'Set the rule by which the queue leader is located when declared on a cluster of nodes. Valid values are <code>client-local</code> (default) and <code>balanced</code>.',
'queue-initial-cluster-size':
'Set the queue initial cluster size.',
'queue-type':
'Set the queue type, determining the type of queue to use: raft-based high availability or classic queue. Valid values are <code>quorum</code> or <code>classic</code>. It defaults to <code>classic</code>. <br/>',
'queue-messages':
'<p>Message counts.</p><p>Note that "in memory" and "persistent" are not mutually exclusive; persistent messages can be in memory as well as on disc, and transient messages can be paged out if memory is tight. Non-durable queues will consider all messages to be transient.</p>',
'queue-dead-lettered':
'Applies to messages dead-lettered with dead-letter-strategy <code>at-least-once</code>.',
'queue-message-body-bytes':
'<p>The sum total of the sizes of the message bodies in this queue. This only counts message bodies; it does not include message properties (including headers) or metadata used by the queue.</p><p>Note that "in memory" and "persistent" are not mutually exclusive; persistent messages can be in memory as well as on disc, and transient messages can be paged out if memory is tight. Non-durable queues will consider all messages to be transient.</p><p>If a message is routed to multiple queues on publication, its body will be stored only once (in memory and on disk) and shared between queues. The value shown here does not take account of this effect.</p>',
'queue-process-memory':
'Total memory used by this queue process. This does not include in-memory message bodies (which may be shared between queues and will appear in the global "binaries" memory) but does include everything else.',
'queue-consumer-capacity':
'Fraction of the time that the queue is able to immediately deliver messages to consumers. Will be 0 for queues that have no consumers. If this number is less than 100% you may be able to deliver messages faster if: \
<ul> \
<li>There were more consumers or</li> \
<li>The consumers were faster or</li> \
<li>The consumer channels used a higher prefetch count</li> \
</ul>',
'internal-users-only':
'Only users within the internal RabbitMQ database are shown here. Other users (e.g. those authenticated over LDAP) will not appear.',
'export-definitions':
'The definitions consist of users, virtual hosts, permissions, parameters, exchanges, queues, policies and bindings. They do not include the contents of queues. Exclusive queues will not be exported.',
'export-definitions-vhost':
'The definitions exported for a single virtual host consist of exchanges, queues, bindings and policies.',
'import-definitions':
'The definitions that are imported will be merged with the current definitions. If an error occurs during import, any changes made will not be rolled back.',
'import-definitions-vhost':
'For a single virtual host, only exchanges, queues, bindings and policies are imported.',
'exchange-rates-incoming':
'The incoming rate is the rate at which messages are published directly to this exchange.',
'exchange-rates-outgoing':
'The outgoing rate is the rate at which messages enter queues, having been published directly to this exchange.',
'channel-mode':
'Channel guarantee mode. Can be one of the following, or neither:<br/> \
<dl> \
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
<dt><abbr title="Confirm">C</abbr> &ndash; <a target="_blank" href="https://www.rabbitmq.com/confirms.html">confirm</a></dt> \
<dd>Channel will send streaming publish confirmations.</dd> \
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
<dt><abbr title="Transactional">T</abbr> &ndash; <a target="_blank" href="https://www.rabbitmq.com/amqp-0-9-1-reference.html#class.tx">transactional</a></dt> \
<dd>Channel is transactional.</dd> \
</dl>',
'channel-prefetch':
'Channel prefetch counts. \
<p> \
Each channel can have two prefetch counts: A per-consumer count, which \
will limit each new consumer created on the channel, and a global \
count, which is shared between all consumers on the channel.\
</p> \
<p> \
This column shows one, the other, or both limits if they are set. \
</p>',
'file-descriptors':
'<p>File descriptor count and limit, as reported by the operating \
system. The count includes network sockets and file handles.</p> \
<p>To optimize disk access RabbitMQ uses as many free descriptors as are \
available, so the count may safely approach the limit. \
However, if most of the file descriptors are used by sockets then \
persister performance will be negatively impacted.</p> \
<p>To change the limit on Unix / Linux, use "ulimit -n". To change \
the limit on Windows, set the ERL_MAX_PORTS environment variable</p> \
<p>To report used file handles on Windows, handle.exe from \
sysinternals must be installed in your path. You can download it \
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
<a target="_blank" href="https://technet.microsoft.com/en-us/sysinternals/bb896655">here</a>.</p>',
'socket-descriptors':
'The network sockets count and limit managed by RabbitMQ.<br/> \
When the limit is exhausted RabbitMQ will stop accepting new \
network connections.',
'memory-alarm':
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'<p>The <a target="_blank" href="https://www.rabbitmq.com/memory.html#memsup">memory \
alarm</a> for this node has gone off. It will block \
incoming network traffic until the memory usage drops below \
the watermark.</p>\
<p>Note that the pale line in this case indicates the high watermark \
in relation to how much memory is used in total. </p>',
'disk-free-alarm':
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'The <a target="_blank" href="https://www.rabbitmq.com/memory.html#diskfreesup">disk \
free space alarm</a> for this node has gone off. It will block \
incoming network traffic until the amount of free space exceeds \
the limit.',
'message-get-requeue':
'<p>Clicking "Get Message(s)" will consume messages from the queue. \
If requeue is set the message will be put back into the queue in place, \
but "redelivered" will be set on the message.</p> \
<p>If requeue is not set messages will be removed from the queue.</p> \
<p>Furthermore, message payloads will be truncated to 50000 bytes.</p>',
'message-publish-headers':
'Headers can have any name. Only long string headers can be set here.',
'message-publish-properties':
'<p>You can set other message properties here (delivery mode and headers \
are pulled out as the most common cases).</p>\
<p>Invalid properties will be ignored. Valid properties are:</p>\
<ul>\
<li>content_type</li>\
<li>content_encoding</li>\
<li>priority</li>\
<li>correlation_id</li>\
<li>reply_to</li>\
<li>expiration</li>\
<li>message_id</li>\
<li>timestamp</li>\
<li>type</li>\
<li>user_id</li>\
<li>app_id</li>\
<li>cluster_id</li>\
</ul>',
'string-base64':
'<p>AMQP message payloads can contain any binary content. They can \
therefore be difficult to display in a browser. The options here \
have the following meanings:</p> \
<dl> \
<dt>Auto string / base64</dt> \
<dd>If the message payload can be interpreted as a string in UTF-8 \
encoding, do so. Otherwise return the payload encoded as \
base64.</dd> \
<dt>base64</dt> \
<dd>Return the payload encoded as base64 unconditionally.</dd> \
</dl>',
'user-tags':
'Comma-separated list of tags to apply to the user. Currently \
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
<a target="_blank" href="https://www.rabbitmq.com/management.html#permissions">supported \
by the management plugin</a>: \
<dl> \
<dt>management</dt> \
<dd> \
User can access the management plugin \
</dd> \
<dt>policymaker</dt> \
<dd> \
User can access the management plugin and manage policies and \
parameters for the vhosts they have access to. \
</dd> \
<dt>monitoring</dt> \
<dd> \
User can access the management plugin and see all connections and \
channels as well as node-related information. \
</dd> \
<dt>administrator</dt> \
<dd> \
User can do everything monitoring can do, manage users, \
vhosts and permissions, close other user\'s connections, and manage \
policies and parameters for all vhosts. \
</dd> \
</dl> \
<p> \
Note that you can set any tag here; the links for the above four \
tags are just for convenience. \
</p>',
'queued-messages':
'<dl> \
<dt>Ready</dt>\
<dd>Number of messages that are available to be delivered now.</dd>\
<dt>Unacknowledged</dt>\
<dd>Number of messages for which the server is waiting for acknowledgement.</dd>\
<dt>Total</dt>\
<dd>The total of these two numbers.</dd>\
</dl>',
'message-rates':
'Only rates for which some activity is taking place will be shown.\
<dl>\
<dt>Publish</dt>\
<dd>Rate at which messages are entering the server.</dd>\
<dt>Publisher confirm</dt>\
<dd>Rate at which the server is confirming publishes.</dd>\
<dt>Deliver (manual ack)</dt>\
<dd>Rate at which messages are delivered to consumers that use manual acknowledgements.</dd>\
<dt>Deliver (auto ack)</dt>\
<dd>Rate at which messages are delivered to consumers that use automatic acknowledgements.</dd>\
<dt>Consumer ack</dt>\
<dd>Rate at which messages are being acknowledged by consumers.</dd>\
<dt>Redelivered</dt>\
<dd>Rate at which messages with the \'redelivered\' flag set are being delivered. Note that these messages will <b>also</b> be counted in one of the delivery rates above.</dd>\
<dt>Get (manual ack)</dt>\
<dd>Rate at which messages requiring acknowledgement are being delivered in response to basic.get.</dd>\
<dt>Get (auto ack)</dt>\
<dd>Rate at which messages not requiring acknowledgement are being delivered in response to basic.get.</dd>\
<dt>Get (empty)</dt>\
<dd>Rate at which empty queues are hit in response to basic.get.</dd>\
<dt>Return</dt>\
<dd>Rate at which basic.return is sent to publishers for unroutable messages published with the \'mandatory\' flag set.</dd>\
<dt>Disk read</dt>\
<dd>Rate at which queues read messages from disk.</dd>\
<dt>Disk write</dt>\
<dd>Rate at which queues write messages to disk.</dd>\
</dl>\
<p>\
2018-08-04 01:22:30 +08:00
Note that the last two items originate in queues rather than \
channels; they may therefore be slightly out of sync with other \
statistics.\
</p>',
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'disk-monitoring-no-watermark' : 'There is no <a target="_blank" href="https://www.rabbitmq.com/memory.html#diskfreesup">disk space low watermark</a> set. RabbitMQ will not take any action to avoid running out of disk space.',
'resource-counts' : 'Shows total number of objects for all virtual hosts the current user has access to.',
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'memory-use' : '<p>Note that the memory details shown here are only updated on request - they could be too expensive to calculate every few seconds on a busy server.</p><p><a target="_blank" href="https://www.rabbitmq.com/memory-use.html">Read more</a> on memory use.</p>',
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'memory-calculation-strategy-breakdown' : '<p>The setting <code>vm_memory_calculation_strategy</code> defines which of the below memory values is used to check if the memory usage reaches the watermark or paging to disk is required.</p><p><a target="_blank" href="https://www.rabbitmq.com/memory-use.html">Read more</a> on memory use.</p>',
'memory-calculation-strategy' : '<p>This value can be calculated using different strategies, see the <code>vm_memory_calculation_strategy</code> configuration setting.</p><p><a target="_blank" href="https://www.rabbitmq.com/memory-use.html">Read more</a> on memory use.</p>',
'binary-use' : '<p>Binary accounting is not exact; binaries are shared between processes (and thus the same binary might be counted in more than one section), and the VM does not allow us to track binaries that are not associated with processes (so some binary use might not appear at all).</p>',
'policy-federation-upstream-set' :
'A string; only if the federation plugin is enabled. Chooses the name of a set of upstreams to use with federation, or "all" to use all upstreams. Incompatible with <code>federation-upstream</code>.',
'policy-federation-upstream' :
'A string; only if the federation plugin is enabled. Chooses a specific upstream set to use for federation. Incompatible with <code>federation-upstream-set</code>.',
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
'handle-exe' : 'In order to monitor the number of file descriptors in use on Windows, RabbitMQ needs the <a href="https://technet.microsoft.com/en-us/sysinternals/bb896655" target="_blank">handle.exe command line tool from Microsoft</a>. Download it and place it in the path (e.g. in C:\Windows).',
'filter-regex' :
'Whether to enable regular expression matching. Both string literals \
and regular expressions are matched in a case-insensitive manner.<br/><br/>',
'consumer-active' :
'Whether the consumer is active or not, i.e. whether the consumer can get messages from the queue. \
When single active consumer is enabled for the queue, only one consumer at a time is active. \
When single active consumer is disabled for the queue, consumers are active by default. \
For a quorum queue, a consumer can be inactive because its owning node is suspected down. <br/><br/> \
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
(<a href="https://www.rabbitmq.com/consumers.html#active-consumer" target="_blank">Documentation</a>)',
'consumer-owner' :
'<a href="https://www.rabbitmq.com/consumers.html">AMQP 0-9-1 consumers</a> belong to a channel, \
and <a href="https://www.rabbitmq.com/stream.html">stream consumers</a> belong to a stream connection.',
'plugins' :
'Note that only plugins which are both explicitly enabled and running are shown here.',
'io-operations':
'Rate of I/O operations. Only operations performed by the message \
2020-08-02 12:39:50 +08:00
persister are shown here (e.g. changes in the schema data store or writes \
to the log files are not shown).\
<dl>\
<dt>Read</dt>\
<dd>Rate at which data is read from the disk.</dd>\
<dt>Write</dt>\
<dd>Rate at which data is written to the disk.</dd>\
<dt>Seek</dt>\
<dd>Rate at which the broker switches position while reading or \
writing to disk.</dd>\
<dt>Sync</dt>\
2020-08-02 12:39:50 +08:00
<dd>Rate at which the node invokes <code>fsync()</code> to ensure \
data is flushed to disk.</dd>\
<dt>Reopen</dt>\
2020-08-02 12:39:50 +08:00
<dd>Rate at which the node recycles file handles in order to support \
more queues than it has file handles. If this operation is occurring \
frequently you may get a performance boost from increasing the number \
of file handles available.</dd>\
</dl>',
'mnesia-transactions':
2020-08-02 12:39:50 +08:00
'Rate at which schema data store transactions are initiated on this node (this node \
will also take part in the transactions initiated on other nodes).\
<dl>\
<dt>RAM only</dt>\
2020-08-02 12:39:50 +08:00
<dd>Rate at which RAM-only schema data store transactions take place (e.g. creation or \
deletion of transient queues).</dd>\
<dt>Disk</dt>\
2020-08-02 12:39:50 +08:00
<dd>Rate at which all schema data store transactions take place (e.g. \
creation or deletion of durable queues).</dd>\
</dl>',
'persister-operations-msg':
'Rate at which per-message persister operations take place on this node. See \
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
<a href="https://www.rabbitmq.com/persistence-conf.html" target="_blank">here</a> \
for more information on the persister. \
<dl>\
<dt>QI Journal</dt>\
<dd>Rate at which message information (publishes, deliveries and \
acknowledgements) is written to queue index journals.</dd>\
<dt>Store Read</dt>\
<dd>Rate at which messages are read from the message store.</dd>\
<dt>Store Write</dt>\
<dd>Rate at which messages are written to the message store.</dd>\
</dl>',
'persister-operations-bulk':
'Rate at which whole-file persister operations take place on this node. See \
URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://blog.listincomprehension.com/search/label/procket (200) with 1 occurrences could not be migrated: ([https](https://blog.listincomprehension.com/search/label/procket) result ClosedChannelException). * http://dozzie.jarowit.net/trac/wiki/TOML (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/TOML) result SSLHandshakeException). * http://dozzie.jarowit.net/trac/wiki/subproc (200) with 1 occurrences could not be migrated: ([https](https://dozzie.jarowit.net/trac/wiki/subproc) result SSLHandshakeException). * http://e2project.org (200) with 1 occurrences could not be migrated: ([https](https://e2project.org) result AnnotatedConnectException). * http://erik.eae.net/archives/2007/07/27/18.54.15/ (200) with 1 occurrences could not be migrated: ([https](https://erik.eae.net/archives/2007/07/27/18.54.15/) result SSLHandshakeException). * http://javascript.nwbox.com/IEContentLoaded/ (200) with 1 occurrences could not be migrated: ([https](https://javascript.nwbox.com/IEContentLoaded/) result SSLHandshakeException). * http://nitrogenproject.com/ (200) with 2 occurrences could not be migrated: ([https](https://nitrogenproject.com/) result ConnectTimeoutException). * http://proper.softlab.ntua.gr (200) with 1 occurrences could not be migrated: ([https](https://proper.softlab.ntua.gr) result SSLHandshakeException). * http://sammyjs.org (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org) result SSLHandshakeException). * http://sammyjs.org/docs/plugins (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/plugins) result SSLHandshakeException). * http://sammyjs.org/docs/routes (200) with 2 occurrences could not be migrated: ([https](https://sammyjs.org/docs/routes) result SSLHandshakeException). * http://webfx.eae.net/dhtml/boxsizing/boxsizing.html (200) with 1 occurrences could not be migrated: ([https](https://webfx.eae.net/dhtml/boxsizing/boxsizing.html) result SSLHandshakeException). * http://yaws.hyber.org (200) with 1 occurrences could not be migrated: ([https](https://yaws.hyber.org) result AnnotatedConnectException). * http://choven.ca (503) with 1 occurrences could not be migrated: ([https](https://choven.ca) result ConnectTimeoutException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://fixprotocol.org/ (301) with 1 occurrences migrated to: https://fixtrading.org ([https](https://fixprotocol.org/) result SSLHandshakeException). * http://jsperf.com/getall-vs-sizzle/2 (301) with 1 occurrences migrated to: https://jsperf.com/getall-vs-sizzle/2 ([https](https://jsperf.com/getall-vs-sizzle/2) result ReadTimeoutException). * http://erldb.org (UnknownHostException) with 1 occurrences migrated to: https://erldb.org ([https](https://erldb.org) result UnknownHostException). * http://some-host-that-does-not-exist:15672/ (UnknownHostException) with 1 occurrences migrated to: https://some-host-that-does-not-exist:15672/ ([https](https://some-host-that-does-not-exist:15672/) result UnknownHostException). * http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ (301) with 1 occurrences migrated to: https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ ([https](https://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/) result 404). * http://www.JSON.org/js.html (404) with 1 occurrences migrated to: https://www.JSON.org/js.html ([https](https://www.JSON.org/js.html) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://bugs.jquery.com/ticket/12359 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/12359 ([https](https://bugs.jquery.com/ticket/12359) result 200). * http://bugs.jquery.com/ticket/13378 with 1 occurrences migrated to: https://bugs.jquery.com/ticket/13378 ([https](https://bugs.jquery.com/ticket/13378) result 200). * http://cloudi.org/ with 27 occurrences migrated to: https://cloudi.org/ ([https](https://cloudi.org/) result 200). * http://code.quirkey.com/sammy/ with 1 occurrences migrated to: https://code.quirkey.com/sammy/ ([https](https://code.quirkey.com/sammy/) result 200). * http://erlware.org/ with 1 occurrences migrated to: https://erlware.org/ ([https](https://erlware.org/) result 200). * http://inaka.github.io/cowboy-trails/ with 1 occurrences migrated to: https://inaka.github.io/cowboy-trails/ ([https](https://inaka.github.io/cowboy-trails/) result 200). * http://jquery.com/ with 3 occurrences migrated to: https://jquery.com/ ([https](https://jquery.com/) result 200). * http://jsperf.com/thor-indexof-vs-for/5 with 1 occurrences migrated to: https://jsperf.com/thor-indexof-vs-for/5 ([https](https://jsperf.com/thor-indexof-vs-for/5) result 200). * http://ninenines.eu with 6 occurrences migrated to: https://ninenines.eu ([https](https://ninenines.eu) result 200). * http://ninenines.eu/ with 1 occurrences migrated to: https://ninenines.eu/ ([https](https://ninenines.eu/) result 200). * http://sizzlejs.com/ with 2 occurrences migrated to: https://sizzlejs.com/ ([https](https://sizzlejs.com/) result 200). * http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ with 1 occurrences migrated to: https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ ([https](https://web.archive.org/web/20100324014747/https://blindsignals.com/index.php/2009/07/jquery-delay/) result 200). * http://www.actordb.com/ with 2 occurrences migrated to: https://www.actordb.com/ ([https](https://www.actordb.com/) result 200). * http://www.cs.kent.ac.uk/projects/wrangler/Home.html with 1 occurrences migrated to: https://www.cs.kent.ac.uk/projects/wrangler/Home.html ([https](https://www.cs.kent.ac.uk/projects/wrangler/Home.html) result 200). * http://www.enhanceie.com/ie/bugs.asp with 1 occurrences migrated to: https://www.enhanceie.com/ie/bugs.asp ([https](https://www.enhanceie.com/ie/bugs.asp) result 200). * http://www.rabbitmq.com/amqp-0-9-1-reference.html with 1 occurrences migrated to: https://www.rabbitmq.com/amqp-0-9-1-reference.html ([https](https://www.rabbitmq.com/amqp-0-9-1-reference.html) result 200). * http://www.rabbitmq.com/configure.html with 1 occurrences migrated to: https://www.rabbitmq.com/configure.html ([https](https://www.rabbitmq.com/configure.html) result 200). * http://www.rabbitmq.com/confirms.html with 1 occurrences migrated to: https://www.rabbitmq.com/confirms.html ([https](https://www.rabbitmq.com/confirms.html) result 200). * http://www.rabbitmq.com/consumers.html with 1 occurrences migrated to: https://www.rabbitmq.com/consumers.html ([https](https://www.rabbitmq.com/consumers.html) result 200). * http://www.rabbitmq.com/github.html with 1 occurrences migrated to: https://www.rabbitmq.com/github.html ([https](https://www.rabbitmq.com/github.html) result 200). * http://www.rabbitmq.com/ha.html with 3 occurrences migrated to: https://www.rabbitmq.com/ha.html ([https](https://www.rabbitmq.com/ha.html) result 200). * http://www.rabbitmq.com/management-cli.html with 1 occurrences migrated to: https://www.rabbitmq.com/management-cli.html ([https](https://www.rabbitmq.com/management-cli.html) result 200). * http://www.rabbitmq.com/management.html with 7 occurrences migrated to: https://www.rabbitmq.com/management.html ([https](https://www.rabbitmq.com/management.html) result 200). * http://www.rabbitmq.com/memory-use.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory-use.html ([https](https://www.rabbitmq.com/memory-use.html) result 200). * http://www.rabbitmq.com/memory.html with 3 occurrences migrated to: https://www.rabbitmq.com/memory.html ([https](https://www.rabbitmq.com/memory.html) result 200). * http://www.rabbitmq.com/nettick.html with 1 occurrences migrated to: https://www.rabbitmq.com/nettick.html ([https](https://www.rabbitmq.com/nettick.html) result 200). * http://www.rabbitmq.com/partitions.html with 2 occurrences migrated to: https://www.rabbitmq.com/partitions.html ([https](https://www.rabbitmq.com/partitions.html) result 200). * http://www.rabbitmq.com/persistence-conf.html with 2 occurrences migrated to: https://www.rabbitmq.com/persistence-conf.html ([https](https://www.rabbitmq.com/persistence-conf.html) result 200). * http://www.rabbitmq.com/services.html with 1 occurrences migrated to: https://www.rabbitmq.com/services.html ([https](https://www.rabbitmq.com/services.html) result 200). * http://www.rebar3.org with 1 occurrences migrated to: https://www.rebar3.org ([https](https://www.rebar3.org) result 200). * http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html with 1 occurrences migrated to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ([https](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html) result 200). * http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html with 1 occurrences migrated to: https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html ([https](https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html) result 200). * http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ with 2 occurrences migrated to: https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ([https](https://www.w3.org/TR/2011/REC-css3-selectors-20110929/) result 200). * http://www.w3.org/TR/CSS21/syndata.html with 2 occurrences migrated to: https://www.w3.org/TR/CSS21/syndata.html ([https](https://www.w3.org/TR/CSS21/syndata.html) result 200). * http://www.w3.org/TR/DOM-Level-3-Events/ with 1 occurrences migrated to: https://www.w3.org/TR/DOM-Level-3-Events/ ([https](https://www.w3.org/TR/DOM-Level-3-Events/) result 200). * http://www.w3.org/TR/selectors/ with 4 occurrences migrated to: https://www.w3.org/TR/selectors/ ([https](https://www.w3.org/TR/selectors/) result 200). * http://code.google.com/p/stringencoders/ with 1 occurrences migrated to: https://code.google.com/p/stringencoders/ ([https](https://code.google.com/p/stringencoders/) result 301). * http://code.google.com/p/stringencoders/source/browse/ with 2 occurrences migrated to: https://code.google.com/p/stringencoders/source/browse/ ([https](https://code.google.com/p/stringencoders/source/browse/) result 301). * http://contributor-covenant.org with 1 occurrences migrated to: https://contributor-covenant.org ([https](https://contributor-covenant.org) result 301). * http://contributor-covenant.org/version/1/3/0/ with 1 occurrences migrated to: https://contributor-covenant.org/version/1/3/0/ ([https](https://contributor-covenant.org/version/1/3/0/) result 301). * http://dev.w3.org/csswg/cssom/ with 1 occurrences migrated to: https://dev.w3.org/csswg/cssom/ ([https](https://dev.w3.org/csswg/cssom/) result 301). * http://inaka.github.com/apns4erl with 1 occurrences migrated to: https://inaka.github.com/apns4erl ([https](https://inaka.github.com/apns4erl) result 301). * http://inaka.github.com/edis/ with 1 occurrences migrated to: https://inaka.github.com/edis/ ([https](https://inaka.github.com/edis/) result 301). * http://jquery.org/license with 2 occurrences migrated to: https://jquery.org/license ([https](https://jquery.org/license) result 301). * http://lasp-lang.org/ with 1 occurrences migrated to: https://lasp-lang.org/ ([https](https://lasp-lang.org/) result 301). * http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx ([https](https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx) result 301). * http://msdn.microsoft.com/en-us/library/ie/ms536648 with 1 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ie/ms536648 ([https](https://msdn.microsoft.com/en-us/library/ie/ms536648) result 301). * http://rabbitmq.com with 5 occurrences migrated to: https://rabbitmq.com ([https](https://rabbitmq.com) result 301). * http://rabbitmq.com/ae.html with 1 occurrences migrated to: https://rabbitmq.com/ae.html ([https](https://rabbitmq.com/ae.html) result 301). * http://rabbitmq.com/consumers.html with 1 occurrences migrated to: https://rabbitmq.com/consumers.html ([https](https://rabbitmq.com/consumers.html) result 301). * http://rabbitmq.com/dlx.html with 2 occurrences migrated to: https://rabbitmq.com/dlx.html ([https](https://rabbitmq.com/dlx.html) result 301). * http://rabbitmq.com/maxlength.html with 2 occurrences migrated to: https://rabbitmq.com/maxlength.html ([https](https://rabbitmq.com/maxlength.html) result 301). * http://rabbitmq.com/passwords.html with 1 occurrences migrated to: https://rabbitmq.com/passwords.html ([https](https://rabbitmq.com/passwords.html) result 301). * http://rabbitmq.com/priority.html with 1 occurrences migrated to: https://rabbitmq.com/priority.html ([https](https://rabbitmq.com/priority.html) result 301). * http://rabbitmq.com/ttl.html with 2 occurrences migrated to: https://rabbitmq.com/ttl.html ([https](https://rabbitmq.com/ttl.html) result 301). * http://saleyn.github.com/erlexec with 1 occurrences migrated to: https://saleyn.github.com/erlexec ([https](https://saleyn.github.com/erlexec) result 301). * http://support.microsoft.com/kb/186063 with 1 occurrences migrated to: https://support.microsoft.com/kb/186063 ([https](https://support.microsoft.com/kb/186063) result 301). * http://technet.microsoft.com/en-us/sysinternals/bb896655 with 2 occurrences migrated to: https://technet.microsoft.com/en-us/sysinternals/bb896655 ([https](https://technet.microsoft.com/en-us/sysinternals/bb896655) result 301). * http://www.erlang.org/doc/man/sasl_app.html with 1 occurrences migrated to: https://www.erlang.org/doc/man/sasl_app.html ([https](https://www.erlang.org/doc/man/sasl_app.html) result 301). * http://www.mozilla.org/MPL/ with 86 occurrences migrated to: https://www.mozilla.org/MPL/ ([https](https://www.mozilla.org/MPL/) result 301). * http://www.mozilla.org/mpl/ with 3 occurrences migrated to: https://www.mozilla.org/mpl/ ([https](https://www.mozilla.org/mpl/) result 301). * http://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html with 1 occurrences migrated to: https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html ([https](https://www.rabbitmq.com/man/rabbitmq-plugins.1.man.html) result 301). * http://www.w3.org/TR/css3-selectors/ with 1 occurrences migrated to: https://www.w3.org/TR/css3-selectors/ ([https](https://www.w3.org/TR/css3-selectors/) result 301). * http://www.whatwg.org/specs/web-apps/current-work/ with 1 occurrences migrated to: https://www.whatwg.org/specs/web-apps/current-work/ ([https](https://www.whatwg.org/specs/web-apps/current-work/) result 301). * http://zhongwencool.github.io/observer_cli with 1 occurrences migrated to: https://zhongwencool.github.io/observer_cli ([https](https://zhongwencool.github.io/observer_cli) result 301). * http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes with 1 occurrences migrated to: https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes ([https](https://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes) result 302). * http://javascript.crockford.com/jsmin.html with 1 occurrences migrated to: https://javascript.crockford.com/jsmin.html ([https](https://javascript.crockford.com/jsmin.html) result 302). * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx with 2 occurrences migrated to: https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx ([https](https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx) result 302). * http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context with 1 occurrences migrated to: https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context ([https](https://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context) result 302). # Ignored These URLs were intentionally ignored. * http://localhost with 2 occurrences * http://localhost/ with 2 occurrences * http://localhost:15672/ with 1 occurrences * http://localhost:15672/api/channels?sort=message_stats.publish_details.rate&amp;sort_reverse=true&amp;columns=name,message_stats.publish_details.rate,message_stats.deliver_get_details.rate with 2 occurrences * http://localhost:15672/api/exchanges/%2F/my-new-exchange with 4 occurrences * http://localhost:15672/api/vhosts with 2 occurrences * http://localhost:15672/api/vhosts/foo with 2 occurrences
2019-03-20 16:17:48 +08:00
<a href="https://www.rabbitmq.com/persistence-conf.html" target="_blank">here</a> \
for more information on the persister. \
<dl>\
<dt>QI Read</dt>\
<dd>Rate at which queue index segment files are read.</dd>\
<dt>QI Write</dt>\
<dd>Rate at which queue index segment files are written. </dd>\
</dl>',
'gc-operations':
'Rate at which garbage collection operations take place on this node.',
'gc-bytes':
'Rate at which memory is reclaimed by the garbage collector on this node.',
'context-switches-operations':
'Rate at which runtime context switching takes place on this node.',
'process-reductions':
'Rate at which reductions take place on this process.',
'connection-operations':
' <dl>\
<dt>Created</dt>\
<dd>Rate at which connections are created.</dd>\
<dt>Closed</dt>\
<dd>Rate at which connections are closed.</dd>\
</dl> ',
'channel-operations':
' <dl>\
<dt>Created</dt>\
<dd>Rate at which channels are created.</dd>\
<dt>Closed</dt>\
<dd>Rate at which channels are closed.</dd>\
</dl> ',
'queue-operations':
' <dl>\
<dt>Declared</dt>\
<dd>Rate at which queues are declared by clients.</dd>\
<dt>Created</dt>\
<dd>Rate at which queues are created. Declaring a queue that already exists counts for a "Declared" event, but not for a "Created" event. </dd>\
<dt>Deleted</dt>\
<dd>Rate at which queues are deleted.</dd>\
</dl> '
};
///////////////////////////////////////////////////////////////////////////
// //
// Mostly constant, typically get set once at startup (or rarely anyway) //
// //
///////////////////////////////////////////////////////////////////////////
// All these are to do with hiding UI elements if
var rates_mode; // ...there are no fine stats
var user_administrator; // ...user is not an admin
2016-03-22 21:53:27 +08:00
var is_user_policymaker; // ...user is not a policymaker
var user_monitor; // ...user cannot monitor
var nodes_interesting; // ...we are not in a cluster
var vhosts_interesting; // ...there is only one vhost
2023-02-07 11:25:09 +08:00
var is_op_policy_updating_enabled; // ...editing operator policies is enabled
var queue_type;
var rabbit_versions_interesting; // ...all cluster nodes run the same version
var disable_stats; // ...disable all stats, management only mode
// Extensions write to this, the dispatcher maker reads it
var dispatcher_modules = [];
// We need to know when all extension script files have loaded
var extension_count;
// The dispatcher needs access to the Sammy app
var app;
// Used for the new exchange form, and to display broken exchange types
2012-01-25 21:13:04 +08:00
var exchange_types;
2014-01-31 21:40:48 +08:00
// Used for access control
var user_tags;
2014-01-31 21:40:48 +08:00
var user;
2023-05-23 22:44:44 +08:00
var ac = new AccessControl();
var display = new DisplayControl();
2023-05-18 21:26:52 +08:00
var ui_data_model = {
vhosts: [],
nodes: [],
};
// Access control
2023-05-23 22:44:44 +08:00
function AccessControl() {
2023-05-18 21:26:52 +08:00
2023-05-23 22:44:44 +08:00
this.update = function(user, ui_data_model) {
this.user = user;
this.user_tags = expand_user_tags(user.tags);
this.ui_data_model = ui_data_model;
};
2023-05-18 21:26:52 +08:00
this.isMonitoringUser = function() {
2023-05-23 22:44:44 +08:00
if (this.user_tags)
return this.user_tags.includes("monitoring");
else return false;
2023-05-18 21:26:52 +08:00
};
this.isAdministratorUser = function() {
2023-05-23 22:44:44 +08:00
if (this.user_tags)
return this.user_tags.includes("administrator");
else return false;
2023-05-18 21:26:52 +08:00
};
this.isPolicyMakerUser = function() {
2023-05-23 22:44:44 +08:00
if (this.user_tags)
return this.user_tags.includes("policymaker");
else return false;
2023-05-18 21:26:52 +08:00
};
this.canAccessVhosts = function() {
2023-05-23 22:44:44 +08:00
if (this.ui_data_model)
return this.ui_data_model.vhosts.length > 0;
else return false;
2023-05-18 21:26:52 +08:00
};
this.canListNodes = function() {
2023-05-23 22:44:44 +08:00
if (this.ui_data_model)
return this.isMonitoringUser() && this.ui_data_model.nodes.length > 1;
else return false;
2023-05-18 21:26:52 +08:00
};
};
2023-05-23 22:44:44 +08:00
function DisplayControl() {
this.nodes = false
this.vhosts = false
this.rabbitmqVersions = false
this.update = function(overview, ui_data_model) {
2023-05-23 22:44:44 +08:00
this.nodes = ac.canListNodes() && ui_data_model.nodes.length > 1
this.vhosts = ac.canAccessVhosts()
this.rabbitmqVersions = false
var v = '';
for (var i = 0; i < ui_data_model.nodes.length; i++) {
var v1 = fmt_rabbit_version(ui_data_model.nodes[i].applications);
if (v1 != 'unknown') {
if (v != '' && v != v1) this.rabbitmqVersions = true;
v = v1;
}
}
this.data = ui_data_model;
2023-05-18 21:26:52 +08:00
}
}
// Set up the above vars
2023-05-18 21:26:52 +08:00
function setup_global_vars(overview) {
rates_mode = overview.rates_mode;
2023-02-07 11:25:09 +08:00
is_op_policy_updating_enabled = overview.is_op_policy_updating_enabled;
user_tags = expand_user_tags(user.tags);
user_administrator = jQuery.inArray("administrator", user_tags) != -1;
2016-03-22 21:53:27 +08:00
is_user_policymaker = jQuery.inArray("policymaker", user_tags) != -1;
user_monitor = jQuery.inArray("monitoring", user_tags) != -1;
exchange_types = overview.exchange_types.map(function(xt) { return xt.name; });
cluster_name = fmt_escape_html(overview.cluster_name);
$('#logout').before(
'<li>Cluster ' + (user_administrator ? '<a href="#/cluster-name">' + cluster_name + '</a>' : cluster_name) + '</li>'
);
user_name = fmt_escape_html(user.name);
$('#header #logout').prepend(
'User ' + (user_administrator && user.is_internal_user ? '<a href="#/users/' + user_name + '">' + user_name + '</a>' : user_name)
);
var product = overview.rabbitmq_version;
if (overview.product_name && overview.product_version) {
product = overview.product_name + ' ' + overview.product_version;
}
$('#versions').html(
'<abbr title="Available exchange types: ' + exchange_types.join(", ") + '">' + fmt_escape_html(product) + '</abbr>' +
'<abbr title="' + fmt_escape_html(overview.erlang_full_version) + '">Erlang ' + fmt_escape_html(overview.erlang_version) + '</abbr>'
);
nodes_interesting = false;
rabbit_versions_interesting = false;
if (user_monitor) {
var nodes = JSON.parse(sync_get('/nodes'));
if (nodes.length > 1) {
nodes_interesting = true;
var v = '';
2023-05-18 21:26:52 +08:00
for (var i = 0; i < ui_data_model.nodes.length; i++) {
var v1 = fmt_rabbit_version(ui_data_model.nodes[i].applications);
if (v1 != 'unknown') {
if (v != '' && v != v1) rabbit_versions_interesting = true;
v = v1;
}
}
}
}
2023-05-18 21:26:52 +08:00
vhosts_interesting = ui_data_model.vhosts.length > 1;
queue_type = "default";
current_vhost = get_pref('vhost');
exchange_types = overview.exchange_types;
disable_stats = overview.disable_stats;
enable_queue_totals = overview.enable_queue_totals;
COLUMNS = disable_stats?DISABLED_STATS_COLUMNS:ALL_COLUMNS;
setup_chart_ranges(overview.sample_retention_policies);
}
function setup_chart_ranges(srp) {
var range_types = ['global', 'basic'];
var default_ranges = {
60: ['60|5', 'Last minute'],
600: ['600|5', 'Last ten minutes'],
3600: ['3600|60', 'Last hour'],
28800: ['28800|600', 'Last eight hours'],
86400: ['86400|1800', 'Last day']
};
for (var range in default_ranges) {
var data = default_ranges[range];
var range = data[0];
var desc = data[1];
ALL_CHART_RANGES[range] = desc;
}
for (var i = 0; i < range_types.length; ++i) {
var range_type = range_types[i];
if (srp.hasOwnProperty(range_type)) {
var srp_range_types = srp[range_type];
var last_minute_added = false;
for (var j = 0; j < srp_range_types.length; ++j) {
var srp_range = srp_range_types[j];
if (default_ranges.hasOwnProperty(srp_range)) {
if (srp_range === 60) {
last_minute_added = true;
}
var v = default_ranges[srp_range];
CHART_RANGES[range_type].push(v);
}
}
if (!last_minute_added) {
var last_minute = default_ranges[60];
CHART_RANGES[range_type].unshift(last_minute);
}
}
}
}
function expand_user_tags(tags) {
var new_tags = [];
for (var i = 0; i < tags.length; i++) {
var tag = tags[i];
new_tags.push(tag);
switch (tag) { // Note deliberate fall-through
case "administrator": new_tags.push("monitoring");
new_tags.push("policymaker");
case "monitoring": new_tags.push("management");
break;
case "policymaker": new_tags.push("management");
default: break;
}
}
return new_tags;
}
////////////////////////////////////////////////////
// //
// Change frequently (typically every "new page") //
// //
////////////////////////////////////////////////////
// Which top level template we're showing
var current_template;
// Which JSON requests do we need to populate it
var current_reqs;
// And which of those have yet to return (so we can cancel them when
// changing current_template).
var outstanding_reqs = [];
// Which tab is highlighted
var current_highlight;
// Which vhost are we looking at
var current_vhost = '';
// What is our current sort order
var current_sort;
var current_sort_reverse = false;
2013-03-06 02:04:15 +08:00
var current_filter = '';
2013-11-13 00:41:31 +08:00
var current_filter_regex_on = false;
2015-11-13 05:25:01 +08:00
2013-11-13 00:41:31 +08:00
var current_filter_regex;
2013-04-25 23:13:44 +08:00
var current_truncate;
2013-03-06 02:04:15 +08:00
// The timer object for auto-updates, and how often it goes off
var timer;
var timer_interval;
// When did we last connect successfully (for the "could not connect" error)
var last_successful_connect;
// Every 200 updates without user interaction we do a full refresh, to
// work around memory leaks in browser DOM implementations.
// TODO: maybe we don't need this any more?
var update_counter = 0;
2013-02-15 21:10:04 +08:00
// Holds chart data in between writing the div in an ejs and rendering
// the chart.
var chart_data = {};
2015-10-22 15:55:36 +08:00
// whenever a UI requests a page that doesn't exist
// because things were deleted between refreshes
var last_page_out_of_range_error = 0;
var oauth;