CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 23 Jul 2025 08:56:42 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100506075015
location: https://web.archive.org/web/20100506075015/https://github.com/jsmits/github-cli/issues
server-timing: captures_list;dur=0.782317, exclusion.robots;dur=0.037972, exclusion.robots.policy;dur=0.015451, esindex;dur=0.020128, cdx.remote;dur=43.225683, LoadShardBlock;dur=248.868482, PetaboxLoader3.datanode;dur=52.182401, PetaboxLoader3.resolve;dur=100.085333
x-app-server: wwwb-app210
x-ts: 302
x-tr: 324
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app210; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Wed, 23 Jul 2025 08:56:43 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Thu, 06 May 2010 07:50:13 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "fe2da7abc4f2a6393ffa74f486fa08d6"
x-archive-orig-x-runtime: 175ms
x-archive-orig-content-length: 38960
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 06 May 2010 07:50:15 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Thu, 06 May 2010 07:50:15 GMT", ; rel="memento"; datetime="Thu, 06 May 2010 07:50:15 GMT", ; rel="next memento"; datetime="Mon, 07 Dec 2020 19:45:37 GMT", ; rel="last memento"; datetime="Mon, 07 Dec 2020 19:45:37 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_15_20100506054821_crawl103-c/52_15_20100506074855_crawl101.arc.gz
server-timing: captures_list;dur=0.632750, exclusion.robots;dur=0.022905, exclusion.robots.policy;dur=0.010267, esindex;dur=0.011912, cdx.remote;dur=25.610162, LoadShardBlock;dur=113.801181, PetaboxLoader3.datanode;dur=136.603551, PetaboxLoader3.resolve;dur=109.128321, load_resource;dur=151.650054
x-app-server: wwwb-app210
x-ts: 200
x-tr: 353
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
Issues - jsmits/github-cli - GitHub
jsmits / github-cli
- Source
- Commits
- Network (4)
- Issues (3)
- Downloads (4)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
Sort By:
Priority
Priority
|
Votes
Votes
|
Last Updated
Last Updated
Loading…
-
First run for repo with issues with russian chars (например вот так) process error:
error: 'ascii' codec can't encode characters in position 7-17: ordinal not in range(128)
Comments
-
create sample configs
adjust code to make it testable against the sample configs
Comments
Please log in to comment. -
convert date strings from
created_at
andupdated_at
to local datetime instancesComments
Please log in to comment.
I will look into it. Could you show the issue (here) or paste it somewhere? That way it will be easier for me to test it.
add some to this issue
плюс сюда
Thanks. It should be fixed now, see here
Could you try it out?
easy_install --upgrade github-cli
/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/Pyrex/Compiler/Errors.py:17: DeprecationWarning: BaseException.message has been deprecated as of Python 2.6 self.message = message Searching for github-cli
Reading https://pypi.python.org/simple/github-cli/
Reading https://github.com/jsmits/github-cli
Reading https://packages.python.org/github-cli
Reading https://jsmits.github.com/github-cli
Best match: github-cli 0.2.8
Processing github_cli-0.2.8-py2.6.egg
github-cli 0.2.8 is already the active version in easy-install.pth
Installing ghi script to /usr/local/bin
Using /Library/Python/2.6/site-packages/github_cli-0.2.8-py2.6.egg
Processing dependencies for github-cli
Finished processing dependencies for github-cli
and after that:
ghi -V ghi 0.2.8
Please try again. It should install now as version 0.2.9 with the updated code.
cool, looks working now
i don't know is it related to strings encoding, but some issues in
ghi list
is truncated:example:
ghi -r veged/shmakowiki # open issues on veged/shmakowiki
compare with issue #2 in full view:
You're right. List view is truncated, on purpose, to keep one issue per line. Maximum length is 79 for titles in list view. Unfortunately, russian characters are encoded by 2 bytes instead of 1. So, for example, the length of the
2. Текст внутри элемента списка после влож
bytestring is 76, while the actual displayed length is only 42. I'm not sure how to fix this, but I'll look into it.maybe possible truncate by "chars", not by "bytes"...