Subversion Repositories HomeAutomation

Rev

Rev 1310 | Rev 1314 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1310 Rev 1311
Line 262... Line 262...
262
        LOG.debug("parseTag exception: " + string(e.what()));
262
        LOG.debug("parseTag exception: " + string(e.what()));
263
        LOG.debug("A xmlData=" + xmlData + " :: position=" + itos(position) + " :: endPosition=" + itos(endPosition));
263
        LOG.debug("A xmlData=" + xmlData + " :: position=" + itos(position) + " :: endPosition=" + itos(endPosition));
264
        throw e;
264
        throw e;
265
    }
265
    }
266
 
266
 
267
    tagString = trim(tagString);
267
    trim(tagString);
268
    tagString = trim(tagString, '\n');
268
    trim_if(tagString, is_any_of("\n"));
269
    tagString = trim(tagString);
269
    trim(tagString);
270
    tagString += " ";
270
    tagString += " ";
271
 
271
 
272
    bool foundEnd = false;
272
    bool foundEnd = false;
273
    bool foundTag = false;
273
    bool foundTag = false;
274
    string buffer;
274
    string buffer;