~libgexf.team/libgexf/0.1

« back to all changes in this revision

Viewing changes to libgexf/metadata.cpp

  • Committer: Sébastien Heymann
  • Date: 2009-12-10 18:11:38 UTC
  • Revision ID: sebastien.heymann@gmail.com-20091210181138-s0euha7lbn743764
Attempt to add dynamic support, but not activated due to infrastructure improvements needed. Compliant with the lastest GEXF 1.1draft format. Works in Python/Perl/Java.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
void MetaData::init() {
57
57
//-----------------------------------------
58
58
    _version = "1.1";
59
 
    _xmlns = "http://www.gephi.org/gexf/1.1draft";
 
59
    _xmlns = "http://www.gexf.net/1.1draft";
60
60
    _xsi = "http://www.w3.org/2001/XMLSchema-instance";
61
 
    _schema = "http://www.gephi.org/gexf/1.1draft http://gephi.org/gexf/1.1draft.xsd";
 
61
    _schema = "http://www.gexf.net/1.1draft http://gexf.net/1.1draft/gexf.xsd";
62
62
 
63
63
    _variant = _creator = _description = _keywords = _lastmodifieddate = "";
64
64
}