From: Adam T. <aa-...@us...> - 2022-01-05 17:51:40
|
--- ** [patches:#187] Rename .txt files to .rst** **Status:** open **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Wed Jan 05, 2022 05:51 PM UTC **Owner:** nobody This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: Günter M. <mi...@us...> - 2022-01-05 18:49:55
|
Docutils is quite clear about the [standard filename extension for a reStructuredText file](https://docutils.sourceforge.io/FAQ.html#what-s-the-standard-filename-extension-for-a-restructuredtext-file), so I don't see this accepted anytime soon. The [policies](https://docutils.sourceforge.io/docs/dev/policies.html#documentation-conventions) advise: > * Add an Emacs "local variables" block in a comment at the end of the document. See the end of this document for an example. Compatible editors can use this to set the editing mode. In the [jed programmer's editor](https://www.jedsoft.org/jed), I use a hook ~~~S-Lang % set rst (reStructured Text) mode for some cases define text_mode_hook() { % Set rst_mode for text files in the Docutils SVN working dir % and the Docutils test dir if ((is_substr(buffer_filename(), "docutils") or is_substr(buffer_filename(), "Test/Docutils")) and not is_substr(buffer_filename(), "Makefile")) { rst_mode(); return(1); } % ... } ~~~ Maybe something similar is available in other "intelligent" editors, too. --- ** [patches:#187] Rename .txt files to .rst** **Status:** open **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Wed Jan 05, 2022 05:51 PM UTC **Owner:** nobody This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: Adam T. <aa-...@us...> - 2022-01-05 19:29:48
|
Hi Günter, That text was written in 2002 -- twenty years ago. I would argue that the *de facto* reality is that ".rst" **is** the standard extension for reStructuredText files, and has been for quite some time -- it is required for Python Enhancement Proposals (PEP 12 [1]) and the Python documentation (since 2007 [2]). Wikipedia has used the `.rst` extension for 10 years [3]. The linux kernel has been using `.rst` files for 5 years, when they switched to reStructuredText [4]. Any tool using `linguist` will pick up `.rst` as the extension (since the start of the project in 2011) [5]. I could go on! My plea is to update the FAQ -- my suggested edit notes that "ReStructuredText files should be readable as plaintext", which I believe is in spirit of the original text. In response to the "why bother" comment in the original FAQ text -- I would argue it is as the rest of the world seems to assume that the extension is `.rst`, and Docutils as the official custodian of reStructuredText should embrace this. A --- Original FAQ text: >**What's the standard filename extension for a reStructuredText file?:** > It's ".txt". Some people would like to use ".rest" or ".rst" or > ".restx", but why bother? ReStructuredText source files are meant to > be readable as plaintext, and most operating systems already associate > ".txt" with text files. Using a specialized filename extension would > require that users alter their OS settings, which is something that > many users will not be willing or able to do. [1]: https://python.github.io/peps/pep-0012/ [2]: https://github.com/python/cpython/tree/8ec7f656134b1230ab23003a94ba3266d7064122/Doc [3]: https://en.wikipedia.org/w/index.php?title=ReStructuredText&diff=487960232&oldid=487396784 [4]: https://github.com/torvalds/linux/commit/22cba31bae9dc357622f09d22b82ca5a112b4fde#diff-65f82f80279ec12ce6d19e0a686d262618611be80d1a264e1cffed0d14c814a4 [5]: https://github.com/github/linguist/blob/37243ec6bed3e697beeb874fc94efb9e42ca7f8c/lib/linguist/extensions.yml#L502-L506 --- ** [patches:#187] Rename .txt files to .rst** **Status:** open **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Wed Jan 05, 2022 06:49 PM UTC **Owner:** nobody This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: Adam T. <aa-...@us...> - 2022-01-05 19:31:19
|
The links didn't render for some reason, let me try again: 1: https://python.github.io/peps/pep-0012/ 2: https://github.com/python/cpython/tree/8ec7f656134b1230ab23003a94ba3266d7064122/Doc 3: https://en.wikipedia.org/w/index.php?title=ReStructuredText&diff=487960232&oldid=487396784 4: https://github.com/torvalds/linux/commit/22cba31bae9dc357622f09d22b82ca5a112b4fde#diff-65f82f80279ec12ce6d19e0a686d262618611be80d1a264e1cffed0d14c814a4 5: https://github.com/github/linguist/blob/37243ec6bed3e697beeb874fc94efb9e42ca7f8c/lib/linguist/extensions.yml#L502-L506 --- ** [patches:#187] Rename .txt files to .rst** **Status:** open **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Wed Jan 05, 2022 07:29 PM UTC **Owner:** nobody This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: engelbert g. <gr...@us...> - 2022-01-06 12:39:43
|
Hei, first of all I appreciate Adam nudging, although the project must slow him down, because not every docutils user is a programmer. For example removng rst2html.py is a 2 second change for Adam (more like 2 minutes for me) but might be hard for people running the same script for 10 years. As for the file extension: 1. Adam's plea (very understandable) highlighting as the editor recognizes the file extension. 2. Editing or viewing for normal users. Will windows ask what to do with .rst files ? I don't know cheers --- ** [patches:#187] Rename .txt files to .rst** **Status:** open **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Wed Jan 05, 2022 07:31 PM UTC **Owner:** nobody This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: Adam T. <aa-...@us...> - 2022-01-06 13:16:56
|
> Will windows ask what to do with .rst files Yes, if you double click on the file it will open a pop-up asking what application you want to use to edit the files, and then you can select 'notepad' (preinstalled) or any other text editor. Windows can then remember the file association. > removng rst2html.py ... might be hard for people running the same script for 10 years I do understand entirely -- any change is by its very nature breaking fron the status quo ante. The latest patch I proposed though has no breaking changes (keeps `rst2html.py` etc), but less of the enhancements. Can I take it that you'd support this change @grubert? (Trying to forge consensus!) A P.S. I have added an image of the file association pop-up box, as it is on my Windows 10 PC. Attachments: - [rst-file-assoc-popup.PNG](https://sourceforge.net/p/docutils/patches/_discuss/thread/c8407ba766/de6f/attachment/rst-file-assoc-popup.PNG) (30.6 kB; image/png) --- ** [patches:#187] Rename .txt files to .rst** **Status:** open **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Thu Jan 06, 2022 12:39 PM UTC **Owner:** nobody This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: Günter M. <mi...@us...> - 2022-01-06 14:33:38
|
- **status**: open --> pending-remind - **assigned_to**: David Goodger - **Comment**: The "de facto" status is why I did not reject the proposal right away. I am not against "endorsing" rst as extension for rST files. However, I remember David Goodger beeing very clear about his preference in this question on several occasions. I don't think it is an urgent issue, so I prefer to let David decide. --- ** [patches:#187] Rename .txt files to .rst** **Status:** pending-remind **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Thu Jan 06, 2022 01:16 PM UTC **Owner:** David Goodger This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: Adam T. <aa-...@us...> - 2022-01-06 14:37:55
|
Perhaps if we don't hear from him in a month (early Februray) we could revisit this issue? (I was taught to try to be explicit rather than 'in the future' for reminders!) A --- ** [patches:#187] Rename .txt files to .rst** **Status:** pending-remind **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Thu Jan 06, 2022 02:33 PM UTC **Owner:** David Goodger This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: engelbert g. <gr...@us...> - 2022-01-07 10:39:49
|
:-) yes nag in early February there are two sides: developers working on the file: it is cool if the editor knows ot is reST, therefore .rst readers reading some file, easing access, prefer .txt linux kernel documentation is developers, not users or readers. --- ** [patches:#187] Rename .txt files to .rst** **Status:** pending-remind **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Thu Jan 06, 2022 02:37 PM UTC **Owner:** David Goodger This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: Adam T. <aa-...@us...> - 2022-02-16 03:41:54
|
> :-) yes nag in early February We're getting dangerously close to mid-late February! Sorry for my brief absence -- deadlines and real life, sadly. Hence this post with said nag ;-) A --- ** [patches:#187] Rename .txt files to .rst** **Status:** pending-remind **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Fri Jan 07, 2022 10:39 AM UTC **Owner:** David Goodger This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: engelbert g. <gr...@us...> - 2022-02-17 14:16:27
|
thanks for the reminder we still have the two opinions (developers and readers) and I don't have a clue :-) --- ** [patches:#187] Rename .txt files to .rst** **Status:** pending-remind **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Wed Feb 16, 2022 03:41 AM UTC **Owner:** David Goodger This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: Günter M. <mi...@us...> - 2024-08-08 19:36:19
|
Thinking about this, I now favour changing the extension of rST source files to `.rst`. The PEP sources at peps.python.org are an "official precedence case". Writer template files are *not* rST sources and should keep their extension. Standard include files shoud change after an advance warning and transition period. (We can implement a fallback with warning in the "include" directive implementation.) --- **[patches:#187] Rename .txt files to .rst** **Status:** pending-remind **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Thu Feb 17, 2022 02:07 PM UTC **Owner:** David Goodger This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: Günter M. <mi...@us...> - 2024-08-08 19:36:57
|
- **assigned_to**: David Goodger --> Adam Turner --- **[patches:#187] Rename .txt files to .rst** **Status:** pending-remind **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Thu Aug 08, 2024 07:36 PM UTC **Owner:** Adam Turner This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: Adam T. <aa-...@us...> - 2024-08-09 05:12:18
|
I have recreated the branch/patch for the rename, please have a look: * https://github.com/AA-Turner/docutils/pull/17 * https://github.com/AA-Turner/docutils/pull/17.patch All `.txt` files in docutils/, web/, and sandbox/infrastructure/ have been renamed. Writer template files remain unchanged. A --- **[patches:#187] Rename .txt files to .rst** **Status:** pending-remind **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Thu Aug 08, 2024 07:37 PM UTC **Owner:** Adam Turner This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: Günter M. <mi...@us...> - 2024-08-09 09:35:00
|
We would need to adapt background scripts, too. I am unsure whether the following changes correctly describe the behaviour after applying this patch : ~~~ --- a/sandbox/infrastructure/docutils-update.local +++ b/sandbox/infrastructure/docutils-update.local @@ -14,10 +14,10 @@ # # ATTENTION # -# Any .html document with a corresponding .txt file is regenerated -# if the .txt has changed, but no new .html files will be generated. +# Any .html document with a corresponding .rst file is regenerated +# if the .rst has changed, but no new .html files will be generated. # -# * Funny thing: sf hides README.txt files. +# * Funny thing: sf hides README.rst files. # # ATTENTION ~~~ I downloaded the patch set and tried to commit it to a local branch but failed: ~~~ milde@heinz:/usr/local/src/docutils-git-svn/docutils/docutils > git am -3 /tmp/17.patch Applying: Rename all .txt files to .rst Applying: Update references to .txt files Using index info to reconstruct a base tree... M docutils/test/test_utils/test__init__.py .git/rebase-apply/patch:7937: trailing whitespace. # Any .html document with a corresponding .rst file is regenerated error: patch failed: docutils/docs/ref/rst/history.rst:1 error: docutils/docs/ref/rst/history.rst: patch does not apply error: Did you hand edit your patch? It does not apply to blobs recorded in its index. Patch failed at 0002 Update references to .txt files hint: Use 'git am --show-current-patch=diff' to see the failed patch When you have resolved this problem, run "git am --continue". If you prefer to skip this patch, run "git am --skip" instead. To restore the original branch and stop patching, run "git am --abort". ~~~ --- **[patches:#187] Rename .txt files to .rst** **Status:** pending-remind **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Fri Aug 09, 2024 05:12 AM UTC **Owner:** Adam Turner This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: engelbert g. <gr...@us...> - 2024-08-11 11:57:49
|
sandbox/infrastructure/docutils-update.local errors will pop up when run , no problem to me On Fri, 9 Aug 2024 at 11:35, Günter Milde <mi...@us...> wrote: > We would need to adapt background scripts, too. I am unsure whether the > following changes correctly describe the behaviour after applying this > patch : > > --- a/sandbox/infrastructure/docutils-update.local+++ b/sandbox/infrastructure/docutils-update.local@@ -14,10 +14,10 @@ # # ATTENTION #-# Any .html document with a corresponding .txt file is regenerated -# if the .txt has changed, but no new .html files will be generated.+# Any .html document with a corresponding .rst file is regenerated +# if the .rst has changed, but no new .html files will be generated. #-# * Funny thing: sf hides README.txt files.+# * Funny thing: sf hides README.rst files. # # ATTENTION > > I downloaded the patch set and tried to commit it to a local branch but > failed: > > milde@heinz:/usr/local/src/docutils-git-svn/docutils/docutils > git am -3 /tmp/17.patch Applying: Rename all .txt files to .rstApplying: Update references to .txt filesUsing index info to reconstruct a base tree...M docutils/test/test_utils/test__init__.py.git/rebase-apply/patch:7937: trailing whitespace.# Any .html document with a corresponding .rst file is regenerated error: patch failed: docutils/docs/ref/rst/history.rst:1error: docutils/docs/ref/rst/history.rst: patch does not applyerror: Did you hand edit your patch?It does not apply to blobs recorded in its index.Patch failed at 0002 Update references to .txt fileshint: Use 'git am --show-current-patch=diff' to see the failed patchWhen you have resolved this problem, run "git am --continue".If you prefer to skip this patch, run "git am --skip" instead.To restore the original branch and stop patching, run "git am --abort". > > ------------------------------ > > *[patches:#187] <https://sourceforge.net/p/docutils/patches/187/> Rename > .txt files to .rst* > > *Status:* pending-remind > *Group:* None > *Created:* Wed Jan 05, 2022 05:51 PM UTC by Adam Turner > *Last Updated:* Fri Aug 09, 2024 05:12 AM UTC > *Owner:* Adam Turner > > This change is in two parts -- the first commit does the rename and the > second goes through and updates references to .txt files. All tests pass. > > The benefit of this change is primarily for people -- on user interfaces > with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code > mirrors, etc), the text is presented natively as reStructuredText, and > editor features can assist with e.g. autocompletion. > > Docutils itself of course does not care which file extension is used. > > I have not renamed any of the include files or template files in > docutils.parsers or docutils.writers, as they form part of the public API > and would need a deprecation cycle (or aliasing in the parsing code) > > A > > Please see https://github.com/AA-Turner/docutils/pull/3 and > https://github.com/AA-Turner/docutils/pull/3.patch for the commits and > patch. > ------------------------------ > > Sent from sourceforge.net because you indicated interest in > https://sourceforge.net/p/docutils/patches/187/ > > To unsubscribe from further messages, please visit > https://sourceforge.net/auth/subscriptions/ > --- **[patches:#187] Rename .txt files to .rst** **Status:** pending-remind **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Fri Aug 09, 2024 09:35 AM UTC **Owner:** Adam Turner This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: engelbert g. <gr...@us...> - 2024-08-13 12:32:03
|
infrastructure docutils-update.local should prefer .rst but falls back on .txt ./docs/user/Makefile.docutils-update has fixed filenames but is only one file On Sun, 11 Aug 2024 at 13:57, engelbert gruber < gr...@us...> wrote: > sandbox/infrastructure/docutils-update.local errors will pop up when > run , no problem to me > > On Fri, 9 Aug 2024 at 11:35, Günter Milde mi...@us... > wrote: > > We would need to adapt background scripts, too. I am unsure whether the > following changes correctly describe the behaviour after applying this > patch : > > --- a/sandbox/infrastructure/docutils-update.local+++ > b/sandbox/infrastructure/docutils-update.local@@ -14,10 +14,10 @@ # # > ATTENTION #-# Any .html document with a corresponding .txt file is > regenerated -# if the .txt has changed, but no new .html files will be > generated.+# Any .html document with a corresponding .rst file is > regenerated +# if the .rst has changed, but no new .html files will be > generated. #-# * Funny thing: sf hides README.txt files.+# * Funny thing: > sf hides README.rst files. # # ATTENTION > > I downloaded the patch set and tried to commit it to a local branch but > failed: > > milde@heinz:/usr/local/src/docutils-git-svn/docutils/docutils > git am -3 > /tmp/17.patch Applying: Rename all .txt files to .rstApplying: Update > references to .txt filesUsing index info to reconstruct a base tree...M > docutils/test/test_utils/test__init__.py.git/rebase-apply/patch:7937: > trailing whitespace.# Any .html document with a corresponding .rst file is > regenerated error: patch failed: docutils/docs/ref/rst/history.rst:1error: > docutils/docs/ref/rst/history.rst: patch does not applyerror: Did you hand > edit your patch?It does not apply to blobs recorded in its index.Patch > failed at 0002 Update references to .txt fileshint: Use 'git am > --show-current-patch=diff' to see the failed patchWhen you have resolved > this problem, run "git am --continue".If you prefer to skip this patch, run > "git am --skip" instead.To restore the original branch and stop patching, > run "git am --abort". > ------------------------------ > > > *[patches:#187] <https://sourceforge.net/p/docutils/patches/187/> > https://sourceforge.net/p/docutils/patches/187/ > <https://sourceforge.net/p/docutils/patches/187/> Rename .txt files to .rst* > > *Status:* pending-remind > *Group:* None > *Created:* Wed Jan 05, 2022 05:51 PM UTC by Adam Turner > *Last Updated:* Fri Aug 09, 2024 05:12 AM UTC > *Owner:* Adam Turner > > This change is in two parts -- the first commit does the rename and the > second goes through and updates references to .txt files. All tests pass. > > The benefit of this change is primarily for people -- on user interfaces > with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code > mirrors, etc), the text is presented natively as reStructuredText, and > editor features can assist with e.g. autocompletion. > > Docutils itself of course does not care which file extension is used. > > I have not renamed any of the include files or template files in > docutils.parsers or docutils.writers, as they form part of the public API > and would need a deprecation cycle (or aliasing in the parsing code) > > A > > Please see https://github.com/AA-Turner/docutils/pull/3 and > https://github.com/AA-Turner/docutils/pull/3.patch for the commits and > patch. > ------------------------------ > > Sent from sourceforge.net because you indicated interest in > https://sourceforge.net/p/docutils/patches/187/ > > To unsubscribe from further messages, please visit > https://sourceforge.net/auth/subscriptions/ > > ------------------------------ > > *[patches:#187] <https://sourceforge.net/p/docutils/patches/187/> Rename > .txt files to .rst* > > *Status:* pending-remind > *Group:* None > *Created:* Wed Jan 05, 2022 05:51 PM UTC by Adam Turner > *Last Updated:* Fri Aug 09, 2024 09:35 AM UTC > *Owner:* Adam Turner > > This change is in two parts -- the first commit does the rename and the > second goes through and updates references to .txt files. All tests pass. > > The benefit of this change is primarily for people -- on user interfaces > with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code > mirrors, etc), the text is presented natively as reStructuredText, and > editor features can assist with e.g. autocompletion. > > Docutils itself of course does not care which file extension is used. > > I have not renamed any of the include files or template files in > docutils.parsers or docutils.writers, as they form part of the public API > and would need a deprecation cycle (or aliasing in the parsing code) > > A > > Please see https://github.com/AA-Turner/docutils/pull/3 and > https://github.com/AA-Turner/docutils/pull/3.patch for the commits and > patch. > ------------------------------ > > Sent from sourceforge.net because you indicated interest in > https://sourceforge.net/p/docutils/patches/187/ > > To unsubscribe from further messages, please visit > https://sourceforge.net/auth/subscriptions/ > --- **[patches:#187] Rename .txt files to .rst** **Status:** pending-remind **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Fri Aug 09, 2024 09:35 AM UTC **Owner:** Adam Turner This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: engelbert g. <gr...@us...> - 2024-08-13 11:12:54
|
i could apply the rename this week ... nag me On Tue, 13 Aug 2024 at 12:42, engelbert gruber < gr...@us...> wrote: > infrastructure docutils-update.local should prefer .rst but falls back on > .txt > > ./docs/user/Makefile.docutils-update > > has fixed filenames but is only one file > > > > On Sun, 11 Aug 2024 at 13:57, engelbert gruber < > gr...@us...> wrote: > >> sandbox/infrastructure/docutils-update.local errors will pop up when >> run , no problem to me >> >> On Fri, 9 Aug 2024 at 11:35, Günter Milde mi...@us... >> wrote: >> >> We would need to adapt background scripts, too. I am unsure whether the >> following changes correctly describe the behaviour after applying this >> patch : >> >> --- a/sandbox/infrastructure/docutils-update.local+++ >> b/sandbox/infrastructure/docutils-update.local@@ -14,10 +14,10 @@ # # >> ATTENTION #-# Any .html document with a corresponding .txt file is >> regenerated -# if the .txt has changed, but no new .html files will be >> generated.+# Any .html document with a corresponding .rst file is >> regenerated +# if the .rst has changed, but no new .html files will be >> generated. #-# * Funny thing: sf hides README.txt files.+# * Funny thing: >> sf hides README.rst files. # # ATTENTION >> >> I downloaded the patch set and tried to commit it to a local branch but >> failed: >> >> milde@heinz:/usr/local/src/docutils-git-svn/docutils/docutils > git am >> -3 /tmp/17.patch Applying: Rename all .txt files to .rstApplying: Update >> references to .txt filesUsing index info to reconstruct a base tree...M >> docutils/test/test_utils/test__init__.py.git/rebase-apply/patch:7937: >> trailing whitespace.# Any .html document with a corresponding .rst file is >> regenerated error: patch failed: docutils/docs/ref/rst/history.rst:1error: >> docutils/docs/ref/rst/history.rst: patch does not applyerror: Did you hand >> edit your patch?It does not apply to blobs recorded in its index.Patch >> failed at 0002 Update references to .txt fileshint: Use 'git am >> --show-current-patch=diff' to see the failed patchWhen you have resolved >> this problem, run "git am --continue".If you prefer to skip this patch, run >> "git am --skip" instead.To restore the original branch and stop patching, >> run "git am --abort". >> ------------------------------ >> >> >> *[patches:#187] <https://sourceforge.net/p/docutils/patches/187/> >> https://sourceforge.net/p/docutils/patches/187/ >> <https://sourceforge.net/p/docutils/patches/187/> Rename .txt files to .rst* >> >> *Status:* pending-remind >> *Group:* None >> *Created:* Wed Jan 05, 2022 05:51 PM UTC by Adam Turner >> *Last Updated:* Fri Aug 09, 2024 05:12 AM UTC >> *Owner:* Adam Turner >> >> This change is in two parts -- the first commit does the rename and the >> second goes through and updates references to .txt files. All tests pass. >> >> The benefit of this change is primarily for people -- on user interfaces >> with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code >> mirrors, etc), the text is presented natively as reStructuredText, and >> editor features can assist with e.g. autocompletion. >> >> Docutils itself of course does not care which file extension is used. >> >> I have not renamed any of the include files or template files in >> docutils.parsers or docutils.writers, as they form part of the public API >> and would need a deprecation cycle (or aliasing in the parsing code) >> >> A >> >> Please see https://github.com/AA-Turner/docutils/pull/3 and >> https://github.com/AA-Turner/docutils/pull/3.patch for the commits and >> patch. >> ------------------------------ >> >> Sent from sourceforge.net because you indicated interest in >> https://sourceforge.net/p/docutils/patches/187/ >> >> To unsubscribe from further messages, please visit >> https://sourceforge.net/auth/subscriptions/ >> >> ------------------------------ >> >> *[patches:#187] <https://sourceforge.net/p/docutils/patches/187/> Rename >> .txt files to .rst* >> >> *Status:* pending-remind >> *Group:* None >> *Created:* Wed Jan 05, 2022 05:51 PM UTC by Adam Turner >> *Last Updated:* Fri Aug 09, 2024 09:35 AM UTC >> *Owner:* Adam Turner >> >> This change is in two parts -- the first commit does the rename and the >> second goes through and updates references to .txt files. All tests pass. >> >> The benefit of this change is primarily for people -- on user interfaces >> with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code >> mirrors, etc), the text is presented natively as reStructuredText, and >> editor features can assist with e.g. autocompletion. >> >> Docutils itself of course does not care which file extension is used. >> >> I have not renamed any of the include files or template files in >> docutils.parsers or docutils.writers, as they form part of the public >> API and would need a deprecation cycle (or aliasing in the parsing code) >> >> A >> >> Please see https://github.com/AA-Turner/docutils/pull/3 and >> https://github.com/AA-Turner/docutils/pull/3.patch for the commits and >> patch. >> ------------------------------ >> >> Sent from sourceforge.net because you indicated interest in >> https://sourceforge.net/p/docutils/patches/187/ >> >> To unsubscribe from further messages, please visit >> https://sourceforge.net/auth/subscriptions/ >> > --- **[patches:#187] Rename .txt files to .rst** **Status:** pending-remind **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Fri Aug 09, 2024 09:35 AM UTC **Owner:** Adam Turner This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: engelbert g. <gr...@us...> - 2024-08-13 11:02:50
|
nut i would only apply on svn ... might be not what's wanted On Tue, 13 Aug 2024 at 12:43, engelbert gruber < gr...@us...> wrote: > i could apply the rename this week ... nag me > > On Tue, 13 Aug 2024 at 12:42, engelbert gruber < > gr...@us...> wrote: > >> infrastructure docutils-update.local should prefer .rst but falls back on >> .txt >> >> ./docs/user/Makefile.docutils-update >> >> has fixed filenames but is only one file >> >> >> >> On Sun, 11 Aug 2024 at 13:57, engelbert gruber < >> gr...@us...> wrote: >> >>> sandbox/infrastructure/docutils-update.local errors will pop up when >>> run , no problem to me >>> >>> On Fri, 9 Aug 2024 at 11:35, Günter Milde mi...@us... >>> wrote: >>> >>> We would need to adapt background scripts, too. I am unsure whether the >>> following changes correctly describe the behaviour after applying this >>> patch : >>> >>> --- a/sandbox/infrastructure/docutils-update.local+++ >>> b/sandbox/infrastructure/docutils-update.local@@ -14,10 +14,10 @@ # # >>> ATTENTION #-# Any .html document with a corresponding .txt file is >>> regenerated -# if the .txt has changed, but no new .html files will be >>> generated.+# Any .html document with a corresponding .rst file is >>> regenerated +# if the .rst has changed, but no new .html files will be >>> generated. #-# * Funny thing: sf hides README.txt files.+# * Funny thing: >>> sf hides README.rst files. # # ATTENTION >>> >>> I downloaded the patch set and tried to commit it to a local branch but >>> failed: >>> >>> milde@heinz:/usr/local/src/docutils-git-svn/docutils/docutils > git am >>> -3 /tmp/17.patch Applying: Rename all .txt files to .rstApplying: Update >>> references to .txt filesUsing index info to reconstruct a base tree...M >>> docutils/test/test_utils/test__init__.py.git/rebase-apply/patch:7937: >>> trailing whitespace.# Any .html document with a corresponding .rst file is >>> regenerated error: patch failed: docutils/docs/ref/rst/history.rst:1error: >>> docutils/docs/ref/rst/history.rst: patch does not applyerror: Did you hand >>> edit your patch?It does not apply to blobs recorded in its index.Patch >>> failed at 0002 Update references to .txt fileshint: Use 'git am >>> --show-current-patch=diff' to see the failed patchWhen you have resolved >>> this problem, run "git am --continue".If you prefer to skip this patch, run >>> "git am --skip" instead.To restore the original branch and stop patching, >>> run "git am --abort". >>> ------------------------------ >>> >>> >>> *[patches:#187] <https://sourceforge.net/p/docutils/patches/187/> >>> https://sourceforge.net/p/docutils/patches/187/ >>> <https://sourceforge.net/p/docutils/patches/187/> Rename .txt files to .rst* >>> >>> *Status:* pending-remind >>> *Group:* None >>> *Created:* Wed Jan 05, 2022 05:51 PM UTC by Adam Turner >>> *Last Updated:* Fri Aug 09, 2024 05:12 AM UTC >>> *Owner:* Adam Turner >>> >>> This change is in two parts -- the first commit does the rename and the >>> second goes through and updates references to .txt files. All tests pass. >>> >>> The benefit of this change is primarily for people -- on user interfaces >>> with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, >>> code >>> mirrors, etc), the text is presented natively as reStructuredText, and >>> editor features can assist with e.g. autocompletion. >>> >>> Docutils itself of course does not care which file extension is used. >>> >>> I have not renamed any of the include files or template files in >>> docutils.parsers or docutils.writers, as they form part of the public API >>> and would need a deprecation cycle (or aliasing in the parsing code) >>> >>> A >>> >>> Please see https://github.com/AA-Turner/docutils/pull/3 and >>> https://github.com/AA-Turner/docutils/pull/3.patch for the commits and >>> patch. >>> ------------------------------ >>> >>> Sent from sourceforge.net because you indicated interest in >>> https://sourceforge.net/p/docutils/patches/187/ >>> >>> To unsubscribe from further messages, please visit >>> https://sourceforge.net/auth/subscriptions/ >>> >>> ------------------------------ >>> >>> *[patches:#187] <https://sourceforge.net/p/docutils/patches/187/> Rename >>> .txt files to .rst* >>> >>> *Status:* pending-remind >>> *Group:* None >>> *Created:* Wed Jan 05, 2022 05:51 PM UTC by Adam Turner >>> *Last Updated:* Fri Aug 09, 2024 09:35 AM UTC >>> *Owner:* Adam Turner >>> >>> This change is in two parts -- the first commit does the rename and the >>> second goes through and updates references to .txt files. All tests pass. >>> >>> The benefit of this change is primarily for people -- on user interfaces >>> with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code >>> mirrors, etc), the text is presented natively as reStructuredText, and >>> editor features can assist with e.g. autocompletion. >>> >>> Docutils itself of course does not care which file extension is used. >>> >>> I have not renamed any of the include files or template files in >>> docutils.parsers or docutils.writers, as they form part of the public >>> API and would need a deprecation cycle (or aliasing in the parsing code) >>> >>> A >>> >>> Please see https://github.com/AA-Turner/docutils/pull/3 and >>> https://github.com/AA-Turner/docutils/pull/3.patch for the commits and >>> patch. >>> ------------------------------ >>> >>> Sent from sourceforge.net because you indicated interest in >>> https://sourceforge.net/p/docutils/patches/187/ >>> >>> To unsubscribe from further messages, please visit >>> https://sourceforge.net/auth/subscriptions/ >>> >> --- **[patches:#187] Rename .txt files to .rst** **Status:** pending-remind **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Fri Aug 09, 2024 09:35 AM UTC **Owner:** Adam Turner This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: engelbert g. <gr...@us...> - 2024-08-15 08:20:35
|
- **status**: pending-remind --> open-fixed - **Comment**: applied the patch --- **[patches:#187] Rename .txt files to .rst** **Status:** open-fixed **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Fri Aug 09, 2024 09:35 AM UTC **Owner:** Adam Turner This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |
From: Günter M. <mi...@us...> - 2025-07-30 09:30:08
|
- **status**: open-fixed --> closed-fixed - **Comment**: The issue is fixed in Docutils 0.22 released 2025-07-29. Thank you for the patch. --- **[patches:#187] Rename .txt files to .rst** **Status:** closed-fixed **Group:** None **Created:** Wed Jan 05, 2022 05:51 PM UTC by Adam Turner **Last Updated:** Thu Aug 15, 2024 08:20 AM UTC **Owner:** Adam Turner This change is in two parts -- the first commit does the rename and the second goes through and updates references to .txt files. All tests pass. The benefit of this change is primarily for people -- on user interfaces with syntax highlighting (e.g. IntelliJ / VSCode / Notepad++ editors, code mirrors, etc), the text is presented natively as reStructuredText, and editor features can assist with e.g. autocompletion. Docutils itself of course does not care which file extension is used. I have not renamed any of the include files or template files in `docutils.parsers` or `docutils.writers`, as they form part of the public API and would need a deprecation cycle (or aliasing in the parsing code) A Please see https://github.com/AA-Turner/docutils/pull/3 and https://github.com/AA-Turner/docutils/pull/3.patch for the commits and patch. --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/patches/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/patches/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |