Directory org.openiaml.model.runtime/src/include/domain/

Directory Created:
2010-04-30 16:38
Total Files:
1
Deleted Files:
0
Lines of Code:
1544

[root]/org.openiaml.model.runtime/src/include/domain
                    directory in repo tests (44 files, 3870 lines)

Lines of Code

org.openiaml.model.runtime/src/include/domain/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
soundasleep 36 (100.0%) 1923 (100.0%) 53.4

Most Recent Commits

soundasleep 2011-07-26 14:57 Rev.: 3035

issue 203: adding support for now() function in DomainIterator queries, which translates to datetime() in sqlite3

3 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+3)
soundasleep 2011-07-21 15:34 Rev.: 3026

issue 238: implementation of Domain Types now supports some basic XML Schema datatypes

10 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+10 -1)
soundasleep 2011-06-27 20:14 Rev.: 2982

issue 263: updating domain runtime includes

3 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+3 -3)
soundasleep 2011-04-27 16:14 Rev.: 2693

clarifying on the semantics of DomainIterator.onIterate

6 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+6 -5)
soundasleep 2011-04-27 15:46 Rev.: 2692

adding support for DomainIterator.onIterate
adding test case to check onIterate functionality

17 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+17)
soundasleep 2010-05-20 15:05 Rev.: 2263

improving the performance of IteratorList population
when rendered into HTML, an IteratorList does not try and update all of its contained values for every label present in the list on page access

14 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+14)
soundasleep 2010-05-20 11:53 Rev.: 2260

fixing a bug where empty arguments would strip ALL queries

16 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+16 -3)
soundasleep 2010-05-19 17:15 Rev.: 2259

if matches() is called with an empty string, replaces the entire matches() query with '1'

20 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+20 -6)
soundasleep 2010-05-19 17:10 Rev.: 2258

adding support for platform-independent SQL functions: adding matches(), which represents full text searching

59 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+59)
soundasleep 2010-05-13 16:30 Rev.: 2176

adding a test to check that we get a valid count() for remote RSS feeds before calling reload()

10 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+10 -5)
soundasleep 2010-05-13 16:20 Rev.: 2175

adding RSS support (initial) to Domain implementation; taken from RemoteDefinitions.xpt codegen template

156 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+156 -7)
soundasleep 2010-05-12 18:45 Rev.: 2169

adding a type to DomainInheritance 'id' attribute

1 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+1 -1)
soundasleep 2010-05-12 14:32 Rev.: 2164

updating NewInstanceWithoutId test case to make sure the database is created as expected

3 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+3 -1)
soundasleep 2010-05-12 14:24 Rev.: 2162

adding a test case to the domain modelling: if no PK is defined in a Schema, print out a warning to the debug log

21 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+21)
soundasleep 2010-05-07 16:51 Rev.: 2129

implementing Role using the new DomainIterator approach
implementing add/remove Role/Permissions

22 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+22 -2)
soundasleep 2010-05-06 23:02 Rev.: 2126

Iterator::reload() now throws an exception if there is no result to reload with
adding a test to check that the instance is not cached if there are not actually any results to begin with

18 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+18 -2)
soundasleep 2010-05-05 17:41 Rev.: 2119

implementing limit in DomainObjectInstance
count() returns the minimum of the number of found results, or the limit (if set)
fixing FeedProducerCompleteWithoutLink test case: an invalid primary key was being defined

5 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+5)
soundasleep 2010-05-05 17:20 Rev.: 2118

adding a test case to check that we can modify values and save them across different network requests
when reloading a DomainIterator from the DataSource, we refresh the stored values (necessary for the PKs to persist)

31 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+31)
soundasleep 2010-05-05 16:43 Rev.: 2117

domain: previous() and next() throw exceptions if they go beyond their limits

42 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+42 -2)
soundasleep 2010-05-05 14:30 Rev.: 2109

changing the 'no results found' error message to the original message, so that exception text-based tests pass without modification

1 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+1 -1)
soundasleep 2010-05-04 16:57 Rev.: 2105

updating codegen templates to use getAttributeInstance instead of getAttribute
Create Role test cases now pass

4 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+4 -1)
soundasleep 2010-05-04 16:44 Rev.: 2104

removing method getAttribute(String), as it is too easy to make an inconsistent instance
migrating test cases to use getAttributeInstance(DomainAttribute) instead

2 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+2 -25)
soundasleep 2010-05-04 16:14 Rev.: 2103

domain component: adding a test case for creating new instances non-autosave for partially-existing databases
evaluate_select_wire() can now select attributes from the database with the same name (i.e. 'A.id AS aid, B.id AS bid' in SQL)

64 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+64 -12)
soundasleep 2010-05-04 15:17 Rev.: 2100

adding support for DomainAttributeInstances as iterators
since SelectField test case did not specify a primary key, one was being generated automatically

51 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+51 -3)
soundasleep 2010-05-03 19:57 Rev.: 2097

adding support for persisting stored instance information over sessions
adding test case to check session information is reloaded/lost for new iterators

97 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+97 -14)
soundasleep 2010-05-03 17:23 Rev.: 2094

adding support for order_by with a DomainAttribute
adding support for limiting results

25 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+25 -5)
soundasleep 2010-05-03 16:55 Rev.: 2093

the DB type should be encoded in the file string (e.g. 'sqlite:foo.db'), not specified separately

7 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+7 -7)
soundasleep 2010-05-03 16:03 Rev.: 2091

adding a test case to check for modifying an iterator over a multiply inherited domain structure
adding test cases to check for exceptions thrown when trying to access attributes of an empty result set

43 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+43)
soundasleep 2010-05-03 15:46 Rev.: 2090

adding a test case for creating new instances of multiple inheritance in domain objects

40 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+40 -8)
soundasleep 2010-05-03 15:25 Rev.: 2089

attributes and schema methods no longer return by key; rather by lists of values, allowing duplicate field names to remain (mostly)

208 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+208 -147)
soundasleep 2010-05-03 11:52 Rev.: 2087

completed implementation of inherited domain iterator with autosave=true

75 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+75 -18)
soundasleep 2010-04-30 21:14 Rev.: 2085

implementing inheritance in Domain objects; not yet complete

267 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+267 -49)
soundasleep 2010-04-30 19:17 Rev.: 2084

adding a separate class for domain joins
adding a test case for new autosaved elements
database schemas that do not exist yet in a source are now automatically created
domain joins can be loaded at runtime

114 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+114 -21)
soundasleep 2010-04-30 18:31 Rev.: 2083

adding support for new instances of DomainSources
splitting up tests into separate includes

116 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+116 -16)
soundasleep 2010-04-30 17:54 Rev.: 2082

adding support for autosave/saving instances
adding new test cases to check

60 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (+60 -14)
soundasleep 2010-04-30 16:38 Rev.: 2081

issue 178: adding a new OO approach to domain objects
adding a test case to check the implementation (has to be run manually)

292 lines of code changed in 1 file:

  • org.openiaml.model.runtime/src/include/domain: domain.php (new 292)
Generated by StatSVN 0.7.0