Skip to content
Snippets Groups Projects
  1. May 08, 2015
  2. May 01, 2015
    • Raniere Silva's avatar
      Fix check of glossary item · 45dbfcdc
      Raniere Silva authored
      CommonMark doesn't support definition list
      and we have to workaround this limitation.
      
      This commit removes the request
      that line continuation start with four white spaces
      because (1) CommonMark remove the white spaces and
      (2) Pandoc doesn't care about it.
      
          $ pandoc <<EOF
          foo
          :   bar
              continue
          EOF
          <dl>
          <dt>foo</dt>
          <dd>bar continue
          </dd>
          </dl>
          $ pandoc <<EOF
          foo
          :   bar
          continue
          EOF
          <dl>
          <dt>foo</dt>
          <dd>bar continue
          </dd>
          </dl>
      45dbfcdc
  3. Apr 10, 2015
  4. Apr 07, 2015
  5. Mar 19, 2015
  6. Mar 04, 2015
  7. Feb 12, 2015
  8. Feb 10, 2015
  9. Feb 07, 2015
  10. Feb 05, 2015
  11. Jan 31, 2015
    • Andy Boughton's avatar
      Add validation for callout boxes · 6cd77e30
      Andy Boughton authored
      Implement template-specific callout rules. Add tests and fix bugs revealed.
      
      Narrow def of callout: block must have heading.
      
      Simplify way that callout counts are tracked, improve log messages, and add further unit tests of callout validation.
      
      Ensure that callout validation is actually run
      6cd77e30
  12. Jan 22, 2015
  13. Jan 19, 2015
  14. Jan 07, 2015
  15. Jan 06, 2015
  16. Jan 04, 2015
  17. Jan 03, 2015
  18. Dec 21, 2014
  19. Dec 19, 2014
  20. Dec 14, 2014
  21. Dec 13, 2014
  22. Dec 10, 2014
  23. Dec 05, 2014
    • Andy Boughton's avatar
      Initial commit of template validator skeleton (from local repo) · 0d5c61e0
      Andy Boughton authored
      Add validation methods and refactor ast helpers to separate class
      
      Add tiny logging message; prep for first push to github fork
      
      Start adding tests
      
      Fix errors revealed by unit tests
      
      Update validator to check heading order; tests passing
      
      Validation of links and changes to heading validation
      
      Tiny comment cleanup; push to share version with swc
      
      Add some descriptive comments and create minimal validator example (for instructors.md) to demonstrate subclassing
      
      Split helpers to separate file and update for newest index.md template
      
      Grooming
      
      Bring up to spec with newest versions of lesson templates. Add tests to ensure all templates pass validation.
      
      Saner default assumption about markdown file locations
      
      Add skeletons for remaining validators. Incorporate ranier's code for batch validation.
      
      Code changes for single-file python 2 and 3 compatibility.
      
      Refactor out template validation logic in prep for cmd line rework
      
      Proof of concept refactor to command line sig for @rgaia-cs (issue #34)
      
      With no path provided, default to curdir, not a hard-coded default
      
      Implement license and discussion validators. Some test cleanup.
      
      Validate file links against page titles. Add line length check.
      
      Fix python3 hash error
      
      Rename validator to check
      
      Conflicts:
      	tools/validate_markdown_template.py
      
      Enforce section heading levels + pep8 cleanup
      
      Improved link validation for non-html files
      
      Validate images as well as links
      
      Verify that all headings are exactly level 2
      
      Link text validation based on document header "subtitle" instead of "title".
      
      Adjustments based on run against the SQL repo.
      
      Fix links to topics
      
      By default only show erros and warnings to user
      
      - Add another argument for CLI to enable debug log level
      - Change some log message to debug instead of info
      - Add file information for errors and warnings
      
      Fix import at check
      
      From [PEP8](https://www.python.org/dev/peps/pep-0008/#imports)
      
      > Imports should usually be on separate lines, e.g.:
      >
      > Yes: import os
      >      import sys
      >
      > No:  import sys, os
      
      Heading bugfixes, update failing tests, and cleanup. fix swcarpentry/lesson-template#39, swcarpentry/lesson-template#42 .
      
      Add validation of glossary
      
      Slight clarification to log messages.
      
      Skip validate some links in index
      
      Fix super() call for python2; avoid mutable default argument.
      
      Lesson template validator.
      0d5c61e0
  24. Nov 17, 2014
  25. Nov 16, 2014
  26. Nov 15, 2014
  27. Nov 14, 2014
  28. Nov 09, 2014
    • Greg Wilson's avatar
      Bringing in description of lesson structure · f870b063
      Greg Wilson authored
      f870b063
    • Greg Wilson's avatar
      Rationalizing tools. · 2b92504e
      Greg Wilson authored
      1. Moving all commands into a Makefile (because we're handling file dependencies, and that's the right tool for it).
      2. Ignoring the .html files produced in the root directory for now.
      3. Switching to a single layout modeled on that used for workshop websites - will need to update this.
      2b92504e
    • Greg Wilson's avatar
      Reorganizing material to put page source in sub-directory: · da5fc640
      Greg Wilson authored
      * Add `.nojekyll` to stop GitHub trying to compile.
      * Get rid of Jekyll `_config.yml`.
      * Create placeholder `css` and `img` directories.
      * Create `pages` directory with source for web pages.
      * Move all Markdown files into `pages`.
      * Move `tools` into `pages` (because that's where people will mostly work).
      * Move `_includes` and `_layouts` into `pages` (because that's where we'll compile).
      da5fc640
  29. Oct 21, 2014