25
I Use This!
Very Low Activity

Commits : Listings

Analyzed about 23 hours ago. based on code collected 1 day ago.
Jun 25, 2024 — Jun 25, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Changed formats a bit. Removed the Function identifier, which was needed for circular ref issues. Now, circular refs just return undefined. An error is not thrown because I want run.js to load existing .js files that do not define a module via run(). To work around the circular dependency problem, run.get() can be used to get the module outside of the synchronous circular dependency calls. More... over 15 years ago
Changed formats a bit. Removed the Function identifier, which was needed for circular ref issues. Now, circular refs just return undefined. An error is not thrown because I want run.js to load existing .js files that do not define a module via run(). To work around the circular dependency problem, run.get() can be used to get the module outside of the synchronous circular dependency calls. More... over 15 years ago
Add in DOMContentLoaded approximation for IE, convert version number to just be a string since it is not used for strict version checking any more. More... over 15 years ago
Add in DOMContentLoaded approximation for IE, convert version number to just be a string since it is not used for strict version checking any more. More... over 15 years ago
Remove the code that tries to upgrade run.js to use the latest version in the page if more than one run.js is loaded. This is full of holes, and in reality better controlled via load order in the page/page authoring. Multiple versions of run can be included in the page, but only the first one defined will be active. More... over 15 years ago
Remove the code that tries to upgrade run.js to use the latest version in the page if more than one run.js is loaded. This is full of holes, and in reality better controlled via load order in the page/page authoring. Multiple versions of run can be included in the page, but only the first one defined will be active. More... over 15 years ago
Confirm that some tests with nested contexts and modifiers work. More... over 15 years ago
Confirm that some tests with nested contexts and modifiers work. More... over 15 years ago
Converting module names to use the / delimiter instead of dots, to match CommonJS practices. A backward compatibile shim is left in for Dojo/Google Closure-type of modules, but it means that './' or '../' in module names will not work at the moment. This should be fine since we cannot support those anyway for build layers and the way we need to specify module names to things to work in IE. More... over 15 years ago
Converting module names to use the / delimiter instead of dots, to match CommonJS practices. A backward compatibile shim is left in for Dojo/Google Closure-type of modules, but it means that './' or '../' in module names will not work at the moment. This should be fine since we cannot support those anyway for build layers and the way we need to specify module names to things to work in IE. More... over 15 years ago
Updating closure compiler. More... over 15 years ago
Updating closure compiler. More... over 15 years ago
Reorganizing code so that state that needs to be carried over from one version of run to another is all in a run.s variable, and made some functions private to reduce space and outward API. More... over 15 years ago
Reorganizing code so that state that needs to be carried over from one version of run to another is all in a run.s variable, and made some functions private to reduce space and outward API. More... over 15 years ago
Fixes i18n bundles to work for locales that are not defined, required a bigger change, and the test did not test the right thing before. Now all fixed. Also added test/appendbeforeload test to verify that scripts added via appendChild can execute out of DOM order before page load in IE and WebKit. More... over 15 years ago
Fixes i18n bundles to work for locales that are not defined, required a bigger change, and the test did not test the right thing before. Now all fixed. Also added test/appendbeforeload test to verify that scripts added via appendChild can execute out of DOM order before page load in IE and WebKit. More... over 15 years ago
Got build working to inline text dependencies, fixed a bug in run.text where it did not recognize an inlined text dependency if there was no strip argument. More... over 15 years ago
Got build working to inline text dependencies, fixed a bug in run.text where it did not recognize an inlined text dependency if there was no strip argument. More... over 15 years ago
More tests, some for Function modules and setting the stage for supporting text plugin inlining. More... over 15 years ago
More tests, some for Function modules and setting the stage for supporting text plugin inlining. More... over 15 years ago
Added a test that uses a locale that does not exist in the bundle, to make sure the root module is used to first look up the best match so no 404s happen. More... over 15 years ago
Added a test that uses a locale that does not exist in the bundle, to make sure the root module is used to first look up the best match so no 404s happen. More... over 15 years ago
Adding text plugin for run, loads text files via async XHR. The hope is to also add build support for inlining the text files, but that build support is not there yet. More... over 15 years ago
Adding text plugin for run, loads text files via async XHR. The hope is to also add build support for inlining the text files, but that build support is not there yet. More... over 15 years ago
Fix issue with i18n plugin where it was using a .length property on nlsWaiting to test for isWaiting, but nlsWaiting was an object. Converted to an array. More... over 15 years ago
Fix issue with i18n plugin where it was using a .length property on nlsWaiting to test for isWaiting, but nlsWaiting was an object. Converted to an array. More... over 15 years ago
Introduced plugin concept for run.js, and i18n bundle support is now a plugin. Code size remains about the same for run.js, the plugin support code took the place of the inlined i18n code. More... over 15 years ago
Introduced plugin concept for run.js, and i18n bundle support is now a plugin. Code size remains about the same for run.js, the plugin support code took the place of the inlined i18n code. More... over 15 years ago
Issue found by Bryan Forbes about modules with overlapping dependencies causing more than one request for a module. I broke this with the pause/resume changes but now fixed with a unit test. More... over 15 years ago
Issue found by Bryan Forbes about modules with overlapping dependencies causing more than one request for a module. I broke this with the pause/resume changes but now fixed with a unit test. More... over 15 years ago