0
I Use This!
Inactive

Commits : Listings

Analyzed about 19 hours ago. based on code collected 1 day ago.
Apr 22, 2023 — Apr 22, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Fixed infinite loop recursion issue. More... over 14 years ago
Fixed some of the issues with testing for what type of node/tag a string is. Alas, this has created a new bug where too much recursion is being used and the browser doesnt like it. More... over 14 years ago
Isn't it embarassing(sp?) when the reason one of your tests won't pass is because of a bug in the test code? More... over 14 years ago
This makes the test that checks the number of tokens created by tokenize pass More... over 14 years ago
Aligning the regexes so that they are easier to read. More... over 14 years ago
Added strip function to remove whitepace, and added a bunch more tests for the private functions. More... over 14 years ago
Adding a bunch new tests for the private functions, again, again More... over 14 years ago
Adding a bunch new tests for the private functions, again More... over 14 years ago
Adding a bunch new tests for the private functions More... over 14 years ago
Added a check for window.tempestPrivates. If it exists, then all the private methods get attached to it for testing purposes. I have also written a few tests for these newly exposed objects, more on the way. More... over 14 years ago
Second time I have had to deal with that bug. Just ok the test if an error is thrown. More... over 14 years ago
Merging the tests from bool_logic to master, since I refactored the code so that it won't hang in firefox with an unresponsive script warning when testing speeds. More... over 14 years ago
Changing all of the var fn = function () ... to function fn() ... because that form gets a special status in JavaScript so that it can be used in a line that is higher than the line that it is declared on (assuming it is the same block). This will save me some headaches hopefully. More... over 14 years ago
Ugh hardcoding number of textarea templates. wack. More... over 14 years ago
Switched up the style of speed metrics so that firefox won't throw a nonresponsive script alert. More... over 14 years ago
Added two tests for the rendering of if statements. More... over 14 years ago
Merge branch 'master' of [email protected]:fitzgen/tempest More... over 14 years ago
Changing the use of the or operator to something a little more precise. More... over 14 years ago
Using the latest and greatest non minified jquery. More... over 14 years ago
fixing regexes and making a function to split a block token in to bits More... over 14 years ago
Forgot to reflect the tests to incorporate the new error names with no spaces and had to lower the amount of speed tests because I was getting a on-responsive script warning. I know this means that tempest has slowed down, but what can I do but make it work first and then optimize it? More... over 14 years ago
Adding a test for calling toHTML on an object. More... over 14 years ago
Fixing a problem with the VAR_TAG regex and making renderEach a little more concise. More... over 14 years ago
Brevity hath saved two lines from use on this fine day. More... over 14 years ago
Moving a prototype closer to the other base objects More... over 14 years ago
Moving around a couple functions so JSLint won't complain. More... over 14 years ago
Refactored the node/render logic once again, (haven't been able to test since I am on the train without internet, but I feel good about it) and cleaned up the comments so that they be gud english. Also added a small TODO for tests. More... over 14 years ago
Adding reusable regexes for the template syntax. Haven't replaced all the regexes in the actual code yet though. More... over 14 years ago
JSLint cleaning up my code again. Man I love JSLint. More... over 14 years ago
Starting to clean up this code a little, so I can figure out where things are going wrong. Added tokenize function to split the template in to tokens once and only once. Renamed 'nodes' attr of baseIfNode to 'subNodes' to be a little more clear. Added whitespace for code readability. Starting to add documentation comments. More... over 14 years ago