Module: RuneBlog::REPL
- Defined in:
- lib/helpers-repl.rb,
lib/repl.rb
Overview
Reopening…
Constant Summary collapse
- Patterns =
{"help" => :cmd_help, "h" => :cmd_help, "version" => :cmd_version, "v" => :cmd_version, "list views" => :cmd_list_views, "lsv" => :cmd_list_views, "clear" => :cmd_clear, "new view $name" => :cmd_new_view, "tags" => :cmd_tags, "import" => :cmd_import, "new post" => :cmd_new_post, "p" => :cmd_new_post, "post" => :cmd_new_post, "change view $name" => :cmd_change_view, "cv $name" => :cmd_change_view, "cv" => :cmd_change_view, # 0-arity must come second "config" => :cmd_config, "list widgets" => :cmd_list_widgets, "lsw" => :cmd_list_widgets, "install $widget" => :cmd_install_widget, "enable $widget" => :cmd_enable_widget, "disable $widget" => :cmd_disable_widget, "update $widget" => :cmd_update_widget, "manage $widget" => :cmd_manage, "legacy" => :cmd_legacy, "list posts" => :cmd_list_posts, "lsp" => :cmd_list_posts, "list drafts" => :cmd_list_drafts, "lsd" => :cmd_list_drafts, "list assets" => :cmd_list_assets, "lsa" => :cmd_list_assets, "pages" => :cmd_pages, "delete >postid" => :cmd_remove_post, "undel $postid" => :cmd_undelete_post, "edit $postid" => :cmd_edit_post, "ed $postid" => :cmd_edit_post, "e $postid" => :cmd_edit_post, "preview" => :cmd_preview, "browse" => :cmd_browse, "rebuild" => :cmd_rebuild, "publish" => :cmd_publish, "ssh" => :cmd_ssh, "q" => :cmd_quit, "quit" => :cmd_quit }
- Abbr =
{ "h" => :cmd_help, "v" => :cmd_version, "lsv" => :cmd_list_views, "p" => :cmd_new_post, "cv $name" => :cmd_change_view, "cv" => :cmd_change_view, # 0-arity must come second "lsp" => :cmd_list_posts, "lsd" => :cmd_list_drafts, "list assets" => :cmd_list_assets, "lsa" => :cmd_list_assets, "rm $postid" => :cmd_remove_post, "ed $postid" => :cmd_edit_post, "e $postid" => :cmd_edit_post, "q" => :cmd_quit }
- Regexes =
{}
- Help =
<<-EOS {Basics:} {Views:} ------------------------------------------- ------------------------------------------- {h, help} This message {change view VIEW} Change current view {q, quit} Exit the program {cv VIEW} Change current view {v, version} Print version information {new view} Create a new view {clear} Clear screen {list views} List all views available {lsv} Same as: list views {Posts:} {Advanced:} ------------------------------------------- ------------------------------------------- {p, post} Create a new post {config} Edit various system files {new post} Same as p, post {lsp, list posts} List posts in current view {preview} Look at current (local) view in browser {lsd, list drafts} List all drafts (all views) {browse} Look at current (published) view in browser {delete ID [ID...]} Remove multiple posts {rebuild} Regenerate all posts and relink {undelete ID} Undelete a post {publish} Publish (current view) {edit ID} Edit a post {ssh} Login to remote server {import ASSETS} Import assets (images, etc.) {Widgets:} ------------------------------------------- {lsw, list widgets} List all known widgets {install WIDGET} Install a widget {enable WIDGET} Use widget in this view {disable WIDGET} Don't use in this view {update WIDGET} Update code (this view) {manage WIDGET} Manage content/layout EOS
Class Method Summary collapse
Instance Method Summary collapse
- #_manage_links ⇒ Object
-
#_manage_navbar ⇒ Object
cloned from manage_pages.
-
#_manage_pages ⇒ Object
FIXME move into widget code.
-
#_manage_pinned ⇒ Object
cloned from manage_links.
- #_remove_post(arg, testing = false) ⇒ Object
- #all_tags ⇒ Object
- #ask(prompt, meth = :to_s) ⇒ Object
- #ask!(prompt, meth = :to_s) ⇒ Object
- #check_file_exists(file) ⇒ Object
- #cmd_browse ⇒ Object
- #cmd_change_view(arg = nil) ⇒ Object
- #cmd_clear ⇒ Object
- #cmd_config ⇒ Object
- #cmd_disable_widget(arg) ⇒ Object
- #cmd_edit_post(arg) ⇒ Object
- #cmd_enable_widget(arg) ⇒ Object
- #cmd_help ⇒ Object
- #cmd_import ⇒ Object
- #cmd_install_widget(arg) ⇒ Object
- #cmd_INVALID(arg) ⇒ Object
- #cmd_legacy ⇒ Object
- #cmd_list_assets ⇒ Object
- #cmd_list_drafts ⇒ Object
- #cmd_list_posts ⇒ Object
- #cmd_list_views ⇒ Object
-
#cmd_list_widgets ⇒ Object
list widgets List all known widgets WIDGET Install a widget WIDGET Use widget in this view WIDGET Don’t use widget in this view WIDGET Update widget code (this view) WIDGET Manage widget content/layout.
- #cmd_manage(arg) ⇒ Object
- #cmd_new_post ⇒ Object
- #cmd_new_view(arg) ⇒ Object
- #cmd_new_view_ORIG(arg) ⇒ Object
- #cmd_preview ⇒ Object
- #cmd_publish ⇒ Object
- #cmd_quit ⇒ Object
- #cmd_rebuild ⇒ Object
- #cmd_remove_post(arg) ⇒ Object
- #cmd_ssh ⇒ Object
- #cmd_update_widget(arg) ⇒ Object
- #cmd_version ⇒ Object
- #edit_file(file, vim: "") ⇒ Object
- #error_cant_delete(files) ⇒ Object
- #fresh?(src, dst) ⇒ Boolean
- #get_integer(arg) ⇒ Object
-
#modify_view_global(view_name) ⇒ Object
move to helpers.
- #modify_view_settings(name:, title:, subtitle:, domain:) ⇒ Object
- #regen_posts ⇒ Object
- #tags_for_view(vname = @blog.view) ⇒ Object
-
#view2title(name) ⇒ Object
FIXME: crufty as hell.
Class Method Details
.choose_method(cmd) ⇒ Object
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
# File 'lib/helpers-repl.rb', line 103 def self.choose_method(cmd) cmd = cmd.strip found = nil params = nil Regexes.each_pair do |rx, meth| m = cmd.match(rx) result = m ? m.to_a : nil next unless result found = meth params = m[1] end meth = found || :cmd_INVALID params = cmd if meth == :cmd_INVALID result = [meth] result << params unless params.nil? result end |
Instance Method Details
#_manage_links ⇒ Object
116 117 118 119 120 |
# File 'lib/repl.rb', line 116 def _manage_links dir = @blog.view.dir/"widgets/links" data = dir/"list.data" edit_file(data) end |
#_manage_navbar ⇒ Object
cloned from manage_pages
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/repl.rb', line 87 def # cloned from manage_pages dir = @blog.view.dir/"themes/standard/banner/navbar" files = Dir.entries(dir) - %w[. .. navbar.lt3] main_file = "[ navbar.lt3 ]" new_item = " [New item] " files = [main_file] + files + [new_item] num, fname = STDSCR.(title: "Edit navbar:", items: files) return if fname.nil? case fname when new_item print "Page title: " title = RubyText.gets title.chomp! print "File name (.lt3): " fname = RubyText.gets fname << ".lt3" unless fname.end_with?(".lt3") new_file = dir/fname File.open(new_file, "w") do |f| f.puts "<h1>#{title}</h1>\n\n\n " f.puts ".backlink" end edit_file(new_file) when main_file edit_file(main_file[2..-3]) else edit_file(dir/fname) end end |
#_manage_pages ⇒ Object
FIXME move into widget code
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
# File 'lib/repl.rb', line 122 def _manage_pages # FIXME move into widget code dir = @blog.view.dir/"widgets/pages" # Assume child files already generated (and list.data??) data = dir/"list.data" lines = _get_data?(data) hash = {} lines.each do |line| url, name = line.chomp.split(",") source = url.sub(/.html$/, ".lt3") hash[name] = source end new_item = "[New page]" num, fname = STDSCR.(title: "Edit page:", items: hash.keys + [new_item]) return if fname.nil? if fname == new_item print "Page title: " title = RubyText.gets title.chomp! print "File name (.lt3): " fname = RubyText.gets fname << ".lt3" unless fname.end_with?(".lt3") fhtml = fname.sub(/.lt3$/, ".html") File.open(data, "a") {|f| f.puts "#{fhtml},#{title}" } new_file = dir/fname File.open(new_file, "w") do |f| f.puts "<h1>#{title}</h1>\n\n\n " f.puts ".backlink" end edit_file(new_file) else target = hash[fname] edit_file(dir/target) end end |
#_manage_pinned ⇒ Object
cloned from manage_links
81 82 83 84 85 |
# File 'lib/repl.rb', line 81 def _manage_pinned # cloned from manage_links dir = @blog.view.dir/"widgets/pinned" data = dir/"list.data" edit_file(data) end |
#_remove_post(arg, testing = false) ⇒ Object
339 340 341 342 343 |
# File 'lib/repl.rb', line 339 def _remove_post(arg, testing=false) id = get_integer(arg) result = @blog.remove_post(id) puts "Post #{id} not found" if result.nil? end |
#all_tags ⇒ Object
161 162 163 164 165 |
# File 'lib/helpers-repl.rb', line 161 def all = [] @blog.views.each {|view| all.append(*(view)) } all.sort + ["NEW TAG"] end |
#ask(prompt, meth = :to_s) ⇒ Object
121 122 123 124 |
# File 'lib/helpers-repl.rb', line 121 def ask(prompt, meth = :to_s) print prompt gets.chomp.send(meth) end |
#ask!(prompt, meth = :to_s) ⇒ Object
126 127 128 |
# File 'lib/helpers-repl.rb', line 126 def ask!(prompt, meth = :to_s) ask(fx(prompt, :bold), meth) end |
#check_file_exists(file) ⇒ Object
136 137 138 |
# File 'lib/helpers-repl.rb', line 136 def check_file_exists(file) raise FileNotFound(file) unless File.exist?(file) end |
#cmd_browse ⇒ Object
162 163 164 165 166 167 168 169 170 171 |
# File 'lib/repl.rb', line 162 def cmd_browse url = @blog.view.publisher.url if url.nil? puts "\n Publish first." return end result = system!("open '#{url}'") raise CantOpen(url) unless result return end |
#cmd_change_view(arg = nil) ⇒ Object
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
# File 'lib/repl.rb', line 246 def cmd_change_view(arg = nil) if arg.nil? viewnames = {} @blog.views.each do |v| name = v.to_s title = view2title(name) string = "#{'%-25s' % title} #{name}" viewnames[string] = name end n = viewnames.values.find_index(@blog.view.name) name = @blog.view.name k, name = STDSCR.(title: "Views", items: viewnames, curr: n, wrap: true) return if name.nil? @blog.view = name # puts "\n ", fx(name, :bold), "\n" return else if @blog.view?(arg) @blog.view = arg puts "\n ", fx(arg, :bold), "\n" end end end |
#cmd_clear ⇒ Object
32 33 34 35 36 |
# File 'lib/repl.rb', line 32 def cmd_clear STDSCR.rows.times { puts " "*(STDSCR.cols-1) } # sleep 0.1 STDSCR.clear end |
#cmd_config ⇒ Object
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/repl.rb', line 42 def cmd_config hash = {"Variables (General)" => "global.lt3", " View-specific" => "../../settings/view.txt", " Recent posts" => "../../settings/recent.txt", " Publishing" => "../../settings/publish.txt", "Configuration: enable/disable" => "../../settings/features.txt", " Reddit" => "../../config/reddit/credentials.txt", " Facebook" => "../../config/facebook/credentials.txt", " Twitter" => "../../config/twitter/credentials.txt", "View: generator" => "blog/generate.lt3", " HEAD info" => "blog/head.lt3", " Layout " => "blog/index.lt3", " Recent-posts entry" => "blog/post_entry.lt3", " Banner: Description" => "blog/banner.lt3", " Text portion" => "banner/top.lt3", "Generator for a post" => "post/generate.lt3", " HEAD info for post" => "post/head.lt3", " Content for post" => "post/index.lt3", "Global CSS" => "etc/blog.css.lt3", "External JS/CSS (Bootstrap, etc.)" => "/etc/externals.lt3" } dir = @blog.view.dir/"themes/standard/" STDERR.puts ">>> cmd_config: dir = #{dir.inspect}" num, target = STDSCR.(title: "Edit file:", items: hash) edit_file(dir/target) end |
#cmd_disable_widget(arg) ⇒ Object
519 520 521 522 |
# File 'lib/repl.rb', line 519 def (arg) write_features({arg.to_sym => "0"}, @blog.view) puts "\n Disabled #{arg}\n " end |
#cmd_edit_post(arg) ⇒ Object
354 355 356 357 358 359 360 361 362 363 364 365 |
# File 'lib/repl.rb', line 354 def cmd_edit_post(arg) id = get_integer(arg) # Simplify this tag = "#{'%04d' % id}" files = ::Find.find(@blog.root/:drafts).to_a files = files.grep(/#{tag}-.*lt3/) draft = exactly_one(files, files.join("/")) result = edit_file(draft, vim: '-c$') @blog.generate_post(draft) rescue => err _tmp_error(err) end |
#cmd_enable_widget(arg) ⇒ Object
514 515 516 517 |
# File 'lib/repl.rb', line 514 def (arg) write_features({arg.to_sym => "1"}, @blog.view) puts "\n Enabled #{arg}\n " end |
#cmd_help ⇒ Object
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 |
# File 'lib/repl.rb', line 564 def cmd_help msg = Help msg.each_line do |line| e = line.each_char first = true loop do s1 = "" c = e.next if c == "{" s2 = first ? "" : " " first = false loop do c = e.next break if c == "}" s2 << c end print fx(s2, :bold) s2 = "" else s1 << c end print s1 end end puts end |
#cmd_import ⇒ Object
157 158 159 160 |
# File 'lib/repl.rb', line 157 def cmd_import files = ask("\n File(s) = ") system!("cp #{files} #{@blog.root}/views/#{@blog.view.name}/assets/") end |
#cmd_install_widget(arg) ⇒ Object
509 510 511 512 |
# File 'lib/repl.rb', line 509 def (arg) # install a widget (view? global?) puts "\n STUB: #{__method__}\n " end |
#cmd_INVALID(arg) ⇒ Object
455 456 457 458 459 |
# File 'lib/repl.rb', line 455 def cmd_INVALID(arg) print fx("\n Command ", :bold) print fx(arg, Red, :bold) puts fx(" was not understood.\n ", :bold) end |
#cmd_legacy ⇒ Object
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 |
# File 'lib/repl.rb', line 461 def cmd_legacy dir = "sources/computing" puts "Importing from: #{dir}" files = Dir[dir/"**"] files.each do |fname| name = fname cmd = "grep ^.title #{name}" grep = `#{cmd}` # find .title @title = grep.sub(/^.title /, "") num = `grep ^.post #{name}`.sub(/^.post /, "").to_i seq = @blog.get_sequence tnum = File.basename(fname).to_i raise "num != seq + 1" if num != seq + 1 raise "num != tnum" if num != tnum seq = @blog.next_sequence raise "num != seq" if num != seq label = '%04d' % num slug0 = @title.downcase.strip.gsub(' ', '-').gsub(/[^\w-]/, '') @slug = "#{label}-#{slug0}" @fname = @slug + ".lt3" cmd = "cp #{name} #{@blog.root}/drafts/#@fname" result = system!(cmd) raise CantCopy(name, "#{@blog.root}/drafts/#@fname") unless result draft = "#{@blog.root}/drafts/#@fname" @meta = @blog.generate_post(draft) puts sleep 2 end rescue => err error(err) end |
#cmd_list_assets ⇒ Object
432 433 434 435 436 437 438 439 440 441 442 443 444 445 |
# File 'lib/repl.rb', line 432 def cmd_list_assets dir = @blog.view.dir + "/assets" assets = Dir[dir + "/*"] if assets.empty? puts " No assets" return end puts assets.each do |name| asset = File.basename(name) puts " ", fx(asset, Blue) end puts end |
#cmd_list_drafts ⇒ Object
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 |
# File 'lib/repl.rb', line 413 def cmd_list_drafts curr_drafts = @blog.drafts # current view if curr_drafts.empty? puts "\n No drafts\n " return end puts curr_drafts.each do |draft| base = draft.sub(/.lt3$/, "") dir = @blog.root/:posts/base = nil Dir.chdir(dir) { = @blog. } num, title = .num, .title num = '%4d' % num.to_s puts " ", fx(num, Red), " ", fx(title, Black) end puts end |
#cmd_list_posts ⇒ Object
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 |
# File 'lib/repl.rb', line 387 def cmd_list_posts posts = @blog.posts # current view str = @blog.view.name + ":\n" puts if posts.empty? puts " No posts" else posts.each do |post| base = post.sub(/.lt3$/, "") dir = @blog.root/:posts/base = nil Dir.chdir(dir) { = @blog. } num, title = .num, .title num = '%4d' % num.to_s puts " ", fx(num, Red), " ", fx(title, Black) draft = @blog.root/:drafts/post + ".lt3" other = .views - [@blog.view.to_s] unless other.empty? print fx(" "*9 + "also in: ", :bold) puts other.join(", ") end end end puts end |
#cmd_list_views ⇒ Object
374 375 376 377 378 379 380 381 382 383 384 385 |
# File 'lib/repl.rb', line 374 def cmd_list_views puts list = @blog.views list.each do |v| v = v.to_s title = view2title(v) v = fx(v, :bold) if v == @blog.view.name print " ", ('%15s' % v) puts " ", fx(title, Black) end puts end |
#cmd_list_widgets ⇒ Object
list widgets List all known widgets
{install WIDGET} Install a widget
{enable WIDGET} Use widget in this view
{disable WIDGET} Don't use widget in this view
{update WIDGET} Update widget code (this view)
{manage WIDGET} Manage widget content/layout
504 505 506 507 |
# File 'lib/repl.rb', line 504 def # find/list all available widgets puts "\n STUB: #{__method__}\n " end |
#cmd_manage(arg) ⇒ Object
70 71 72 73 74 75 76 77 78 79 |
# File 'lib/repl.rb', line 70 def cmd_manage(arg) case arg when "pages"; _manage_pages when "links"; _manage_links when "navbar"; when "pinned"; _manage_pinned # ditch this?? else puts "#{arg} is unknown" end end |
#cmd_new_post ⇒ Object
327 328 329 330 331 332 333 334 335 336 337 |
# File 'lib/repl.rb', line 327 def cmd_new_post if @blog.views.empty? puts "\n Create a view before creating the first post!\n " return end title = ask("\nTitle: ") puts @blog.create_new_post(title) rescue => err _tmp_error(err) end |
#cmd_new_view(arg) ⇒ Object
295 296 297 298 299 300 301 302 303 304 305 |
# File 'lib/repl.rb', line 295 def cmd_new_view(arg) view_name = ask!(" Filename: ") @blog.create_view(view_name) # call change_view?? title = ask!(" View title: ") subtitle = ask!(" Subtitle : ") domain = ask!(" Domain : ") modify_view_global(view_name) modify_view_settings(name: view_name, title: title, subtitle: subtitle, domain: domain) @blog.change_view(view_name) end |
#cmd_new_view_ORIG(arg) ⇒ Object
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 |
# File 'lib/repl.rb', line 307 def cmd_new_view_ORIG(arg) if arg.nil? arg = ask(fx("\nFilename: ", :bold)) puts end @blog.create_view(arg) lines = File.read("#{@blog.root}/data/global.lt3") # File.write("#{@blog.root}/views/#{@blog.view}/themes/standard/global.lt3", File.write("#{@blog.root}/views/#{@blog.view}/data/global.lt3", text.gsub(/VIEW_NAME/, @blog.view.to_s)) vim_params = '-c ":set hlsearch" -c ":hi Search ctermfg=2 ctermbg=6" +/"\(VIEW_.*\|SITE.*\)"' # edit_file(@blog.view.dir/"themes/standard/global.lt3", vim: vim_params) edit_file(@blog.view.dir/"data/global.lt3", vim: vim_params) @blog.change_view(arg) rescue ViewAlreadyExists puts 'Blog already exists' rescue => err _tmp_error(err) end |
#cmd_preview ⇒ Object
173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'lib/repl.rb', line 173 def cmd_preview local = @blog.view.local_index unless File.exist?(local) puts "\n No index. Rebuilding..." cmd_rebuild end result = system!("open #{local}") raise CantOpen(local) unless result rescue => err msg = err.to_s msg << "\n" << err.backtrace.join("\n") if err.respond_to?(:backtrace) puts msg log!(str: msg) end |
#cmd_publish ⇒ Object
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
# File 'lib/repl.rb', line 188 def cmd_publish puts unless @blog.view.can_publish? msg = "Can't publish... see global.lt3" puts msg return end ret = RubyText.spinner(label: " Publishing... ") do @blog.view.publisher.publish end return unless ret vdir = @blog.view.dir dump("fix this later", "#{vdir}/last_published") puts " ...finished.\n " unless ret rescue => err _tmp_error(err) end |
#cmd_quit ⇒ Object
22 23 24 25 26 27 28 29 30 |
# File 'lib/repl.rb', line 22 def cmd_quit STDSCR.rows.times { puts " "*(STDSCR.cols-1) } STDSCR.clear sleep 0.1 RubyText.stop sleep 0.1 system("clear") exit end |
#cmd_rebuild ⇒ Object
233 234 235 236 237 238 239 240 241 242 243 244 |
# File 'lib/repl.rb', line 233 def cmd_rebuild log! str: "=== Starting cmd_rebuild..." puts regen_posts log! str: "=== Generating view..." @blog.generate_view(@blog.view) log! str: "=== Generating index..." @blog.generate_index(@blog.view) log! str: "=== ...finished!" rescue => err _tmp_error(err) end |
#cmd_remove_post(arg) ⇒ Object
345 346 347 348 349 350 351 352 |
# File 'lib/repl.rb', line 345 def cmd_remove_post(arg) args = arg.split args.each do |x| # FIXME ret = _remove_post(x.to_i, false) puts ret end end |
#cmd_ssh ⇒ Object
447 448 449 450 451 452 453 |
# File 'lib/repl.rb', line 447 def cmd_ssh pub = @blog.view.publisher puts system!("tputs clear; ssh #{pub.user}@#{pub.server}") sleep 0.1 cmd_clear end |
#cmd_update_widget(arg) ⇒ Object
524 525 526 527 |
# File 'lib/repl.rb', line 524 def (arg) # update widget code puts "\n STUB: #{__method__}\n " end |
#cmd_version ⇒ Object
38 39 40 |
# File 'lib/repl.rb', line 38 def cmd_version puts fx("\n RuneBlog", :bold), fx(" v #{RuneBlog::VERSION}\n", Red) end |
#edit_file(file, vim: "") ⇒ Object
13 14 15 16 17 18 19 20 |
# File 'lib/repl.rb', line 13 def edit_file(file, vim: "") ed = @blog.editor params = vim if ed =~ /vim$/ cmd = "#{@blog.editor} #{file} #{params}" result = system!(cmd) raise EditorProblem(file) unless result cmd_clear end |
#error_cant_delete(files) ⇒ Object
140 141 142 143 144 145 146 147 |
# File 'lib/helpers-repl.rb', line 140 def error_cant_delete(files) case files when String raise CantDelete(files) when Array raise CantDelete(files.join("\n")) end end |
#fresh?(src, dst) ⇒ Boolean
208 209 210 211 |
# File 'lib/repl.rb', line 208 def fresh?(src, dst) return false unless File.exist?(dst) File.mtime(src) <= File.mtime(dst) end |
#get_integer(arg) ⇒ Object
130 131 132 133 134 |
# File 'lib/helpers-repl.rb', line 130 def get_integer(arg) Integer(arg) rescue raise ArgumentError, "'#{arg}' is not an integer" end |
#modify_view_global(view_name) ⇒ Object
move to helpers
271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
# File 'lib/repl.rb', line 271 def modify_view_global(view_name) gfile = "#{@blog.root}/views/#{view_name}/data/global.lt3" lines = File.readlines(gfile).map(&:chomp) vars = <<~EOF .variables View #{view_name} ViewDir #{@blog.root}/views/#{view_name} .end EOF # lines.insert(5, vars) text = lines.join("\n") File.write(gfile, text) end |
#modify_view_settings(name:, title:, subtitle:, domain:) ⇒ Object
286 287 288 289 290 291 292 293 |
# File 'lib/repl.rb', line 286 def modify_view_settings(name:, title:, subtitle:, domain:) vfile = "#{@blog.root}/views/#{name}/settings/view.txt" hash = {/VIEW_NAME/ => name, /VIEW_TITLE/ => title, /VIEW_SUBTITLE/ => subtitle, /VIEW_DOMAIN/ => domain} @blog.complete_file(vfile, nil, hash) end |
#regen_posts ⇒ Object
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
# File 'lib/repl.rb', line 213 def regen_posts drafts = @blog.drafts # current view log! str: "=== Regenerating posts..." unless drafts.empty? drafts.each do |draft| orig = @blog.root/:drafts/draft postdir = @blog.root/:posts/draft.sub(/.lt3$/, "") content = postdir/"/guts.html" next if fresh?(orig, content) log! str: "=== Calling generate_post(#{orig})" @blog.generate_post(orig) # rebuild post Dir.chdir(postdir) do = @blog. num, title = .num, .title num = '%4d' % num.to_s puts " ", fx(num, Red), " ", fx(title, Black) end end end |
#tags_for_view(vname = @blog.view) ⇒ Object
149 150 151 152 153 154 155 156 157 158 159 |
# File 'lib/helpers-repl.rb', line 149 def (vname = @blog.view) Dir.chdir(vname) do fname = "tagpool" if File.exist?(fname) = File.readlines(fname).map(&:chomp) else = [] end end .sort end |
#view2title(name) ⇒ Object
FIXME: crufty as hell
367 368 369 370 371 372 |
# File 'lib/repl.rb', line 367 def view2title(name) # FIXME: crufty as hell lines = File.readlines(@blog.root/"views/#{name}/settings/view.txt") lines.map!(&:chomp) lines = lines.select {|x| x =~ /^title / && x !~ /VIEW_/ } title = lines.first.split(" ", 2)[1] end |