Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Readme #475

Merged
merged 6 commits into from
Nov 4, 2024
Merged

Fix: Readme #475

merged 6 commits into from
Nov 4, 2024

Conversation

CodeWithEmad
Copy link
Member

@CodeWithEmad CodeWithEmad commented Aug 1, 2024

This will introduce the following changes:

  • typo fixed: transiflex -> transifex
  • code-block added
  • heading symbol length
  • make heading dynamic for xblock cookiecutter
  • Old URL with 404 response updated

@openedx-webhooks
Copy link

Thanks for the pull request, @CodeWithEmad!

What's next?

Please work through the following steps to get your changes ready for engineering review:

🔘 Get product approval

If you haven't already, check this list to see if your contribution needs to go through the product review process.

  • If it does, you'll need to submit a product proposal for your contribution, and have it reviewed by the Product Working Group.
    • This process (including the steps you'll need to take) is documented here.
  • If it doesn't, simply proceed with the next step.

🔘 Provide context

To help your reviewers and other members of the community understand the purpose and larger context of your changes, feel free to add as much of the following information to the PR description as you can:

  • Dependencies

    This PR must be merged before / after / at the same time as ...

  • Blockers

    This PR is waiting for OEP-1234 to be accepted.

  • Timeline information

    This PR must be merged by XX date because ...

  • Partner information

    This is for a course on edx.org.

  • Supporting documentation
  • Relevant Open edX discussion forum threads

🔘 Get a green build

If one or more checks are failing, continue working on your changes until this is no longer the case and your build turns green.

🔘 Let us know that your PR is ready for review:

Who will review my changes?

This repository is currently unmaintained.

To get help with finding a technical reviewer, tag the community contributions project manager for this PR in a comment and let them know that your changes are ready for review:

  1. On the right-hand side of the PR, find the Contributions project, click the caret in the top right corner to expand it, and check the "Primary PM" field for the name of your PM.
  2. Find their GitHub handle here.

Where can I find more information?

If you'd like to get more details on all aspects of the review process for open source pull requests (OSPRs), check out the following resources:

When can I expect my changes to be merged?

Our goal is to get community contributions seen and reviewed as efficiently as possible.

However, the amount of time that it takes to review and merge a PR can vary significantly based on factors such as:

  • The size and impact of the changes that it introduces
  • The need for product review
  • Maintenance status of the parent repository

💡 As a result it may take up to several weeks or months to complete a review and merge your PR.

@itsjeyd
Copy link

itsjeyd commented Aug 8, 2024

@CodeWithEmad Thank you for this contribution!

It looks like the tests will need a bit of work.

Once they're green we can mark this PR as ready for review.

@CodeWithEmad
Copy link
Member Author

@itsjeyd Failed job has been resolved.

@itsjeyd
Copy link

itsjeyd commented Sep 7, 2024

Thanks @CodeWithEmad, I'll mark this PR as ready for review now.

@itsjeyd itsjeyd added waiting for eng review PR is ready for review. Review and merge it, or suggest changes. needs reviewer assigned PR needs to be (re-)assigned a new reviewer labels Sep 7, 2024
Copy link
Member

@OmarIthawi OmarIthawi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @CodeWithEmad, please check the comments regarding OEP-58 updates

Comment on lines 112 to 113
See `transifex documentation <https://docs.transifex.com/integrations/django>`_ for more details about integrating
django with transiflex.
django with transifex.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@@ -127,7 +127,7 @@ The previous command will compile ``.po`` files using
After compiling the ``.po`` file(s), ``django-statici18n`` is used to create language specific catalogs. See
``django-statici18n`` `documentation <https://django-statici18n.readthedocs.io/en/latest/>`_ for more information.

To upload translations to transiflex use the follow Make target::
To upload translations to transifex use the follow Make target:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here, make push_translations no longer exists as of OEP-58.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, so I'll remove all references to push_translations command.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@@ -137,7 +137,7 @@ See `config instructions <https://github.com/openedx/i18n-tools#transifex-comman
transifex credentials.

See `transifex documentation <https://docs.transifex.com/integrations/django>`_ for more details about integrating
django with transiflex.
django with transifex.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't get what you mean by "same here".

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@@ -22,9 +22,9 @@ Localization (l10n) is adapting a program to local language and cultural habits.

Use the locale directory to provide internationalized strings for your XBlock project.
For more information on how to enable translations, visit the
`Open edX XBlock tutorial on Internationalization <https://edx.readthedocs.org/projects/xblock-tutorial/en/latest/edx_platform/edx_lms.html>`_.
`Adding Translated Strings to your XBlock <https://edx.readthedocs.io/projects/xblock/en/latest/xblock-tutorial/edx_platform/edx_lms.html#adding-translated-strings-to-your-xblock>`_.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is only applicable for non-openedx XBlocks.

github.com/openedx XBlocks has full atlas support:

And this link should be used instead:

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right.

@CodeWithEmad CodeWithEmad force-pushed the fix/readme branch 2 times, most recently from 6e0c55f to 912a053 Compare September 15, 2024 12:31
@itsjeyd itsjeyd removed needs reviewer assigned PR needs to be (re-)assigned a new reviewer waiting for eng review PR is ready for review. Review and merge it, or suggest changes. labels Sep 20, 2024
@itsjeyd
Copy link

itsjeyd commented Sep 20, 2024

Thanks for providing a review for this PR @OmarIthawi!

@CodeWithEmad Please have a look at the failing tests when you can.

@itsjeyd itsjeyd added the waiting on author PR author needs to resolve review requests, answer questions, fix tests, etc. label Sep 20, 2024
@CodeWithEmad
Copy link
Member Author

CodeWithEmad commented Sep 23, 2024

My changes were pretty harmless and should not cause the tests to fail, @itsjeyd.
This is happening on other PRs like #488 too.
Also, see #484 (comment)

@CodeWithEmad CodeWithEmad mentioned this pull request Sep 23, 2024
@itsjeyd
Copy link

itsjeyd commented Sep 26, 2024

Thanks for the details @CodeWithEmad. What's the next step here, then? Should we consider this PR blocked until someone does the work that @feanil described in #484 (comment)? I'm assuming you're not planning to do it yourself, but let me know if I got the wrong impression 🙂

@CodeWithEmad
Copy link
Member Author

CodeWithEmad commented Oct 6, 2024

Sorry for not getting back to you sooner, @itsjeyd.
I guess #471 should take care of it.

@itsjeyd
Copy link

itsjeyd commented Oct 11, 2024

No worries @CodeWithEmad, and thanks for the details.

I'll mark this PR as blocked on #471, then.

@itsjeyd itsjeyd added blocked by other work PR cannot be finished until other work is complete and removed waiting on author PR author needs to resolve review requests, answer questions, fix tests, etc. labels Oct 11, 2024
@itsjeyd
Copy link

itsjeyd commented Oct 31, 2024

@CodeWithEmad Same note here, #471 has been merged so this PR should be unblocked now.

@itsjeyd itsjeyd added waiting on author PR author needs to resolve review requests, answer questions, fix tests, etc. and removed blocked by other work PR cannot be finished until other work is complete labels Oct 31, 2024
With this, we're not worried about teh size of the project_desc and the generated rst file is always working.
The size of the heading symbols should be the same size as the titles, otherwise might act funny in different environments
This will add  a copy button + syntax highlighting in GitHub.
@CodeWithEmad
Copy link
Member Author

It's done, @itsjeyd

@feanil feanil merged commit 26118b9 into openedx:master Nov 4, 2024
5 checks passed
@CodeWithEmad CodeWithEmad deleted the fix/readme branch November 4, 2024 22:02
@itsjeyd itsjeyd removed the waiting on author PR author needs to resolve review requests, answer questions, fix tests, etc. label Nov 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
open-source-contribution PR author is not from Axim or 2U
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

5 participants