~ubuntu-branches/ubuntu/vivid/kdepim/vivid

« back to all changes in this revision

Viewing changes to messageviewer/objecttreeparser.cpp

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Jonathan Riddell, Rohan Garg, Scott Kitterman
  • Date: 2012-11-21 13:12:36 UTC
  • mfrom: (0.2.33)
  • Revision ID: package-import@ubuntu.com-20121121131236-32ijw9a2txrar80k
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Rohan Garg ]
* Add nepomuk-core-dev to build-deps

[ Scott Kitterman ]
* Add new package, libpimcommon4
  - Add libpimcommon4.install
  - Add to debian/control, including kdepim-dbg and kdepim-dev depends
  - Add to kdepim-dev.install
* Remove usr/bin/backupmail and related files from kmail.install as they are
  not provided by upstream anymore
* Add usr/bin/pimsettingexporter and related files to kmail.install
* Add libnepomukwidgets-dev to build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
1149
1149
                         str.contains(QLatin1String("<img src=\"/"),Qt::CaseInsensitive)) ) {
1150
1150
    return true;
1151
1151
  }
 
1152
  /*
 
1153
  //Laurent: workaround for local ref cid
 
1154
  if(str.contains(QLatin1String("<img src=\"cid:"),Qt::CaseInsensitive)) {
 
1155
    return true;
 
1156
  }
 
1157
  */
1152
1158
  int httpPos = str.indexOf( "\"http:", Qt::CaseInsensitive );
1153
1159
  int httpsPos = str.indexOf( "\"https:", Qt::CaseInsensitive );
1154
1160
 
1209
1215
 
1210
1216
      HTMLQuoteColorer colorer;
1211
1217
      QString extraHead;
1212
 
      for ( int i = 0; i < 2; i++ )
 
1218
      for ( int i = 0; i < 3; i++ )
1213
1219
        colorer.setQuoteColor( i, cssHelper()->quoteColor( i ) );
1214
1220
      bodyText = colorer.process( bodyText, extraHead );
1215
1221
      mNodeHelper->setNodeDisplayedEmbedded( curNode, true );