commit_id
stringlengths
40
40
repo
stringclasses
185 values
commit_message
stringlengths
0
70k
diff
stringlengths
121
154k
label
int64
0
0
370f3aa8d0769af999ffab9e6ebd54d535edb687
zulip/zulip
tables: Remove remaining padding on sort. With the sort arrow icons no longer positioned absolutely, this padding is unnecessary (icons now participate in the width).
commit 370f3aa8d0769af999ffab9e6ebd54d535edb687 Author: Karl Stolley <karl@zulip.com> Date: Fri Mar 7 14:36:12 2025 -0600 tables: Remove remaining padding on sort. With the sort arrow icons no longer positioned absolutely, this padding is unnecessary (icons now participate in the width). diff --git...
0
74f3189fa57cd09b25840186b3835c55d95c8aff
zulip/zulip
settings: Add styles for dropdown titles.
commit 74f3189fa57cd09b25840186b3835c55d95c8aff Author: YJDave <yashashvidave@gmail.com> Date: Sat Jan 20 13:01:29 2018 +0530 settings: Add styles for dropdown titles. diff --git a/static/styles/settings.css b/static/styles/settings.css index 6daa6ca1dc..d4bb807986 100644 --- a/static/styles/settings.css +++ b/...
0
750b8326d7feba5f73d3542e7e76be5a00cd8011
zulip/zulip
subs: fix incorrect stream_info re-initialization. Using [] doesn't cause incorrect behavior, but it's a mismatch with how stream_info is initially declared and gives you a confusing representation at the console. (imported from commit c03d9e6a29ff990659f41ee478f631a019a5ac25)
commit 750b8326d7feba5f73d3542e7e76be5a00cd8011 Author: Jessica McKellar <jesstess@mit.edu> Date: Sun Apr 14 16:58:33 2013 -0400 subs: fix incorrect stream_info re-initialization. Using [] doesn't cause incorrect behavior, but it's a mismatch with how stream_info is initially declared and gives you ...
0
d58e5b8c16b88079e95d1557c1c8a6bc28954ba1
zulip/zulip
requirements: Use a forked version of libthumbor for performance. This optimizes the import performance of Zulip by using a fork of pkgresources. The fork just has a single commit, which replaces libthumbor's use of pkgresources (which is really slow to import) with a direct query to the version number. This fixes p...
commit d58e5b8c16b88079e95d1557c1c8a6bc28954ba1 Author: Tim Abbott <tabbott@zulip.com> Date: Wed Oct 17 11:15:02 2018 -0700 requirements: Use a forked version of libthumbor for performance. This optimizes the import performance of Zulip by using a fork of pkgresources. The fork just has a single co...
0
dbae28683cc431e016f072a9c64fcd4b7281ef1a
zulip/zulip
stream_popover: Use data-stream-id when building popover.
commit dbae28683cc431e016f072a9c64fcd4b7281ef1a Author: Tim Abbott <tabbott@zulip.com> Date: Wed Aug 16 16:41:40 2017 -0700 stream_popover: Use data-stream-id when building popover. diff --git a/static/js/stream_popover.js b/static/js/stream_popover.js index f67bd15c86..0274270dcf 100644 --- a/static/js/stream_...
0
ca144b5297d647413b15d18f01cdc2a4003ce7c3
zulip/zulip
Eliminate MyResult class by calling test method directly. Instead of calling test(result), we emulate the behavior of calling SimpleTestCase.__call__, minus the results protocol. (imported from commit e12e3d5caa8726c050a2a7cfa583ca4d571d6cbb)
commit ca144b5297d647413b15d18f01cdc2a4003ce7c3 Author: Steve Howell <showell@zulip.com> Date: Thu Jun 20 13:42:32 2013 -0400 Eliminate MyResult class by calling test method directly. Instead of calling test(result), we emulate the behavior of calling SimpleTestCase.__call__, minus the results proto...
0
38ecc35cd9c75df448d117dd270a7d41b8ac18c9
zulip/zulip
push_notifications: Catch IOError while pushing to GCM.
commit 38ecc35cd9c75df448d117dd270a7d41b8ac18c9 Author: Umair Khan <umair.waheed@gmail.com> Date: Wed May 17 12:58:27 2017 +0500 push_notifications: Catch IOError while pushing to GCM. diff --git a/zerver/lib/push_notifications.py b/zerver/lib/push_notifications.py index e7f8a61fd7..7816f3e65f 100644 --- a/zerv...
0
da2744812fbc41c94249cfa78907b04584168c96
zulip/zulip
Don't use force_bytes() in decorator.py. In python3 base64.b64decode() can take an ASCII string, and any legit data will be ASCII. If you pass in non-ASCII data, the function will properly throw a ValueError (verified in python3 shell). >>> s = '안녕하세요' >>> import base64 >>> base64.b64decode(s) Traceback (most re...
commit da2744812fbc41c94249cfa78907b04584168c96 Author: Steve Howell <showell@zulip.com> Date: Sat Nov 4 08:53:23 2017 -0700 Don't use force_bytes() in decorator.py. In python3 base64.b64decode() can take an ASCII string, and any legit data will be ASCII. If you pass in non-ASCII data, the func...
0
5ff4d9f88ac73899c1bc09d6658c083bf684147f
zulip/zulip
integrations: Generate avatars using pyvips.
commit 5ff4d9f88ac73899c1bc09d6658c083bf684147f Author: Alex Vandiver <alexmv@zulip.com> Date: Thu Jun 13 03:23:00 2024 +0000 integrations: Generate avatars using pyvips. diff --git a/static/images/integrations/bot_avatars/GIPHY_big_logo.png b/static/images/integrations/bot_avatars/GIPHY_big_logo.png index 9430...
0
fc41d6085ba72341023fb8d7ddd5b7f0413292f4
zulip/zulip
tornado: Split server restart events from web client reload events.
commit fc41d6085ba72341023fb8d7ddd5b7f0413292f4 Author: Alex Vandiver <alexmv@zulip.com> Date: Sat Feb 10 03:19:08 2024 +0000 tornado: Split server restart events from web client reload events. diff --git a/api_docs/changelog.md b/api_docs/changelog.md index c01622b33b..6825abc7d8 100644 --- a/api_docs/changelo...
0
d37f309a3cd1dd59b77fc92a6059d32fb0736c79
zulip/zulip
test_user_groups: Extract user memberships helper. We extract the checks needed for user membership changes into a method, verifying that the members of the user group are matching the expected values exactly.
commit d37f309a3cd1dd59b77fc92a6059d32fb0736c79 Author: Zixuan James Li <p359101898@gmail.com> Date: Tue Jun 27 18:33:20 2023 -0400 test_user_groups: Extract user memberships helper. We extract the checks needed for user membership changes into a method, verifying that the members of the user group ...
0
a4cf77e5dce00c9333901ee95d10aebae952b55c
zulip/zulip
openapi_responses: Fix get_message_history.
commit a4cf77e5dce00c9333901ee95d10aebae952b55c Author: orientor <orientorrenovare@gmail.com> Date: Wed May 27 20:29:01 2020 +0530 openapi_responses: Fix get_message_history. diff --git a/zerver/openapi/zulip.yaml b/zerver/openapi/zulip.yaml index fe3ce497c5..864998e967 100644 --- a/zerver/openapi/zulip.yaml ++...
0
420b84e79c5168a0bcd5208a8c6eba251c926413
zulip/zulip
migration: Prepare for backporting of migration 0700. This follows our usual backporting scheme, occurring e.g. in #31468. We make the migration depend on the last migration in 10.x, and create a merge migration to avoid having multiple leafs.
commit 420b84e79c5168a0bcd5208a8c6eba251c926413 Author: Mateusz Mandera <mateusz.mandera@zulip.com> Date: Wed May 7 19:57:43 2025 +0200 migration: Prepare for backporting of migration 0700. This follows our usual backporting scheme, occurring e.g. in #31468. We make the migration depend on the last ...
0
6139e8948a250f6ceb415abd3c12a353e1754692
zulip/zulip
travis: User REQ framework for extracting JSON payload.
commit 6139e8948a250f6ceb415abd3c12a353e1754692 Author: Tim Abbott <tabbott@zulip.com> Date: Sat May 7 11:22:01 2016 -0700 travis: User REQ framework for extracting JSON payload. diff --git a/zerver/views/webhooks/travis.py b/zerver/views/webhooks/travis.py index 9dbe3d5697..5f624b3ff2 100644 --- a/zerver/views...
0
470ff676e60e56cd4310544b9fe4e229225b4fd1
zulip/zulip
zephyr_mirror: Fix insecure temporary file for log. This is probably a lot more annoying to use, in that e.g. there are separate log files for the two directions of the mirror, but we haven't used these logs for much, so whatever. (imported from commit d3bc407d90099214d242526c01cd3d3cd9d9d9bd)
commit 470ff676e60e56cd4310544b9fe4e229225b4fd1 Author: Tim Abbott <tabbott@zulip.com> Date: Thu Dec 20 14:10:12 2012 -0500 zephyr_mirror: Fix insecure temporary file for log. This is probably a lot more annoying to use, in that e.g. there are separate log files for the two directions of the mirror,...
0
157cbca1e043d938b74aaffad66e63a95315e3ca
zulip/zulip
corporate: Fix links for move in c4eede68d684.
commit 157cbca1e043d938b74aaffad66e63a95315e3ca Author: Alex Vandiver <alexmv@zulip.com> Date: Tue Jan 25 19:00:44 2022 -0800 corporate: Fix links for move in c4eede68d684. diff --git a/templates/corporate/jobs.html b/templates/corporate/jobs.html index bab73b10ea..f648d85f98 100644 --- a/templates/corporate/jo...
0
633ae45f1d95ccbb4e2c77b6e65dfea39491feef
zulip/zulip
navbar: Make login button focusable. This commit allows login button in navbar draw focus to them. Fixes part of zulip#28037.
commit 633ae45f1d95ccbb4e2c77b6e65dfea39491feef Author: Pratik Chanda <pratikchanda2000@gmail.com> Date: Fri Jun 21 02:54:13 2024 +0530 navbar: Make login button focusable. This commit allows login button in navbar draw focus to them. Fixes part of zulip#28037. diff --git a/web/styles/zuli...
0
1a148f5d9a2d2ede1f795d5a3892fa1ca3a29aff
zulip/zulip
scroll_bar: Fix incorrectly converted breakpoint. Commit e941ee4a15a0d5e2514882cce24770a02e02829d (#16680) incorrectly converted this from 775px to xl-max = 1199px instead of md-max = 767px, causing misplacement of the FRB for browser widths between these values. Signed-off-by: Anders Kaseorg <anders@zulip.com>
commit 1a148f5d9a2d2ede1f795d5a3892fa1ca3a29aff Author: Anders Kaseorg <anders@zulip.com> Date: Wed Jan 27 09:28:58 2021 -0800 scroll_bar: Fix incorrectly converted breakpoint. Commit e941ee4a15a0d5e2514882cce24770a02e02829d (#16680) incorrectly converted this from 775px to xl-max = 1199px instead o...
0
16328732d405f83bddf5792f3b09173146764b7a
zulip/zulip
refactor: Remove "subject" from stream_topic.py.
commit 16328732d405f83bddf5792f3b09173146764b7a Author: Steve Howell <showell@zulip.com> Date: Sun Dec 23 17:45:18 2018 +0000 refactor: Remove "subject" from stream_topic.py. diff --git a/tools/linter_lib/custom_check.py b/tools/linter_lib/custom_check.py index a6849cf4fe..3339013db4 100644 --- a/tools/linter_l...
0
36532e91806036ac1a8142ad78db7db8eccc4f64
zulip/zulip
models: Rename tiers to pass stripe 22 character limit.
commit 36532e91806036ac1a8142ad78db7db8eccc4f64 Author: Aman Agrawal <amanagr@zulip.com> Date: Sat Dec 2 03:19:59 2023 +0000 models: Rename tiers to pass stripe 22 character limit. diff --git a/corporate/models.py b/corporate/models.py index cf8a08dbd2..33858a096d 100644 --- a/corporate/models.py +++ b/corporat...
0
66c2ca9a2a268fdf3e3de1defdfab51d3b70063e
zulip/zulip
unread: Add make_bucketer(). This class encapsulates reverse lookups to make deletions O(1). It is also a bit smarter about not creating throwaway objects, by avoiding setdefault.
commit 66c2ca9a2a268fdf3e3de1defdfab51d3b70063e Author: Steve Howell <showell@zulip.com> Date: Wed Aug 2 22:32:21 2017 -0400 unread: Add make_bucketer(). This class encapsulates reverse lookups to make deletions O(1). It is also a bit smarter about not creating throwaway objects, by avoiding se...
0
260085b59a21b78d7548833ca667a10a6d982214
zulip/zulip
user_events: Fix confusing variant name for event object.
commit 260085b59a21b78d7548833ca667a10a6d982214 Author: Tim Abbott <tabbott@zulip.com> Date: Fri Mar 14 10:19:46 2025 -0700 user_events: Fix confusing variant name for event object. diff --git a/web/src/user_events.ts b/web/src/user_events.ts index b6ee389e43..91e7cac1dd 100644 --- a/web/src/user_events.ts +++ ...
0
734d1848c0fbfa61e3fda746b73b34056ef3f159
zulip/zulip
server_events_dispatch: Update bots list only if needed. After b21f533af, we now update the organization bots list on receiving realm_user events since non-admins can also see bots not owned by them in the list. But the functions to update bot list should be called only for bot users and not for others, otherwise it ...
commit 734d1848c0fbfa61e3fda746b73b34056ef3f159 Author: Sahil Batra <sahil@zulip.com> Date: Thu Mar 2 16:51:13 2023 +0530 server_events_dispatch: Update bots list only if needed. After b21f533af, we now update the organization bots list on receiving realm_user events since non-admins can also se...
0
862515b7a43c8f015edaf7ef7d34d8c8d90549f8
zulip/zulip
presence: Avoid failures with obsolete events. We only recently added `user_id` to presence events.
commit 862515b7a43c8f015edaf7ef7d34d8c8d90549f8 Author: Steve Howell <showell@zulip.com> Date: Tue Mar 3 12:05:09 2020 +0000 presence: Avoid failures with obsolete events. We only recently added `user_id` to presence events. diff --git a/zerver/tornado/event_queue.py b/zerver/tornado/event_queue.py...
0
09d0652bddd69c7e7ae0227dae2e769fd6d6a682
zulip/zulip
refactor: Use user_ids_string more internally. We want to avoid passing opaque messages around to low-level functions that only need certain fields. This sets us up to handle mark-as-unread messages that aren't necessarily full messages.
commit 09d0652bddd69c7e7ae0227dae2e769fd6d6a682 Author: Steve Howell <showell@zulip.com> Date: Wed Aug 4 17:16:50 2021 +0000 refactor: Use user_ids_string more internally. We want to avoid passing opaque messages around to low-level functions that only need certain fields. This sets us up t...
0
de74d2fd7c736adf65755d589e91978d2141a130
zulip/zulip
settings: Use HTML table for "Alert Words" for better icon alignment. "Alert Words" is one of Zulip's oldest settings UI elements, and as a result is buggy. This commit converts it to use our standard progressive-table-wrapper system used for settings tables, which has the side effect of fixing a bug that mad ethe ta...
commit de74d2fd7c736adf65755d589e91978d2141a130 Author: Josh Gilley <gilleyjd@g.cofc.edu> Date: Mon Feb 1 19:35:51 2021 -0500 settings: Use HTML table for "Alert Words" for better icon alignment. "Alert Words" is one of Zulip's oldest settings UI elements, and as a result is buggy. This commit conv...
0
fc0f73c1db54f1870eba03a1df3814ab8af8fcf7
zulip/zulip
docs: Link to new PR review process doc from /contributing/reviewable-prs.md.
commit fc0f73c1db54f1870eba03a1df3814ab8af8fcf7 Author: Alya Abbott <alya@zulip.com> Date: Wed May 24 15:33:55 2023 -0700 docs: Link to new PR review process doc from /contributing/reviewable-prs.md. diff --git a/docs/contributing/reviewable-prs.md b/docs/contributing/reviewable-prs.md index 32236da223..b8702bd...
0
e40731574acd0326fbf8d9bcb90957b00bd0f7aa
zulip/zulip
integrations: Fix missing logo for trello. Fixes regression from 6f8481c.
commit e40731574acd0326fbf8d9bcb90957b00bd0f7aa Author: Rishi Gupta <rishig@zulipchat.com> Date: Tue Feb 19 15:39:02 2019 -0800 integrations: Fix missing logo for trello. Fixes regression from 6f8481c. diff --git a/zerver/lib/integrations.py b/zerver/lib/integrations.py index 5e3f250b2f..10c6abc73f 100...
0
07180432835973f65a50fa75a6797762c9ea2d9d
zulip/zulip
bot_settings: Remove "#bot_table_error" element. We do not use "#bot_table_error" element to show any errors anymore. It was previously used to show the error if bot creation failed but since 6db88f0d394fc8 moved bot creation to a modal, we now show error, if any, inside the modal itself. This commit also removes the ...
commit 07180432835973f65a50fa75a6797762c9ea2d9d Author: Sahil Batra <sahil@zulip.com> Date: Fri Jan 13 20:10:03 2023 +0530 bot_settings: Remove "#bot_table_error" element. We do not use "#bot_table_error" element to show any errors anymore. It was previously used to show the error if bot creatio...
0
6f42b90d23916e18745656ba4b44ab956a12b366
zulip/zulip
casper: Increase wait_for_receive timeout again. We're still failing frontend tests randomly due to this timeout being too short. Ultimately we should fix this by making the wait_for_receive check smarter, but this will do for now. (imported from commit ff4b18beb88b957c705fd98cd9064902c9985f62)
commit 6f42b90d23916e18745656ba4b44ab956a12b366 Author: Tim Abbott <tabbott@zulip.com> Date: Tue May 21 13:38:41 2013 -0400 casper: Increase wait_for_receive timeout again. We're still failing frontend tests randomly due to this timeout being too short. Ultimately we should fix this by making the ...
0
7709e6c4209b46c88a66506d0cbecb2231d0bd80
zulip/zulip
requirements: Upgrade cffi from 1.11.5 to 1.12.2.
commit 7709e6c4209b46c88a66506d0cbecb2231d0bd80 Author: Vishnu KS <vishnu@zulip.com> Date: Wed Mar 6 10:43:08 2019 +0000 requirements: Upgrade cffi from 1.11.5 to 1.12.2. diff --git a/requirements/common.in b/requirements/common.in index 4b2876e09a..f39c9bbe02 100644 --- a/requirements/common.in +++ b/requireme...
0
7ff699cd67780e9fd8a437c01b9386fdc44337c4
zulip/zulip
app_filters.py: Accept context in render_markdown_path.
commit 7ff699cd67780e9fd8a437c01b9386fdc44337c4 Author: Umair Khan <umair.waheed@gmail.com> Date: Wed Apr 5 10:14:51 2017 +0500 app_filters.py: Accept context in render_markdown_path. diff --git a/zerver/templatetags/app_filters.py b/zerver/templatetags/app_filters.py index 855b37ee72..aebe8be71e 100644 --- a/z...
0
1af84c1231ceb4ec2ad9a891e3901e85fd022131
zulip/zulip
zilencer: Extract BaseRemoteCount class.
commit 1af84c1231ceb4ec2ad9a891e3901e85fd022131 Author: Mateusz Mandera <mateusz.mandera@zulip.com> Date: Fri Oct 20 02:16:38 2023 +0200 zilencer: Extract BaseRemoteCount class. diff --git a/zilencer/models.py b/zilencer/models.py index f2571039f3..9b69107b08 100644 --- a/zilencer/models.py +++ b/zilencer/model...
0
55b26da82badc6aae8147e1926addec74468b42e
zulip/zulip
run-dev: Rewrite development proxy with aiohttp. This allows request cancellation to be propagated to the server. Signed-off-by: Anders Kaseorg <anders@zulip.com>
commit 55b26da82badc6aae8147e1926addec74468b42e Author: Anders Kaseorg <anders@zulip.com> Date: Mon Dec 11 13:44:55 2023 -0800 run-dev: Rewrite development proxy with aiohttp. This allows request cancellation to be propagated to the server. Signed-off-by: Anders Kaseorg <anders@zulip.com> diff...
0
7a930afa07be2e2676c277a6a2e1b04b22d60410
zulip/zulip
events_register: Don't include subscribers in API data by default. There's a new option, `include_subscribers`, that controls whether the API sends down subscriber data for the various streams you are subscribed to. This has significant performance savings for large realms with naive clients, and saves a bunch of ban...
commit 7a930afa07be2e2676c277a6a2e1b04b22d60410 Author: Tim Abbott <tabbott@zulip.com> Date: Sun Feb 19 22:52:37 2017 -0800 events_register: Don't include subscribers in API data by default. There's a new option, `include_subscribers`, that controls whether the API sends down subscriber data for the...
0
88c1a3dcde8fb87b3c8fbaa4d7e5138cb743f84e
zulip/zulip
help: Remove single use macro self-hosted-billing.md. Having these single use macros exist was not intentional.
commit 88c1a3dcde8fb87b3c8fbaa4d7e5138cb743f84e Author: Shubham Padia <shubham@zulip.com> Date: Thu May 22 06:26:02 2025 +0000 help: Remove single use macro self-hosted-billing.md. Having these single use macros exist was not intentional. diff --git a/help/include/legacy-log-in.md b/help/include/legacy...
0
75fc5d41c9eff5d6449ed663a6425f20f9366c9d
zulip/zulip
hipchat import: Refactor write_message_data. The goal here is to make it easier to handle other message types by moving the key-specific stuff to the top of the file.
commit 75fc5d41c9eff5d6449ed663a6425f20f9366c9d Author: Steve Howell <showell@zulip.com> Date: Fri Oct 12 23:17:19 2018 +0000 hipchat import: Refactor write_message_data. The goal here is to make it easier to handle other message types by moving the key-specific stuff to the top of the file. di...
0
5e4980400437b2b4546cac12b19e2b282b642690
zulip/zulip
puppet_ops: Include Akamai log parser on prometheus server.
commit 5e4980400437b2b4546cac12b19e2b282b642690 Author: Alex Vandiver <alexmv@zulip.com> Date: Mon Nov 13 14:35:39 2023 -0500 puppet_ops: Include Akamai log parser on prometheus server. diff --git a/puppet/zulip_ops/manifests/profile/prometheus_server.pp b/puppet/zulip_ops/manifests/profile/prometheus_server.pp...
0
85a7325757d2a5c12945e62e7b75b9466578ac7e
zulip/zulip
css: Delete orphaned starred messages CSS. This CSS stopped being used in 84afc67369b2a832887167899603f51cdefec518.
commit 85a7325757d2a5c12945e62e7b75b9466578ac7e Author: Tim Abbott <tabbott@zulip.com> Date: Wed Apr 14 11:50:07 2021 -0700 css: Delete orphaned starred messages CSS. This CSS stopped being used in 84afc67369b2a832887167899603f51cdefec518. diff --git a/static/styles/left_sidebar.css b/static/styles...
0
9c614531fb4f81adcd173c1cd32cce2bbc75fad8
zulip/zulip
test_subs: Use 'common_subscribe_to_streams' helper function. In 'test_subs' we were making POST request to add subscrption using 'self.api_post'. This commit updates the code to use the test helper function 'common_subscribe_to_streams' instead. This prep commit will also help us to avoid adding 'transaction.atomic...
commit 9c614531fb4f81adcd173c1cd32cce2bbc75fad8 Author: Prakhar Pratyush <prakhar@zulip.com> Date: Tue Jul 9 16:57:16 2024 +0530 test_subs: Use 'common_subscribe_to_streams' helper function. In 'test_subs' we were making POST request to add subscrption using 'self.api_post'. This commit upd...
0
1cf18cfbeb4cc5170d3a28dea1dd4aa25e9ee988
zulip/zulip
compose: Avoid render for duplicate mentions. There is no reason to render the template for compose mention warnings if the user is already in the widget. This commit also restructures the unit test significantly to more carefully exercise each case, particularly in regard to when templates get rendered.
commit 1cf18cfbeb4cc5170d3a28dea1dd4aa25e9ee988 Author: Steve Howell <showell@zulip.com> Date: Sun Jul 9 08:13:42 2017 -0400 compose: Avoid render for duplicate mentions. There is no reason to render the template for compose mention warnings if the user is already in the widget. This commit...
0
b1fd86c5c762575f3c0e2b3b19d5dfd7d758bc79
zulip/zulip
node tests: Add coverage to hashchange.js.
commit b1fd86c5c762575f3c0e2b3b19d5dfd7d758bc79 Author: Steve Howell <showell@zulip.com> Date: Wed Apr 11 11:14:39 2018 +0000 node tests: Add coverage to hashchange.js. diff --git a/frontend_tests/node_tests/hashchange.js b/frontend_tests/node_tests/hashchange.js index e3c9e68dfa..bd03516a8f 100644 --- a/fronte...
0
a91358e186367ef90e11f836cad080a3f8c2fd20
zulip/zulip
webhooks: Fix hellosign webhook. Hellosign now posts their callback as form/multipart, which Django only permits to be read once. Attempts to access request.body after the initial read throw "django.http.request.RawPostDataException: You cannot access body after reading from request's data stream". Fixes #13847.
commit a91358e186367ef90e11f836cad080a3f8c2fd20 Author: Chris Heald <cheald@gmail.com> Date: Fri Feb 7 16:24:39 2020 -0700 webhooks: Fix hellosign webhook. Hellosign now posts their callback as form/multipart, which Django only permits to be read once. Attempts to access request.body after the i...
0
cc8353f8b146b1e0bd5a8ca4181df737905179c4
zulip/zulip
github: Enable new codeql-analysis feature. This file was generated by GitHub's code analysis tutorial; we were just approved from their waitlist. I deleted the part to run compilers as it is not relevant for us.
commit cc8353f8b146b1e0bd5a8ca4181df737905179c4 Author: Tim Abbott <tabbott@zulip.com> Date: Thu Jun 25 11:29:26 2020 -0700 github: Enable new codeql-analysis feature. This file was generated by GitHub's code analysis tutorial; we were just approved from their waitlist. I deleted the part t...
0
63643c9d9d92d34b8b57a46cffb7eaa8e3a1fa45
zulip/zulip
search: Fix blur event handler for `search_query_box`. A main change is that we now display the navbar if the search box is not focused. This was already present in the search pills version but adding it to the legacy version is an improvement. We sufficiently increase the timeout so that the pills are actually delet...
commit 63643c9d9d92d34b8b57a46cffb7eaa8e3a1fa45 Author: Ryan Rehman <ryanrehman99@gmail.com> Date: Thu Jun 18 19:17:17 2020 +0530 search: Fix blur event handler for `search_query_box`. A main change is that we now display the navbar if the search box is not focused. This was already present in the s...
0
43a3a73a0d56798f0d54bb28f8ac7c11a99bec7e
zulip/zulip
widgets: Avoid adding the widget_elem if it already exists. Fixes #18631
commit 43a3a73a0d56798f0d54bb28f8ac7c11a99bec7e Author: Ganesh Pawar <pawarg256@gmail.com> Date: Sat Jul 24 13:12:04 2021 +0530 widgets: Avoid adding the widget_elem if it already exists. Fixes #18631 diff --git a/frontend_tests/node_tests/widgetize.js b/frontend_tests/node_tests/widgetize.js index e05...
0
3a87b467e94bb62bc5b3fca28974055c03dab7cc
zulip/zulip
demo-orgs: Enable admin of auth methods for owner without email. There is no technical reason to block updating the authentication methods for the demo organization when the owner has not yet set an email. If they get locked out of the demo organization when they set an email address for their account, they can just ...
commit 3a87b467e94bb62bc5b3fca28974055c03dab7cc Author: Lauryn Menard <lauryn@zulip.com> Date: Mon May 12 16:00:27 2025 +0200 demo-orgs: Enable admin of auth methods for owner without email. There is no technical reason to block updating the authentication methods for the demo organization when the ...
0
47c8da28ff13e0ba8a60f2bfa1469ec15135e708
zulip/zulip
bots: Simplify automated testing library.
commit 47c8da28ff13e0ba8a60f2bfa1469ec15135e708 Author: Tim Abbott <tabbott@zulip.com> Date: Wed May 24 20:12:57 2017 -0700 bots: Simplify automated testing library. diff --git a/contrib_bots/bots/define/test_define.py b/contrib_bots/bots/define/test_define.py index 1d38af2ff9..449d0a2a26 100644 --- a/contrib_b...
0
ade32137ebcb6c6ba30e5ed185c9e51e9c942915
zulip/zulip
help: Improve documentation for starred messages. * Add mobile app instructions for interacting with them. * Fix inconsistent headings. * Document the new state that starred message counts are the deafult, and mention the "come back to" workflow for them.
commit ade32137ebcb6c6ba30e5ed185c9e51e9c942915 Author: Tim Abbott <tabbott@zulip.com> Date: Sat May 1 07:33:03 2021 -0700 help: Improve documentation for starred messages. * Add mobile app instructions for interacting with them. * Fix inconsistent headings. * Document the new state that starred...
0
dac56b4d08a96a95f3d81c5e8748490a8dce9748
zulip/zulip
compose: Paste content into the compose box without adding any space. We replace the call to `insert_syntax_and_focus` with a direct call to `insert_and_scroll_into_view` when pasting content into the compose box, which fixes the bug where leading and trailing spaces were added to any pasted content.
commit dac56b4d08a96a95f3d81c5e8748490a8dce9748 Author: Nehal Sharma <bablinaneh@gmail.com> Date: Tue Nov 7 13:54:56 2023 +0530 compose: Paste content into the compose box without adding any space. We replace the call to `insert_syntax_and_focus` with a direct call to `insert_and_scroll_into_view` w...
0
926716d9f22cb04175e81e35ca010f815dc870f0
zulip/zulip
custom-profile-fields: Fix handling manual date input. This commit fixes the behavior when manually changing the date input instead of selecting from the picker. Changes done are- - Users can enter date in various formats including the one showed in the input like "June 20, 1999", "MM-DD-YYY", and basically the forma...
commit 926716d9f22cb04175e81e35ca010f815dc870f0 Author: Sahil Batra <sahil@zulip.com> Date: Thu May 8 21:29:30 2025 +0530 custom-profile-fields: Fix handling manual date input. This commit fixes the behavior when manually changing the date input instead of selecting from the picker. Changes...
0
4d055a66957c05432d3983f3f1ad205ecf7c6625
zulip/zulip
push_notifications: Truncate overly large remove events. Fixes #19224.
commit 4d055a66957c05432d3983f3f1ad205ecf7c6625 Author: Tim Abbott <tabbott@zulip.com> Date: Tue Nov 2 15:16:10 2021 -0700 push_notifications: Truncate overly large remove events. Fixes #19224. diff --git a/zerver/lib/push_notifications.py b/zerver/lib/push_notifications.py index 02434803d8..384bb8c862...
0
6f6795f607666016d107a8a5bc30f38c65697f60
zulip/zulip
ts: Migrate `message_viewport` to typescript. Used function overloading for methods - `make_dimen_wrapper` and `scrollTop`.
commit 6f6795f607666016d107a8a5bc30f38c65697f60 Author: Lalit Kumar Singh <lalitkumarsingh3716@gmail.com> Date: Sat Jan 20 14:57:51 2024 +0530 ts: Migrate `message_viewport` to typescript. Used function overloading for methods - `make_dimen_wrapper` and `scrollTop`. diff --git a/tools/test-js-with-...
0
6321ab54ce3b5e9d82c8837159e99b7dd8cddcb0
zulip/zulip
dropdown_widget: Show empty list text without initiating search. Fixes #26649 If there are no items for dropdown widget to display, show empty search result text.
commit 6321ab54ce3b5e9d82c8837159e99b7dd8cddcb0 Author: Aman Agrawal <amanagr@zulip.com> Date: Thu Sep 7 04:10:37 2023 +0000 dropdown_widget: Show empty list text without initiating search. Fixes #26649 If there are no items for dropdown widget to display, show empty search result text. di...
0
26690adc4749a79ddb0fa8c50acb9db6c41ee2d0
zulip/zulip
Save the correct-from-dom rerendered message in _rows when rerendering (imported from commit c021beef3106148a6d085ca16f34a1c4bb4fc7af)
commit 26690adc4749a79ddb0fa8c50acb9db6c41ee2d0 Author: Leo Franchi <leo@zulip.com> Date: Fri Mar 7 16:12:31 2014 -0500 Save the correct-from-dom rerendered message in _rows when rerendering (imported from commit c021beef3106148a6d085ca16f34a1c4bb4fc7af) diff --git a/static/js/message_list_view.js b/st...
0
649235cfec17b2b6f7addf18eb3fccc3c53f824d
zulip/zulip
python: Remove unused imports. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
commit 649235cfec17b2b6f7addf18eb3fccc3c53f824d Author: Anders Kaseorg <anders@zulip.com> Date: Fri Feb 22 15:47:38 2019 -0800 python: Remove unused imports. Signed-off-by: Anders Kaseorg <andersk@mit.edu> diff --git a/puppet/zulip_ops/files/zulip-ec2-configure-interfaces b/puppet/zulip_ops/files/zulip...
0
83e517fcf9c9aba6e9f3d6da3c221f0216ff1a25
zulip/zulip
Flush cache on all user presence updates. (imported from commit 130eac36f9932350a29ed88f11dd3e2f6bf3f979)
commit 83e517fcf9c9aba6e9f3d6da3c221f0216ff1a25 Author: Steve Howell <showell@zulip.com> Date: Sun Sep 15 14:20:33 2013 -0400 Flush cache on all user presence updates. (imported from commit 130eac36f9932350a29ed88f11dd3e2f6bf3f979) diff --git a/zerver/lib/cache.py b/zerver/lib/cache.py index 9093bd1413...
0
1e625bc43bd975a2e7cbe7967d7abb375a16cb16
zulip/zulip
setting_ui: Fix sorting by "Expires at" column. Previously, the sorting was broken due to incorrect referencing of the property. The code has been updated to use the "expiry_date" property instead of "expires_at". Fixes #29005.
commit 1e625bc43bd975a2e7cbe7967d7abb375a16cb16 Author: Sujal Shah <sujalshah28092004@gmail.com> Date: Fri Feb 23 16:52:48 2024 +0530 setting_ui: Fix sorting by "Expires at" column. Previously, the sorting was broken due to incorrect referencing of the property. The code has been updated to use ...
0
f0e49e6cbb6f3277f9b30ad91747066093054e02
zulip/zulip
Updated webpack-bundle-tracker to 0.3.0.
commit f0e49e6cbb6f3277f9b30ad91747066093054e02 Author: Gooca <murkythunder@gmail.com> Date: Thu Mar 22 00:08:03 2018 +0000 Updated webpack-bundle-tracker to 0.3.0. diff --git a/package.json b/package.json index b313eea5ce..8cd4771daf 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "undersco...
0
a98b0cf35df7ea855a13207b8cb3cb3bc8a300dd
zulip/zulip
travis: Workaround postgres 9.1 conflict issues on trusty. We ran into a bug with the Travis CI infrastructure where it postgres 9.1 is installed on the system, and so when we'd do an apt upgrade with a new version of 9.1, the 9.1 daemon would end up getting started and conflict with the 9.3 daemon we were trying to r...
commit a98b0cf35df7ea855a13207b8cb3cb3bc8a300dd Author: Tim Abbott <tabbott@zulip.com> Date: Sat Jan 9 15:13:12 2016 -0800 travis: Workaround postgres 9.1 conflict issues on trusty. We ran into a bug with the Travis CI infrastructure where it postgres 9.1 is installed on the system, and so when we'd...
0
4bf8c19b32eef460dd0b4780608c305b5c4ddab1
zulip/zulip
message_view_header: Fix misleading variable name. It never contained only icon data.
commit 4bf8c19b32eef460dd0b4780608c305b5c4ddab1 Author: Tim Abbott <tabbott@zulip.com> Date: Mon May 13 17:30:47 2024 -0700 message_view_header: Fix misleading variable name. It never contained only icon data. diff --git a/web/src/message_view_header.ts b/web/src/message_view_header.ts index 450d0f175c...
0
7867830e14df9b8287a1c6b28c9446135d5f5579
zulip/zulip
settings: Adjust styling of ? icons.
commit 7867830e14df9b8287a1c6b28c9446135d5f5579 Author: Yash RE <33805964+YashRE42@users.noreply.github.com> Date: Sat Jun 22 00:30:06 2019 +0530 settings: Adjust styling of ? icons. diff --git a/static/styles/settings.scss b/static/styles/settings.scss index 23e506c273..9f85c63902 100644 --- a/static/styles/se...
0
62136d0c8ea4a61440f3bf17a0b924983be45c0f
zulip/zulip
[manual] Add the new digest_emails queue processor to the supervisor config. This commit needs a puppet apply to take effect. (imported from commit 0b26c385bad7c928912411ba85b70512b84be643)
commit 62136d0c8ea4a61440f3bf17a0b924983be45c0f Author: Jessica McKellar <jesstess@mit.edu> Date: Mon Oct 21 16:40:04 2013 -0400 [manual] Add the new digest_emails queue processor to the supervisor config. This commit needs a puppet apply to take effect. (imported from commit 0b26c385bad7c92891...
0