{"commit":"d5daba6eca89e39288c90e7df7fb9a31cb6985f1","old_file":"glob.arc","new_file":"glob.arc","old_contents":"\n(seval '(require file\/glob))\n\n(def glob (pat)\n (each path (seval!glob pat #:capture-dotfiles? #t)\n (let path (seval!path->string path)\n (if (dir-exists path)\n (out (+ path \"\/\"))\n (out path)))))\n","new_contents":"(seval '(require file\/glob))\n\n(seval '(xdef cwd cwd))\n\n(def glob (pat (o root (cwd)))\n (each path (seval!glob pat #:capture-dotfiles? #t)\n (aand (seval!path->string path)\n (if (dir-exists it) (+ it \"\/\") it)\n (if (seval!string-prefix? it root)\n (cut it (len root))\n it)\n (out it))))\n\n","subject":"Update GLOB to remove the cwd from each result","message":"Update GLOB to remove the cwd from each result\n","lang":"Arc","license":"mit","repos":"laarc\/laarc,laarc\/laarc,laarc\/laarc,laarc\/laarc"} {"commit":"61c0b4c697364d2946a13b10cfeba880200b74fc","old_file":"extras\/arcfn-docs\/generate.arc","new_file":"extras\/arcfn-docs\/generate.arc","old_contents":"(system \"rm -rf html\")\n(ensure-dir \"html\")\n(load \"template.arc\")\n(runall)\n\n;; fails with \"Expected tests\" error\n;; (run \"foundation-doc.tem\")\n(system \"cp foundation-doc.html html\/\")\n\n(system \"rm -rf output\")\n(ensure-dir \"output\")\n(system \"cp docs\/* html\/* output\/\")\n","new_contents":"(declare 'atstrings nil)\n\n(system \"rm -rf html\")\n(ensure-dir \"html\")\n(load \"template.arc\")\n(runall)\n\n;; fails with \"Expected tests\" error\n;; (run \"foundation-doc.tem\")\n(system \"cp foundation-doc.html html\/\")\n\n(system \"rm -rf output\")\n(ensure-dir \"output\")\n(system \"cp docs\/* html\/* output\/\")\n","subject":"Disable atstrings when generating arcfn docs.","message":"Disable atstrings when generating arcfn docs.\n\nMaybe need to re-enable it when we add docs about atstrings. Currently\njust disable it to make generate.arc works.\n","lang":"Arc","license":"mit","repos":"LaxWorks\/news,LaxWorks\/news,LaxWorks\/news,LaxWorks\/news"}