Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • athena athena
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Locked Files
  • Jira
    • Jira
  • Merge requests 147
    • Merge requests 147
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Releases
  • Packages and registries
    • Packages and registries
    • Container Registry
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Code review
    • Repository
  • Activity
  • Graph
  • Jobs
  • Commits
Collapse sidebar
  • atlasatlas
  • athenaathena
  • Merge requests
  • !34724

Remove non-ascii characters from codes. Mostly comments are affected.

  • Review changes

  • Download
  • Email patches
  • Plain diff
Closed Andrii Verbytskyi requested to merge averbyts/athena:remove_non_ascii into master Jul 14, 2020
  • Overview 120
  • Commits 14
  • Pipelines 11
  • Changes 38

This is a general cleanup MR.

In this MR the non-acsii charactes are removed from the *.cxx, *.h and *.f files.

The search fro files with non-ascii (almost) characters was performed with:

find       . -type f  -not -path "./.git/*"  -name "*.h"    -exec  grep  -lP '[^\0-\x7f]'   {} \;
  • Most of the replaced characters are in comments and originate from a copy-pasted documentation (e.g. from PDF files).
  • Some are just math symbols greek letters/umlauts/ characters with grave/acute accents, etc.
  • Some charactes are "special empty spaces" or quotes.
  • Virtually all the occurances are in the comments. Some exceptions are attempts to cout:: greek letters.

The author names with umlauts/grave/acute accents were left "as is".

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: remove_non_ascii