Greg Price
4bdecb7150
create_realm: Small refactor to check key just once.
2018-01-24 14:34:30 -08:00
Eeshan Garg
e8fe4a65af
webhooks/gitlab: Filter out hidden comments from issue descriptions.
...
Hidden comments of the form `<!-- comment -->` were previously
rendered as is when a new Issue was created. Now, we strip those
out completely!
2018-01-24 10:48:55 -08:00
YJDave
15dd94035c
org settings: Handle NEW_USER_BOT not being set.
...
If NEW_USER_BOT is not configured in organization, then disable setting
for selecting stream for new user notification.
2018-01-23 15:23:25 -05:00
Brock Whittaker
849d63dd1c
settings: Change error for "no data" to something more friendly.
2018-01-23 14:38:59 -05:00
Brock Whittaker
ffe3a6c127
settings: Remove password confirmation in modal.
...
This removes the requirement to confirm your new password.
It isn't necessary and can be fixed easily with an email
reset if messed up.
2018-01-23 14:38:59 -05:00
Dennis Ludl
895a675f4c
decorators: Fix email check in access_user_by_api_key case insensitive.
...
In Zulip, email addresses should always be treated as
case-insensitive; this code path incorrectly assumed the email input
by the user had the correct case.
Discussed in:
https://chat.zulip.org/#narrow/stream/issues/subject/Mobile.20Apps.3A.20Sometimes.20don't.20load.20data/near/461062
Commit message tweaked by tabbott.
2018-01-23 10:04:03 -08:00
Patrick Grave
a2ed76c383
mypy: Use Python 3 syntax for typing in beanstalk/tests.py
2018-01-23 08:49:42 -08:00
Patrick Grave
f2b322c32d
mypy: Use Python 3 syntax for typing in upload.py
2018-01-23 08:49:42 -08:00
Patrick Grave
008e250668
mypy: Use Python 3 syntax for typing in test_runner.py
2018-01-23 08:49:42 -08:00
Abijith10
7ed76eeb23
mypy: Use Python 3 type syntax in zerver/webhooks/zendesk/view.py.
2018-01-23 08:37:56 -08:00
Abijith10
c4420ba0c6
mypy: Use Python 3 type syntax in zerver/webhooks/librato/view.py.
2018-01-23 08:37:56 -08:00
Abijith10
8a0cd1a966
mypy: Use Python 3 type syntax in zerver/webhooks/github_webhook/view.py.
2018-01-23 08:37:56 -08:00
Abijith10
d30c2463c2
mypy: Use Python 3 type syntax in zerver/webhooks/deskdotcom/view.py.
2018-01-23 08:37:56 -08:00
Abijith10
c6804f5c8d
mypy: Use Python 3 type syntax in zerver/webhooks/delighted/view.py.
2018-01-23 08:37:56 -08:00
Abijith10
39fe64132d
mypy: Use Python 3 type syntax in zerver/webhooks/codeship/view.py.
2018-01-23 08:37:56 -08:00
Abijith10
ead63c475b
mypy: Use Python 3 type syntax in zerver/models.py.
2018-01-23 08:37:56 -08:00
Rhea Parekh
11b549e566
slack importer: Add regex for mail links.
...
`<mailto:foo@foo.com>` is changed to `mailto:foo@foo.com`.
2018-01-23 10:01:15 -05:00
Rhea Parekh
df1bb5fd27
slack importer: Fix link regex and add test case.
2018-01-23 10:01:15 -05:00
Rhea Parekh
5b1e9f8181
slack importer: correct the implementation of unzipping slack data file.
...
Slack zip file unzips in the same folder.
2018-01-23 10:01:15 -05:00
Rhea Parekh
845a8d63bf
slack importer: Prevent id clashes for import in an active db.
...
Previously we had a problem of id clashes while importing converted
slack data into an existing zulip instance with realms which are actively
populating the database.
This counts the total objects to be imported and does a db transaction
to increase the SEQUENCE number for that table by that number,
and hence allocates a range of ids for the to be converted slack data
objects.
2018-01-23 10:01:15 -05:00
Weronika Grzybowska
7ac7100a1d
messages: Make checking for status message consistent with backend.
...
Adds a check for newline that was present on backend, but missing in the
frontend markdown implementation. Updating messages uses is_me_message flag
received from server instead of its own partial test. Similarly, rendering
previews uses markdown code.
Fixes #6493 .
2018-01-23 09:26:41 -05:00
Robert Hönig
9a15c4e3ff
Add bot services to page_params.
...
This is the first step for allowing users
to edit a bot's service entries, name the
outgoing webhook configuration entries. The
chosen data structures allow for a future
with multiple services per bot; right now,
only one service per bot is supported.
2018-01-23 07:29:00 -05:00
Robert Hönig
06fb868482
Send an event to bot owners when a bot is created.
2018-01-23 07:29:00 -05:00
Vishnu Ks
036dc53d20
messages: Rename last_visible_message_id to first_visible_message_id.
2018-01-22 19:53:44 -08:00
Eeshan Garg
00d3f19c0a
integrations/email: Render settings.EMAIL_GATEWAY_EXAMPLE correctly.
2018-01-22 18:05:20 -05:00
YJDave
8905744bb1
stream settings: Add period at the end of error messages.
2018-01-19 13:05:43 -05:00
Aditya Bansal
f272ea9087
scheduledmessages: Start using/expecting delivery_type as a param.
2018-01-19 11:33:11 -05:00
Aditya Bansal
dcce8e7219
scheduledmessages: Add delivery_type field to the table.
2018-01-19 11:33:11 -05:00
Aditya Bansal
c770bdaa3a
reminder_bot: Add infra for adding reminder bot to every realm.
2018-01-19 11:33:11 -05:00
Aditya Bansal
f46d098558
schedulemessages: Add handle_deferred_message() to handle requests.
...
This is responsible for:
1.) Handling all the incoming requests at the
messages endpoint which have defer param set. This is similar to
send_message_backend apart from the fact that instead of really
sending a message it schedules one to be sent later on.
2.) Does some preliminary checks such as validating timestamp for
scheduling a message, prevent scheduling a message in past, ensure
correct format of message to be scheduled.
3.) Extracts time of scheduled delivery from message.
4.) Add tests for the newly introduced function.
5.) timezone: Add get_timezone() to obtain tz object from string.
This helps in obtaining a timezone (tz) object from a timezone
specified as a string. This string needs to be a pytz lib defined
timezone string which we use to specify local timezones of the
users.
2018-01-19 11:33:11 -05:00
rht
ee06da9350
bugdown: Linkify Bitcoin URI.
2018-01-19 06:07:43 -05:00
Umair Khan
ea8f1efb63
tests: Re-raise exception if not import error.
2018-01-19 06:02:05 -05:00
Umair Khan
8f316183e0
tests: Make import error tracebacks terse.
...
This will also disable exception chaining; we do not need it here.
2018-01-19 06:02:05 -05:00
Vishnu Ks
7dbb4cdae2
uploads: Remove ExceededQuotaError class.
...
We are no longer using it.
2018-01-18 15:38:08 -08:00
Tim Abbott
2c16c76551
beeminder: Fix buggy coding tag at top of file.
2018-01-18 09:07:06 -08:00
Umair Khan
a994dba583
tests: Give more descriptive import error.
...
This code takes care of the environment running Python 3.4 when
test label is passed directly to the test-backend command:
./tools/test-backend test_alert_words
2018-01-18 07:13:26 -05:00
Umair Khan
0eda941822
tests: Verify imports in test modules.
2018-01-18 07:13:26 -05:00
Umair Khan
7248a3366b
tests: Change print_error_message to check_import_error.
2018-01-18 07:13:26 -05:00
Umair Khan
f3c86c9e58
tests: Remove old import testing code.
...
We will add the modified version of this code in the next commit.
2018-01-18 07:13:26 -05:00
Umair Khan
c26cdee95d
get_test_names: Update to accept ParallelTestSuite arg.
2018-01-18 07:13:26 -05:00
Alena Volkova
aa58e1fcda
tests: Make import failure error messages more consistent.
2018-01-18 07:13:26 -05:00
Alena Volkova
13b1334fe4
tests: Refactor error handling of import failures.
2018-01-18 07:13:26 -05:00
Greg Price
3d423a3c7b
logging: Fix corrupted default format for our logfiles.
...
This was changed by accident when the syntax was rearranged,
in 3f4bf2d22
"zerver/lib: Use python 3 syntax for typing"
back in November.
2018-01-17 18:10:17 -08:00
Shubham Dhama
797fa62fde
test auth.py: Add tests for json_fetch_api_key function.
2018-01-17 15:15:51 -05:00
infinitelooped
252a485621
integrations: Add documentation for Groove.
2018-01-17 13:00:11 -05:00
Privisus
e5fc49e23a
integrations: Add documentation for Raygun.
2018-01-17 12:53:22 -05:00
Privisus
c758636c1e
integrations: Add webhook code, API endpoint, and tests for Raygun.
2018-01-17 12:53:22 -05:00
Rhea Parekh
7153d20205
slack importer: append Message id from the db.
2018-01-17 11:46:27 -05:00
Rhea Parekh
58f1f0e13e
slack importer: append Recipient id from the db.
...
Recipient id should be updated from the database,
otherwise there will be foreign key clashes.
2018-01-17 11:46:27 -05:00
Rhea Parekh
138aba3d89
slack importer: Add unit tests for slack message conversions.
2018-01-17 09:38:53 -05:00