Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GitLab API Experiments
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Karl Fogel
GitLab API Experiments
Commits
bb8784f2
Commit
bb8784f2
authored
1 month ago
by
Karl Fogel
Browse files
Options
Downloads
Patches
Plain Diff
Start writing Elisp
parent
29869e41
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test.el
+19
-0
19 additions, 0 deletions
test.el
with
19 additions
and
0 deletions
test.el
0 → 100644
+
19
−
0
View file @
bb8784f2
(
defun
file-as-string
(
file
&optional
coding
)
"Return FILE's contents as a multibyte string.
Decode from the text using CODING (default: `utf-8')."
;; Inspired by `f-read-bytes' from https://github.com/rejeep/f.el
(
let
((
bytes
(
with-temp-buffer
(
set-buffer-multibyte
nil
)
(
setq
buffer-file-coding-system
'binary
)
(
insert-file-contents-literally
file
)
(
buffer-substring-no-properties
(
point-min
)
(
point-max
)))))
(
decode-coding-string
bytes
(
or
coding
'utf-8
))))
;; Just prove we can parse JSON in Emacs. That's enough for now.
(
let*
((
json
(
file-as-string
"out.tmp"
))
(
issue
(
json-parse-string
json
))
(
id
(
gethash
"iid"
issue
))
(
title
(
gethash
"title"
issue
))
(
desc
(
gethash
"description"
issue
))
(
status
(
gethash
"state"
issue
)))
(
message
"Issue #%d: \"%s\""
id
title
))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment