[PR #1628] [MERGED] [FEAT] Add encoding module in lib_ccxr #2337

Open
opened 2026-01-29 17:21:36 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/CCExtractor/ccextractor/pull/1628
Author: @IshanGrover2004
Created: 7/18/2024
Status: Merged
Merged: 8/10/2024
Merged by: @PunitLodha

Base: masterHead: migration-encoding-module


📝 Commits (4)

  • 898630c feat: Add new module encoding
  • 2abdc56 feat: Add code for encoding.rs
  • 9c48a88 feat: Add code for function line21_to_utf8
  • e6d6365 feat: Add code for remaining todos function

📊 Changes

2 files changed (+1010 additions, -0 deletions)

View changed files

src/rust/lib_ccxr/src/util/encoding.rs (+1009 -0)
📝 src/rust/lib_ccxr/src/util/mod.rs (+1 -0)

📄 Description

In raising this pull request, I confirm the following (please check boxes):

  • I have read and understood the contributors guide.
  • I have checked that another pull request for this purpose does not exist.
  • I have considered, and confirmed that this submission will be valuable to others.
  • I accept that this submission may not be used, and the pull request closed at the will of the maintainer.
  • I give this submission freely, and claim no ownership to its content.
  • I have mentioned this change in the changelog.

My familiarity with the project is as follows (check one):

  • I have never used CCExtractor.
  • I have used CCExtractor just a couple of times.
  • I absolutely love CCExtractor, but have not contributed previously.
  • I am an active contributor to CCExtractor.

Closes #1554

Added a module in lib_ccxr for working with different kinds of text encoding formats.
This PR adds types used for representing Strings encoded in a certain format like Line 21 or UCS-2 and the ability to interconvert between them.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/CCExtractor/ccextractor/pull/1628 **Author:** [@IshanGrover2004](https://github.com/IshanGrover2004) **Created:** 7/18/2024 **Status:** ✅ Merged **Merged:** 8/10/2024 **Merged by:** [@PunitLodha](https://github.com/PunitLodha) **Base:** `master` ← **Head:** `migration-encoding-module` --- ### 📝 Commits (4) - [`898630c`](https://github.com/CCExtractor/ccextractor/commit/898630ce5c88a2530b50d264039354cfcde4c66f) feat: Add new module `encoding` - [`2abdc56`](https://github.com/CCExtractor/ccextractor/commit/2abdc56ea726009f5976f6456ba2c610365b5649) feat: Add code for `encoding.rs` - [`9c48a88`](https://github.com/CCExtractor/ccextractor/commit/9c48a886455b42aa2792685de291a69569043a19) feat: Add code for function `line21_to_utf8` - [`e6d6365`](https://github.com/CCExtractor/ccextractor/commit/e6d6365b20343e7a5b6b8404d306676317493e2f) feat: Add code for remaining todos function ### 📊 Changes **2 files changed** (+1010 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `src/rust/lib_ccxr/src/util/encoding.rs` (+1009 -0) 📝 `src/rust/lib_ccxr/src/util/mod.rs` (+1 -0) </details> ### 📄 Description **In raising this pull request, I confirm the following (please check boxes):** - [x] I have read and understood the [contributors guide](https://github.com/CCExtractor/ccextractor/blob/master/.github/CONTRIBUTING.md). - [x] I have checked that another pull request for this purpose does not exist. - [x] I have considered, and confirmed that this submission will be valuable to others. - [x] I accept that this submission may not be used, and the pull request closed at the will of the maintainer. - [x] I give this submission freely, and claim no ownership to its content. - [x] **I have mentioned this change in the [changelog](https://github.com/CCExtractor/ccextractor/blob/master/docs/CHANGES.TXT).** **My familiarity with the project is as follows (check one):** - [ ] I have never used CCExtractor. - [ ] I have used CCExtractor just a couple of times. - [ ] I absolutely love CCExtractor, but have not contributed previously. - [x] I am an active contributor to CCExtractor. --- Closes #1554 Added a module in `lib_ccxr` for working with different kinds of text encoding formats. This PR adds types used for representing Strings encoded in a certain format like Line 21 or UCS-2 and the ability to interconvert between them. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 17:21:36 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ccextractor#2337