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

Reorganization [part 2] #2

Merged
merged 39 commits into from
Nov 16, 2015
Merged

Reorganization [part 2] #2

merged 39 commits into from
Nov 16, 2015

Commits on Nov 11, 2015

  1. 1 Configuration menu
    Copy the full SHA
    ba421a8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    edb54d3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    03fd865 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    db76f02 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ce39cf5 View commit details
    Browse the repository at this point in the history
  6. break up graph_obj.js:

    - Plotly methods go in src/plot_api/plot_api.js
    - Plotly.Plots module goes in src/plots/plots/plots.js
    - break up attribute object in Plotly.Plots into seperate files
    - factor Plotly.Plots.titles into components/titles/
    etpinard committed Nov 11, 2015
    Configuration menu
    Copy the full SHA
    97cb7bb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    942e49e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    dd7ccc5 View commit details
    Browse the repository at this point in the history
  9. put plot_schema in plot_api/

    etpinard committed Nov 11, 2015
    Configuration menu
    Copy the full SHA
    edae224 View commit details
    Browse the repository at this point in the history
  10. break lib.js into smaller lib modules:

    - coerce.js, dates.js, matrix.js nested_property.js,
      notifier.js, search.js, stats.js
    etpinard committed Nov 11, 2015
    1 Configuration menu
    Copy the full SHA
    df06911 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    4181e97 View commit details
    Browse the repository at this point in the history
  12. make attributes files require in attributes file directly:

    - do not require in Plotly when not necessary
    etpinard committed Nov 11, 2015
    Configuration menu
    Copy the full SHA
    f842118 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    01ee254 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    2d40132 View commit details
    Browse the repository at this point in the history
  15. mv geo module to plots/geo :

    - keep GeoLayout module (for now)
    - merge GeoAxes into GeoLayout
    etpinard committed Nov 11, 2015
    Configuration menu
    Copy the full SHA
    865476a View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    968257e View commit details
    Browse the repository at this point in the history
  17. put gl3d module in plots/gl3d/ :

    - keep Gl3dLayout (for now)
    - merge Gl3dAxes into Gl3dLayout
    etpinard committed Nov 11, 2015
    Configuration menu
    Copy the full SHA
    ff7c994 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    9edbce3 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    769f6dd View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    914dcbf View commit details
    Browse the repository at this point in the history
  21. re-org plotly.js

    etpinard committed Nov 11, 2015
    Configuration menu
    Copy the full SHA
    c833198 View commit details
    Browse the repository at this point in the history
  22. fix paths + lint

    etpinard committed Nov 11, 2015
    Configuration menu
    Copy the full SHA
    4f57bff View commit details
    Browse the repository at this point in the history
  23. fix paths in jamsine tests

    etpinard committed Nov 11, 2015
    Configuration menu
    Copy the full SHA
    3349e7b View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2015

  1. add index file exporting only API Plotly methods:

    - browserify that file so that window.Plotly doesn't contain
      internal methods
    etpinard committed Nov 12, 2015
    7 Configuration menu
    Copy the full SHA
    d3087b1 View commit details
    Browse the repository at this point in the history
  2. mv plots/plots/* to plots/* :

    -  folders in plots/ are reserved for plot types
    etpinard committed Nov 12, 2015
    Configuration menu
    Copy the full SHA
    55e203a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4fd274a View commit details
    Browse the repository at this point in the history
  4. be more consistent about attribute file names:

    - attributes.js ALWAYS refers to trace attributes
    - layout_attributes.js ALWAYS referes to layout attributes
    etpinard committed Nov 12, 2015
    Configuration menu
    Copy the full SHA
    ad49e57 View commit details
    Browse the repository at this point in the history
  5. 1 Configuration menu
    Copy the full SHA
    9d2568d View commit details
    Browse the repository at this point in the history
  6. rm check for Plotly.Queue:

      - Queue is now part of plotly.js and always there
    etpinard committed Nov 12, 2015
    1 Configuration menu
    Copy the full SHA
    94a450c View commit details
    Browse the repository at this point in the history
  7. lint

    etpinard committed Nov 12, 2015
    Configuration menu
    Copy the full SHA
    f8ce24a View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2015

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

Commits on Nov 15, 2015

  1. Configuration menu
    Copy the full SHA
    7150055 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ce393fb View commit details
    Browse the repository at this point in the history
  3. mv plot_config to plot_api/

    etpinard committed Nov 15, 2015
    Configuration menu
    Copy the full SHA
    dd8b3d3 View commit details
    Browse the repository at this point in the history
  4. add Plotly.setPlotConfig to API:

    - to extend the default config with the API.
    etpinard committed Nov 15, 2015
    Configuration menu
    Copy the full SHA
    6d0e221 View commit details
    Browse the repository at this point in the history
  5. change inner module pattern:

    - rename src/$type/$module_name/$module_name.js ->
      src/$type/$module_name/index.js
    
      so that require('../$type/$module_name/$module_name') becomes
      require('../$type?$module_name')
    etpinard committed Nov 15, 2015
    Configuration menu
    Copy the full SHA
    a2c72ed View commit details
    Browse the repository at this point in the history
  6. jshintrc copied from streambed

    mainly so sublime doesn't complain about node
    alexcjohnson committed Nov 15, 2015
    Configuration menu
    Copy the full SHA
    2de1313 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2015

  1. update jshintrc:

    - rm maxparms
    - rm maxstatements
    - bump maxdepth to 6
    - add jasmine env
    etpinard committed Nov 16, 2015
    4 Configuration menu
    Copy the full SHA
    6c279ee View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4491321 View commit details
    Browse the repository at this point in the history