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

Incorporate Zepheira commits #2

Open
wants to merge 41 commits into
base: master
Choose a base branch
from
Open

Commits on Jul 21, 2016

  1. would be present from svn externals

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    20d4996 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    719aa3e View commit details
    Browse the repository at this point in the history
  3. file appears to be unreferenced from anywhere and probably unnecessar…

    …y with require.js
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    076b694 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    51b9382 View commit details
    Browse the repository at this point in the history
  5. RequireJS, jQuery, and JSON2 libraries

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    e614dc8 View commit details
    Browse the repository at this point in the history
  6. only useful for non-requirejs loading

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    c7b7446 View commit details
    Browse the repository at this point in the history
  7. moved over to json2 lib

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    de4ca93 View commit details
    Browse the repository at this point in the history
  8. All files should now conform to RequireJS modular dependency loading.…

    … Note data-structure broke out to set, sorted-array, and event-index, and bubble broke out from graphics to help avoid dependency cycles. See main.js for example usage.
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    26c8692 View commit details
    Browse the repository at this point in the history
  9. adding i18n plugin file

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    c3d399a View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    401ad5a View commit details
    Browse the repository at this point in the history
  11. fix paths and missing dependencies

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    9003e6f View commit details
    Browse the repository at this point in the history
  12. bug in not detecting null

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    b8ab0ce View commit details
    Browse the repository at this point in the history
  13. baseUrl is temporary, based on using local development infrastructure…

    …; for publishing, it should be changed to the canonical SimileAjax URL for this version of itself
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    70308ef View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    b8b7e68 View commit details
    Browse the repository at this point in the history
  15. adding local configuration option for use with standard local Jetty-b…

    …ased development
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    61d4b5c View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    c904775 View commit details
    Browse the repository at this point in the history
  17. adding svn externals jetty jars

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    cb64625 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    f013ed9 View commit details
    Browse the repository at this point in the history
  19. fixing text linking

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    0566204 View commit details
    Browse the repository at this point in the history
  20. also add build tools

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    f18deb6 View commit details
    Browse the repository at this point in the history
  21. no need for config in ajax, config will have to be in users of ajax; …

    …don't bother loading jquery in simileajax anymore either
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    0c0ef1c View commit details
    Browse the repository at this point in the history
  22. using r.js for building bundled files, both for AMD-aware projects an…

    …d non-AMD-aware projects; removing jsmin-task material
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    a40b81e View commit details
    Browse the repository at this point in the history
  23. go back to using simile-ajax-api as the main entry point for backward…

    …s compatibility, can load a requirejs bundle or a non-requirejs bundle, or use requirejs for non-bundling; the preference is to use requirejs to load main.js instead of following old patterns, but the old way should work. also removed jquery and i18n plugin.
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    b053eee View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    b1ee160 View commit details
    Browse the repository at this point in the history
  25. make publish task default, make including / using require false by de…

    …fault to mimic old behavior; move project specific settings into a hash, correct onerror / onload property setting
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    ad3f0fc View commit details
    Browse the repository at this point in the history
  26. add includeRequire parameter in case something else is already loadin…

    …g it, though this is an esoteric case; either use RequireJS correctly without going through simile-ajax-api or skip RequireJS when using simile-ajax-api; this may be amended before final release to avoid weirdness
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    d79f6e9 View commit details
    Browse the repository at this point in the history
  27. removing require parameter, removing bundle parameter - using simile-…

    …ajax-api.js is a legacy mode and shouldn't bother trying to figure out RequireJS presence; adding CSS optimizing (though only one file right now), adding to build and deploy
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    5f67ea2 View commit details
    Browse the repository at this point in the history
  28. shift function back to main file, take in bundle parameter solely for…

    … css (barely matters for this project
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    fba85a5 View commit details
    Browse the repository at this point in the history
  29. moving main to simile-ajax to reduce conflicts when using as a separa…

    …te require path; eliminating simile-ajax-api since it just forwards to a bundle, building it as a bundle; renaming require bundle output to simile-ajax-bundle.js
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    8d2dab2 View commit details
    Browse the repository at this point in the history
  30. removing forgotten detritus

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    06d3f3a View commit details
    Browse the repository at this point in the history
  31. repair non-require bundle require statement; add domReady plugin to c…

    …all SimileAjax.load as early as possible without missing document.body
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    98dbab6 View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    f74dcce View commit details
    Browse the repository at this point in the history
  33. fix path

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    83ff53d View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    9b9bcb4 View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    10416d7 View commit details
    Browse the repository at this point in the history
  36. add sample dev config; add handling for RequireJS config parameters, …

    …document changes
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    1979d12 View commit details
    Browse the repository at this point in the history
  37. add debug bundle, ignore if in place

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    c51d476 View commit details
    Browse the repository at this point in the history
  38. add public method to set prefix

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    cc4b9b1 View commit details
    Browse the repository at this point in the history
  39. more rigorously avoid multiple loads, add url args for cache busting …

    …during development
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    98c857a View commit details
    Browse the repository at this point in the history
  40. move base to simile-ajax-base

    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    6bc9ddb View commit details
    Browse the repository at this point in the history
  41. modifying graphics so initialization is called, not auto run, which c…

    …an cause timing problems; do not autoload simileajax either, SimileAjax.load must be called externally (it is, after all, a library). removing domReady, unnecessary now.
    zepheiryan authored and karger committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    140cf54 View commit details
    Browse the repository at this point in the history