Ignore:
Timestamp:
Jul 12, 2011, 10:56:58 AM (14 years ago)
Author:
cla
Message:

rdfint

  • prefix non-standard methods of rdfa::Data and rdfa::Projection with underscore
  • add note to description of rdfa::SparlEndpoint and rdfa::SparlQuery that they are no-standard as well
File:
1 edited

Legend:

Unmodified
Added
Removed
  • php/trunk/unittest/rdfa_simple_api/unittest.php

    r7 r17  
    7777
    7878    // retrieve name
    79     $litName = $this->rdfaData->getFirstValue( $uriPerson, 'foaf:name');
     79    $litName = $this->rdfaData->_getFirstValue( $uriPerson, 'foaf:name');
    8080    $this->assertInternalType( 'string', $litName);
    8181    $this->assertGreaterThan( 0, strlen( $litName));
     
    8787
    8888    // retrieve city name
    89     $litCity =  $this->rdfaData->getFirstValue( $aUriWork[ 0], 'foaf:city');
     89    $litCity =  $this->rdfaData->_getFirstValue( $aUriWork[ 0], 'foaf:city');
    9090    $this->assertInternalType( 'string', $litCity);
    9191    $this->assertGreaterThan( 0, strlen( $litCity));
Note: See TracChangeset for help on using the changeset viewer.