summaryrefslogtreecommitdiffstats
path: root/test/network/handler/node.rb
Commit message (Collapse)AuthorAgeFilesLines
* The Node handler is now obsolete. Node searching is handled through the ↵Luke Kanies2007-09-111-640/+0
| | | | indirector. I have not yet added the tests for the node handlers themselves, which is next.
* Multiple environment support now works, and I have even tested it in real ↵Luke Kanies2007-08-261-1/+1
| | | | life. This commit is mostly a bug-fix commit, resulting from the difference between real-life testing and unit testing.
* The fileserver now uses an environment-specific module path. I also made ↵Luke Kanies2007-08-261-0/+3
| | | | various bug fixes around the network tree.
* The last commits before I actually start on the multi-environment support. ↵Luke Kanies2007-08-221-67/+1
| | | | There are still failing tests, but apparently only those that are also failing in trunk.
* Adding node caching, so that node sources are not spammed during file ↵Luke Kanies2007-08-151-1/+24
| | | | serving and such
* Keeping the node names in the node object, so that they are available to the ↵Luke Kanies2007-08-151-0/+3
| | | | interpreter
* Adding the necessary name/ip fields to the node methodsLuke Kanies2007-08-151-1/+1
|
* Adding a "none" node source, which will be the default node source and will ↵Luke Kanies2007-08-151-0/+18
| | | | just return an empty node.
* Finalizing the node handler. It now correctly uses the different node sourcesLuke Kanies2007-08-141-6/+324
| | | | | and knows how to retrieve data from those sources. Now I just need to fix the language stuff to use this handler instead of the existing node stuff.
* An intermediate commit in the work towards adding multi-environment support.Luke Kanies2007-08-141-0/+341
This has required splitting the interpreter up considerably, which is much cleaner but is a large project. There is now a 'nodes' handler, but it is currently non-functional, although all the support structure is there. It just needs to have the individual methods fleshed out, and it needs to be connected to the 'facts' handler.