# HG changeset patch # User Sebastian Brannstrom # Date 1287256201 -3600 # Node ID f5377b5817a003ffac8480318f909c7eeca6c576 # Parent 572d166c94219f226f3c23b348f4af92e4f6384d Fix for bug 3626 - show filenames are now generated from UIDs diff -r 572d166c9421 -r f5377b5817a0 engine/inc/PodcastUtils.h --- a/engine/inc/PodcastUtils.h Tue Oct 19 12:53:24 2010 +0100 +++ b/engine/inc/PodcastUtils.h Sat Oct 16 20:10:01 2010 +0100 @@ -37,6 +37,7 @@ _LIT(KVideoFormat1, ".wmv"); _LIT(KVideoFormat2, ".avi"); _LIT(KVideoFormat3, ".mp4"); +_LIT(KVideoFormat4, ".mov"); diff -r 572d166c9421 -r f5377b5817a0 engine/src/PodcastUtils.cpp --- a/engine/src/PodcastUtils.cpp Tue Oct 19 12:53:24 2010 +0100 +++ b/engine/src/PodcastUtils.cpp Sat Oct 16 20:10:01 2010 +0100 @@ -314,7 +314,8 @@ { if (aUrl.Find(KVideoFormat1) != KErrNotFound || aUrl.Find(KVideoFormat2) != KErrNotFound || - aUrl.Find(KVideoFormat3) != KErrNotFound) + aUrl.Find(KVideoFormat3) != KErrNotFound || + aUrl.Find(KVideoFormat4) != KErrNotFound) { return ETrue; } diff -r 572d166c9421 -r f5377b5817a0 engine/src/ShowEngine.cpp --- a/engine/src/ShowEngine.cpp Tue Oct 19 12:53:24 2010 +0100 +++ b/engine/src/ShowEngine.cpp Sat Oct 16 20:10:01 2010 +0100 @@ -197,7 +197,16 @@ TFileName fileName; PodcastUtils::FileNameFromUrl(info->Url(), fileName); - relPath.Append(fileName); + + TFileName extension; + extension.Copy(fileName.Mid(fileName.LocateReverse('.'))); + DP1("extension=%S", &extension); + + TFileName newFilename; + newFilename.Format(_L("%u%S"), info->Uid(), &extension); + DP1("newFilename=%S", &newFilename); + + relPath.Append(newFilename); PodcastUtils::EnsureProperPathName(relPath); // complete file path is base dir + rel path