summaryrefslogtreecommitdiffstats
path: root/tests/test_lps_gen.py
Commit message (Collapse)AuthorAgeFilesLines
* Initial version of LPiCal class done.rsiddharth2016-03-181-11/+159
| | | | Addresses issue #8.
* Add LPiCal classrsiddharth2016-03-151-0/+61
| | | | | | | | | Contains two methods at the moment: - get_timeslot - get_month_day Addresses issue #8.
* changed tests/files/lp-sch.mdrsiddharth2016-03-051-2/+2
| | | | | | In some places use inline links. Addresses issue #3.
* Fixed TestLPS.test_RenderHTML_sessions_onlyrsiddharth2016-03-051-1/+1
|
* Templates are now at /libreplanet-templates/rsiddharth2016-02-131-8/+8
|
* cosemetic changes to tests/test_lps_gen.pyrsiddharth2016-02-131-43/+46
|
* Autolinking of speakers in sessions page ready.rsiddharth2016-02-131-4/+209
| | | | | | | | | | | | | | | | If "John Hacker" is the speaker that has to be autolinked in the sessions MD file; the markup to autolink is [John Hacker](). [John Hacker]() -> <a href="speakers.html#hacker">John Hacker</a>, if id for "John Hacker" is available in the `speaker.ids` file[1]. [1]: The `speakers.ids` file is automatically written to the disk (in the current working directory) when the speakers' bio page is generated. List of speakers that are autolinked but don't have an id, are written to the `speakers.noid` file when the sessions page is generated. Addresses issue #7.
* Fixed docstring and comments in TestJSONUtils.rsiddharth2016-02-131-3/+3
|
* LPSpeakersMarkdown writes speakers.ids to disk.rsiddharth2016-02-131-3/+23
| | | | | | | | The `speaker.ids` file contains a mapping of the speakers and their corresponding ids. This file will later be used by LPSMarkdown and LPSRenderer to auto link speakers while generating the sessions page. Addresses issue #7
* Introduced JSON utils.rsiddharth2016-02-131-0/+79
| | | | json_read and json_write
* Added template (under tests) for LP speakers' pagersiddharth2016-02-071-0/+10
| | | | Address issue #1.
* tests: updated docstrings.rsiddharth2016-02-071-2/+2
|
* updated LPSpeakersRenederer class.rsiddharth2016-02-071-13/+13
| | | | | | | | | | Changed the way speaker' bio are parsed into the lpspeakers_dict dictionary. As a side effect, there is no need to put a placeholder (NO_IMAGE) when the image for a speaker is not available. Addresses issue #1.
* tests/test_lps_gen.py: docstring update.rsiddharth2016-02-071-1/+1
|
* tests/test_lps_gen.py: keynote speaker test updt.rsiddharth2016-02-071-1/+1
| | | | `test_LPSpeakersMarkdown_keynotespeakers_imgalt` last photo is empty.
* Initial version LP Speakers Renderer ready.rsiddharth2016-02-061-2/+244
| | | | | | | | | | | | - New classes: - LPSpeakersRenderer - LPSpeakersMarkdown + tests for them - New package dependency - unidecode Address issue #1.
* tests/test_lps_gen.py: added test.rsiddharth2016-01-281-0/+10
| | | | - test_RenderHTML_sessions_only.
* tests/test_lps_gen.py: rename a testrsiddharth2016-01-281-1/+1
| | | | test_RenderHTML_invalid_year -> test_RenderHTML_nonexistent_template
* lps_gen accepts template as arg.rsiddharth2016-01-281-5/+7
| | | | | | | | | As per Zak's request, the script now requires the user to pass the template as (the first) argument to the script. The script does not use the template that is part of the lpschedule-generator module; indeed the internal template will be deleted later.
* updated tests/files/lp-sch.md + tests.rsiddharth2015-12-201-1/+2
|
* updated lps_gen.RenderHTMLrsiddharth2015-12-191-0/+1
| | | | When template is not found, instead of returning, it calls sys.exit(1).
* updated lps_gen.RenderHTMLrsiddharth2015-12-191-0/+14
| | | | | - Now handles the case when the template does not exist. - HTML output is now prettified by BeautifulSoup.
* tests/test_lps_gen.py (TestLpGen.RenderHTML)rsiddharth2015-12-191-1/+2
| | | | Cosmetic modification; does the same thing.
* 'speaker' -> 'speakers'rsiddharth2015-12-161-9/+9
| | | | `speakers` is always a list.
* HTMLRender -> RenderHTML + changes to it.rsiddharth2015-12-151-0/+6
| | | | | | `RenderHTML` (was `HTMLRender`) now uses `PackagLoader` instead of FileSystemLoader and the template are loaded from the templates/ directory.
* updated copyright header (authors -> contributors)rsiddharth2015-12-121-1/+1
|
* Added lps_gen.py + tests for it.rsiddharth2015-12-121-0/+165
Contains `LPSRenderer` and `LPSMarkdown` classes which convert a given Markdown LP schedule text to a python dictionary (OrderedDict).