Skip to content

Commit efb8c98

Browse files
committed
Issue #2 - support .md file extensions in tree for editing
1 parent 4edfdd9 commit efb8c98

File tree

2 files changed

+28
-12
lines changed

2 files changed

+28
-12
lines changed

Src/MemoNote.cpp

+7-3
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ MemoNote *CryptedMemoNote::GetNewInstance() const
243243

244244
LPCTSTR PlainMemoNote::GetExtension()
245245
{
246-
return TEXT(".txt");
246+
return TEXT(".txt"); // TODO / FIXME .md files get saved/renamed as .txt if the title/first line changes and Note Tree does NOT get updated on screen (good news, is that existing files are not overwritten/deleted)
247247
}
248248

249249
LPCTSTR CryptedMemoNote::GetExtension()
@@ -492,14 +492,18 @@ BOOL MemoNote::Rename(LPCTSTR pTopDir, LPCTSTR pNewName)
492492

493493
DWORD MemoNote::IsNote(LPCTSTR pFile)
494494
{
495+
DWORD nType = NOTE_TYPE_NO;
495496
DWORD len = _tcslen(pFile);
496497
if (len <= 4) return NOTE_TYPE_NO;
497498

498-
LPCTSTR p = pFile + len - 4;
499+
//LPCTSTR p = pFile + len - 4; // FIXME right-find '.', return if not found (or right compare)
500+
LPCTSTR p = strrchr(pFile, '.');
501+
if (p == NULL) return nType;
499502

500-
DWORD nType;
501503
if (_tcsicmp(p, TEXT(".txt")) == 0) {
502504
nType = NOTE_TYPE_PLAIN;
505+
} else if (_tcsicmp(p, TEXT(".md")) == 0) {
506+
nType = NOTE_TYPE_PLAIN;
503507
} else if (_tcsicmp(p, TEXT(".chi")) == 0) {
504508
nType = NOTE_TYPE_CRYPTED;
505509
} else if (_tcsicmp(p, TEXT(".chs")) == 0) {

Src/RepositoryImpl.cpp

+21-9
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ BOOL LocalFileRepository::GetHeadLine(const TomboURI *pURI, TString *pHeadLine)
330330
if (bIsLeaf) {
331331
LPCTSTR pURIstr = pURI->GetFullURI();
332332
DWORD n = _tcslen(pURIstr);
333-
if (n > 4 && _tcscmp(pURIstr + n - 4, TEXT(".chs")) == 0) {
333+
if (n > 4 && _tcscmp(pURIstr + n - 4, TEXT(".chs")) == 0) { // FIXME hard coded 4 for file extension length
334334
TString sPath;
335335
if (!pURI->GetFilePath(&sPath)) return FALSE;
336336
CryptedMemoNote cn;
@@ -353,8 +353,10 @@ BOOL LocalFileRepository::GetHeadLine(const TomboURI *pURI, TString *pHeadLine)
353353
if (bIsLeaf) {
354354
LPTSTR p = pHeadLine->Get();
355355
DWORD n = _tcslen(p);
356-
if (n > 4) {
357-
*(p + n - 4) = TEXT('\0');
356+
if (n > 4) { // FIXME hard coded 4 for file extension length
357+
//*(p + n - 4) = TEXT('\0'); // FIXME hard coded 4 for file extension length
358+
char *file_extension = strrchr(p, '.');
359+
*file_extension = TEXT('\0'); // remove extension
358360
}
359361
}
360362
return TRUE;
@@ -375,10 +377,20 @@ BOOL LocalFileRepository::GetOption(const TomboURI *pURI, URIOption *pOption) co
375377
pOption->bFolder = TRUE;
376378
} else {
377379
// file
378-
p = p + len - 4;
379-
if (_tcsicmp(p, TEXT(".txt")) == 0 ||
380-
_tcsicmp(p, TEXT(".chi")) == 0 ||
381-
_tcsicmp(p, TEXT(".chs")) == 0) {
380+
//p = p + len - 4; // FIXME strrchr() or right string compare...
381+
p = strrchr(p, '.');
382+
/*
383+
if (p == NULL) {
384+
pOption->bValid = FALSE;
385+
return TRUE;
386+
}
387+
*/
388+
if ( p && (
389+
_tcsicmp(p, TEXT(".txt")) == 0 ||
390+
_tcsicmp(p, TEXT(".md")) == 0 ||
391+
_tcsicmp(p, TEXT(".chi")) == 0 ||
392+
_tcsicmp(p, TEXT(".chs")) == 0)
393+
) {
382394
pOption->bValid = TRUE;
383395
pOption->bFolder = FALSE;
384396
} else {
@@ -391,7 +403,7 @@ BOOL LocalFileRepository::GetOption(const TomboURI *pURI, URIOption *pOption) co
391403
LPCTSTR p = pURI->GetFullURI();
392404
DWORD n = _tcslen(p);
393405
if (n > 4) {
394-
if (_tcsicmp(p + n - 4, TEXT(".chi")) == 0 ||
406+
if (_tcsicmp(p + n - 4, TEXT(".chi")) == 0 || // FIXME hard coded 4 for file extension length
395407
_tcsicmp(p + n - 4, TEXT(".chs")) == 0) {
396408
pOption->bEncrypt = TRUE;
397409
} else {
@@ -402,7 +414,7 @@ BOOL LocalFileRepository::GetOption(const TomboURI *pURI, URIOption *pOption) co
402414

403415
if (pOption->nFlg & NOTE_OPTIONMASK_SAFEFILE) {
404416
LPCTSTR p = pURI->GetFullURI();
405-
if (_tcslen(p) > 4 && _tcscmp(p + _tcslen(p) - 4, TEXT(".chs")) == 0) {
417+
if (_tcslen(p) > 4 && _tcscmp(p + _tcslen(p) - 4, TEXT(".chs")) == 0) { // FIXME hard coded 4 for file extension length
406418
pOption->bSafeFileName = TRUE;
407419
} else {
408420
pOption->bSafeFileName = FALSE;

0 commit comments

Comments
 (0)