Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.2 #110

Merged
merged 11 commits into from
Nov 27, 2018
Merged

0.2 #110

merged 11 commits into from
Nov 27, 2018

Commits on Nov 8, 2018

  1. Configuration menu
    Copy the full SHA
    d3fb2f9 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2018

  1. Configuration menu
    Copy the full SHA
    bade142 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2018

  1. Implemented the common partners algorithm in JavaScript.

    Introduced the JavaScript lo-dash utilities library on the way.
    Fixed bugs and cleaned things up. Note that currently ONLY the
    common partners code is working. Next up will be to bring back
    the classic frequency-based sankey.
    khituras committed Nov 16, 2018
    Configuration menu
    Copy the full SHA
    261eace View commit details
    Browse the repository at this point in the history
  2. Overworking the chart data distribution.

    Idea: Data shouldn't go multiple times to the client. Also, filtering
    often does not require contact to the server. So let the data JS
    module cache data and let the client to filtering on its own.
    For this, the widget layout now can switch off its default ajax
    content loading. Then, the specific widgets have to take care of their
    DOM elements and data loading on their own.
    The data module now has methods to get data from the server, through
    the index page. The idea is that all required data formats have a name
    such as "relation counts" or "neighboursofnode" and such stuff.
    This can then be cached within the browser.
    The current issue is that the cache has to be emptied when a new
    search is issued.
    khituras committed Nov 16, 2018
    Configuration menu
    Copy the full SHA
    fe65773 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2018

  1. Slightly restructured JS data handling.

    Separating the node order from the link weights.
    khituras committed Nov 17, 2018
    Configuration menu
    Copy the full SHA
    fbe8220 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2018

  1. Configuration menu
    Copy the full SHA
    dd6bd8b View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2018

  1. Pipeline changes

    Erik Faessler committed Nov 21, 2018
    Configuration menu
    Copy the full SHA
    3df4c90 View commit details
    Browse the repository at this point in the history
  2. Merging

    Erik Faessler committed Nov 21, 2018
    Configuration menu
    Copy the full SHA
    4d17c61 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2018

  1. Fixed a bug where after search the widgets couldn't be resized.

    The reason was that the WidgetManager didn't create a new
    Widget object if its internal map already knew a Widget by the given
    name. But with the Ajax loading the map wouldn't be refreshed but
    the HTML code would. So the elements manipulated by the old Widget
    object did not exist any more and the newly added Widget object
    was never created because the map already contained a Widget
    for each widget name.
    khituras committed Nov 26, 2018
    Configuration menu
    Copy the full SHA
    6da2704 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2018

  1. Updating ignores

    khituras committed Nov 27, 2018
    Configuration menu
    Copy the full SHA
    178d10d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ec5b80d View commit details
    Browse the repository at this point in the history