আমি আমার init স্ক্রিপ্টে লগ ইন ফাংশনটি সংজ্ঞায়িত করতে চাই, তবে আমি আমার লগইন শংসাপত্রগুলিকে হার্ডকোড করতে চাই না। আমি মনে করি যে কোনও স্থানীয় ফাইল থেকে আমার লগইন শংসাপত্রগুলিতে আমার init স্ক্রিপ্টটি পড়া এবং এই মানগুলিকে ভেরিয়েবল হিসাবে সংরক্ষণ করা ভাল কাজ work এইভাবে, আমি আমার গিট ইনডেক্স থেকে ফাইলটি বাদ দিতে পারি, যা আমার লগইন শংসাপত্রগুলিকে সুরক্ষিত রাখে।
এই পদ্ধতির বিষয়ে কোনও পরামর্শ, বা কোনও ফাইলে সংজ্ঞায়িত কোনও মানকে যুক্তি নির্ধারণের উপায় রয়েছে কি?
উদাহরণস্বরূপ, আমি আমার মধ্যে নিম্নলিখিতটি ব্যবহার করতে চাই init.el
:
;; Set up our login variables here:
(setq file-location "~/.emacs.d/.login")
(setq erc-username "default-name")
(setq erc-password "default-password")
(setq erc-url "default-url")
(setq erc-port "default-port")
(defun read-lines (filePath)
"Return a list of lines of a file at filePath."
(with-temp-buffer
(insert-file-contents filePath)
(split-string (buffer-string) "\n" t)))
(if (file-exists-p file-location)
(progn (setq login-credentials (read-lines file-location))
(setq erc-username (nth 0 login-credentials))
(setq erc-password (nth 1 login-credentials))
(setq erc-url (nth 2 login-credentials))
(setq erc-port (nth 3 login-credentials)))
(message "No ERC login credentials provided. Please add login credentials as '<username>\n<password>\n<url>\n<port>' in ~/.emacs.d/.login to activate ERC mode."))
;; These message the values from my file correctly.
;; Everything up to this point works as expected
(message erc-username)
(message erc-password)
(message erc-url)
(message erc-port)
;; Use our login variables here
;; This doesn't work because the 'quote' function prevents evaluation of my variables, and a 'backquote' did not resolve it either
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(markdown-command "/usr/bin/pandoc")
'(tls-program (quote ("openssl s_client -connect %h:%p -no_ssl2 -ign_eof -CAfile ~/.ssl/spi_ca.pem -cert ~/.ssl/znc.pem")))
'(znc-servers (quote ((,erc-url ,erc-port t ((irc\.freenode\.net ,erc-username ,erc-password)))))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
নোট করুন যে আমার উদাহরণটি এখানেznc.el
মডিউলটি ব্যবহার করে । আমি গিয়ে Emacs configs ফলে স্বতঃজেনারেট কোড পরিবর্তন করছি এবং ।M-x customize-group RET znc RET
M-x customize-variable RET tls-program RET
উপরের কোডটি সহ আমার সমস্যাটি হল ভেরিয়েবলগুলি আমার custom-set-variables
ফাংশনের উপরে লোড হচ্ছে না । কোনও ফাইল থেকে যথাযথ মানগুলি লোড করা ঠিকঠাক বলে মনে হচ্ছে, তবে আমি এগুলি যুক্তি হিসাবে ব্যবহার করতে পারি না। আমি বিশ্বাস করি এটি quote
ফাংশনের সাথে সম্পর্কিত , যা এর বিষয়বস্তুগুলির মূল্যায়ন রোধ করে। আমি ,
মূল্যায়নের জোর করার জন্য একটি 'ব্যাককোট' ( ) চেষ্টা করেছি , তবে এটিও কার্যকর হয় না। এই বাগটি ঠিক করতে বা অন্য কোনও পদ্ধতির প্রস্তাব দেওয়ার জন্য কোনও পরামর্শ খুব সহায়ক হবে।