static/js/index.js
-The conditional in `queryServer()` that was meant to insert an
error message for 0 search-results had an incorrect comparison.
Fix.
Add:
static/(sass/about.sass, js/about.js)
-Convert `adjustVimeoDimensions()`, which created the
fluid-dimensioned Vimeo video, to a pure CSS solution.
Add:
templates/about.html. static/(sass/about.sass, js/about.js)
-Embed our Vimeo video, and add the Javascript necessary to make
it fluid-width.
Ref:
templates/about.html
-The file's indented formatting was completely mangled in a
previous commit; reformat.
Fix:
static/js/index.advanced-search-form.js
-Clicking the "submit" button in the advanced-search form didn't
actually populate the results div because of an incorrect call
to `queryServer()` instead of `populateResults()`.
Add:
templates/index.html, static/(js/index.advanced-search-form.js,
sass/index.sass)
-Add a "submit" button to the advanced search form, with styling
and appropriate callbacks.
Add:
static/js/index.advanced-search-form.js
-Fix lack of drop-down autocompletion in new `language` fields.
-Change the names displayed next to input fields to match those
present in the sidebar.
Add:
static/js/index.js
-Introduce a maximum character length to each attribute field.
static/sass/index.sass
-Add `overflow: auto` only when hidden information is displayed.
-Decrease the width of the code viewport on hover; move the
hidden information less far right.
Add:
templates/index.html, static/sass/index.sass,
static/img/index/search_bar_magnifying_glass.png
-Replace the magnifying-glass advanced-search icon with a simple
textual button.
static/(js/index.js, sass/index.sass)
-Slightly modify the appearance of error messages; add message
for no results.
Add:
static/js/index.js
-Modify functions to add actual result codelets to the `results`
column: redefine `populateResults()` as a wrapper for
`loadMoreResults()`, introduce a `Deferred` return-type to
`queryServer()`, and change some incorrect object field names
(eg, "html_code", which should've been "code") in
`createResult()`.
Fix:
static/sass/index.sass
-Allow codelet-scrolling, and modify result component widths.
Add:
static/js/main.js
-Add a global javascript file, with bitshift's Google Analytics
snippet.
static/google10335120a3066831.html
-Add our Google "Administrator Console" authentication.
Add:
templates/about.html, static/js/about.js
-Add a `speed` attribute to all image divs, which is used to
determine the rate at which an image moves upward.
static/img/about/bg2.png
-Change image to another source-code screenshot.
Add:
static/sass/main.sass
-Rework the footer, which is now fixed at the bottom of the
screen as opposed to floored to the bottom of the page.
Positioning at the bottom of the page doesn't make any sense
with a technically infinite results page.
Add:
static/sass/about.sass
-Clean up existing style rules.
-Add rules for the about sections' text.
templates/about.html
-Integrate with `templates/layout.html`, the project's global
HTML template.
Add:
templates/index.html, static/(sass/about.sass, js/about.js, img/about/)
-Add first iteration of the about page, with basic parallax
scrolling and filler text.
Add:
static/js/index.js
-Add `resultsHotkeys()`, which gets executed on definition and maps all
keyboard shortcuts.
-Add handler-functions for `h`, `j`, `k`, `l`; complete functions for
`j` and `k`, to scroll between results.
Add:
static/sass/index.sass
-Add style rules to fix bugs, and improve the appearance of some minor
details.
static/js/index.advanced-search-form.js
-Close #41. Add statements to scroll to the bottom of the search-groups
div when any search-groups/input fields are added.
Fix:
bitshift/languages.py
-Python's `u"string"` unicode specifier results in a Javascript syntax
error when pasted verbatim into `templates/index.html` by Flask; add
`str()` to the languages array loader to fix it.
Add:
static/js/index.advanced-search-form.js
-Prevent the user from removing the last input field in an
advanced-search group.
Rem:
templates/index.html
-Remove vestige code accidentally preserved during the c6e5b4f merge.