Author: hbelusca
Date: Sun Jun 30 13:23:30 2013
New Revision: 59390
URL:
http://svn.reactos.org/svn/reactos?rev=59390&view=rev
Log:
[CMD]
Fix some people's names presentation
Modified:
trunk/reactos/base/shell/cmd/alias.c
trunk/reactos/base/shell/cmd/attrib.c
trunk/reactos/base/shell/cmd/batch.c
trunk/reactos/base/shell/cmd/batch.h
trunk/reactos/base/shell/cmd/beep.c
trunk/reactos/base/shell/cmd/call.c
trunk/reactos/base/shell/cmd/chcp.c
trunk/reactos/base/shell/cmd/cls.c
trunk/reactos/base/shell/cmd/color.c
trunk/reactos/base/shell/cmd/console.c
trunk/reactos/base/shell/cmd/copy.c
trunk/reactos/base/shell/cmd/date.c
trunk/reactos/base/shell/cmd/echo.c
trunk/reactos/base/shell/cmd/error.c
trunk/reactos/base/shell/cmd/for.c
trunk/reactos/base/shell/cmd/free.c
trunk/reactos/base/shell/cmd/goto.c
trunk/reactos/base/shell/cmd/label.c
trunk/reactos/base/shell/cmd/memory.c
trunk/reactos/base/shell/cmd/misc.c
trunk/reactos/base/shell/cmd/move.c
trunk/reactos/base/shell/cmd/msgbox.c
trunk/reactos/base/shell/cmd/parser.c
trunk/reactos/base/shell/cmd/path.c
trunk/reactos/base/shell/cmd/prompt.c
trunk/reactos/base/shell/cmd/ren.c
trunk/reactos/base/shell/cmd/screen.c
trunk/reactos/base/shell/cmd/set.c
trunk/reactos/base/shell/cmd/setlocal.c
trunk/reactos/base/shell/cmd/shift.c
trunk/reactos/base/shell/cmd/start.c
trunk/reactos/base/shell/cmd/time.c
trunk/reactos/base/shell/cmd/title.c
trunk/reactos/base/shell/cmd/type.c
trunk/reactos/base/shell/cmd/verify.c
trunk/reactos/base/shell/cmd/window.c
Modified: trunk/reactos/base/shell/cmd/alias.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/alias.c?rev…
==============================================================================
--- trunk/reactos/base/shell/cmd/alias.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/alias.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -25,10 +25,10 @@
* 24-Jan-1998 Eric Kohl
* Redirection safe!
*
- * 02-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 02-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*
- * 02-Feb-2008 (Christoph von Wittich) <christoph_vw(a)reactos.org>)
+ * 02-Feb-2008 (Christoph von Wittich <christoph_vw(a)reactos.org>)
* rewrote alias handling for doskey compat
*/
Modified: trunk/reactos/base/shell/cmd/attrib.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/attrib.c?re…
==============================================================================
--- trunk/reactos/base/shell/cmd/attrib.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/attrib.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -28,7 +28,7 @@
* 23-Jan-1999 Eric Kohl
* Added handling of multiple filenames.
*
- * 02-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 02-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/batch.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/batch.c?rev…
==============================================================================
--- trunk/reactos/base/shell/cmd/batch.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/batch.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -212,15 +212,15 @@
bc->mem = (char *)cmd_alloc(bc->memsize+1); /* 1 extra for '\0'
*/
/* if memory is available, read it in and close the file */
- if (bc->mem != NULL)
+ if (bc->mem != NULL)
{
TRACE ("BatchFile2Mem memory %08x -
%08x\n",bc->mem,bc->memsize);
SetFilePointer (hBatchFile, 0, NULL, FILE_BEGIN);
ReadFile(hBatchFile, (LPVOID)bc->mem, bc->memsize, &bc->memsize,
NULL);
bc->mem[bc->memsize]='\0'; /* end this, so you can dump it as a
string */
bc->memfree=TRUE; /* this one needs to be freed */
- }
- else
+ }
+ else
{
bc->memsize=0; /* this will prevent mem being accessed */
bc->memfree=FALSE;
@@ -244,11 +244,11 @@
HANDLE hFile = 0;
SetLastError(0);
- if (bc && bc->mem)
+ if (bc && bc->mem)
{
TCHAR fpname[MAX_PATH];
GetFullPathName(fullname, sizeof(fpname) / sizeof(TCHAR), fpname, NULL);
- if (_tcsicmp(bc->BatchFilePath,fpname)==0)
+ if (_tcsicmp(bc->BatchFilePath,fpname)==0)
same_fn=TRUE;
}
TRACE ("Batch: (\'%s\', \'%s\', \'%s\') same_fn =
%d\n",
@@ -312,7 +312,7 @@
GetFullPathName(fullname, sizeof(bc->BatchFilePath) / sizeof(TCHAR),
bc->BatchFilePath, NULL);
/* if a new batch file, load it into memory and close the file */
- if (!same_fn)
+ if (!same_fn)
{
BatchFile2Mem(hFile);
CloseHandle(hFile);
@@ -402,12 +402,12 @@
lpString = lpBuffer;
#endif
/* read all chars from memory until a '\n' is encountered */
- if (bc->mem)
- {
- for (; (bc->mempos < bc->memsize && len <
(nBufferLength-1)); len++)
- {
+ if (bc->mem)
+ {
+ for (; (bc->mempos < bc->memsize && len <
(nBufferLength-1)); len++)
+ {
lpString[len] = bc->mem[bc->mempos++];
- if (lpString[len] == '\n' )
+ if (lpString[len] == '\n' )
{
len++;
break;
Modified: trunk/reactos/base/shell/cmd/batch.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/batch.h?rev…
==============================================================================
--- trunk/reactos/base/shell/cmd/batch.h [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/batch.h [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -17,7 +17,7 @@
INT shiftlevel[10];
BOOL bEcho; /* Preserve echo flag across batch calls */
REDIRECTION *RedirList;
- PARSED_COMMAND *current;
+ PARSED_COMMAND *current;
struct _SETLOCAL *setlocal;
} BATCH_CONTEXT, *LPBATCH_CONTEXT;
Modified: trunk/reactos/base/shell/cmd/beep.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/beep.c?rev=…
==============================================================================
--- trunk/reactos/base/shell/cmd/beep.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/beep.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -20,7 +20,7 @@
* 20-Jan-1999 (Eric Kohl)
* Redirection ready!
*
- * 02-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 02-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/call.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/call.c?rev=…
==============================================================================
--- trunk/reactos/base/shell/cmd/call.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/call.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -24,7 +24,7 @@
* 20-Jan-1999 (Eric Kohl)
* Unicode and redirection safe!
*
- * 02-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 02-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/chcp.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/chcp.c?rev=…
==============================================================================
--- trunk/reactos/base/shell/cmd/chcp.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/chcp.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -7,7 +7,7 @@
* 23-Dec-1998 (Eric Kohl)
* Started.
*
- * 02-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 02-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/cls.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/cls.c?rev=5…
==============================================================================
--- trunk/reactos/base/shell/cmd/cls.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/cls.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -22,7 +22,7 @@
* 20-Jan-1998 (Eric Kohl)
* Redirection ready!
*
- * 02-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 02-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/color.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/color.c?rev…
==============================================================================
--- trunk/reactos/base/shell/cmd/color.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/color.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -16,7 +16,7 @@
* 14-Oct-1999 (Paolo Pantaleo <paolopan(a)freemail.it>)
* 4nt's syntax implemented.
*
- * 03-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 03-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Move all hardcoded strings in En.rc.
*/
Modified: trunk/reactos/base/shell/cmd/console.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/console.c?r…
==============================================================================
--- trunk/reactos/base/shell/cmd/console.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/console.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -7,13 +7,13 @@
* 20-Jan-1999 (Eric Kohl)
* started
*
- * 03-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 03-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*
- * 01-Jul-2005 (Brandon Turner) <turnerb7(a)msu.edu>
+ * 01-Jul-2005 (Brandon Turner <turnerb7(a)msu.edu>)
* Added ConPrintfPaging and ConOutPrintfPaging
*
- * 02-Feb-2007 (Paolo Devoti) <devotip at gmail.com>
+ * 02-Feb-2007 (Paolo Devoti <devotip at gmail.com>)
* Fixed ConPrintfPaging
*/
Modified: trunk/reactos/base/shell/cmd/copy.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/copy.c?rev=…
==============================================================================
--- trunk/reactos/base/shell/cmd/copy.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/copy.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -20,13 +20,13 @@
* 27-Oct-1998 (Eric Kohl)
* Disabled prompting when used in batch mode.
*
- * 03-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>)
+ * 03-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcode string to En.rc
*
- * 13-Jul-2005 (Brandon Turner) <turnerb7(a)msu.edu>)
+ * 13-Jul-2005 (Brandon Turner <turnerb7(a)msu.edu>)
* Rewrite to clean up copy and support wildcard.
*
- * 20-Jul-2005 (Brandon Turner) <turnerb7(a)msu.edu>)
+ * 20-Jul-2005 (Brandon Turner <turnerb7(a)msu.edu>)
* Add touch syntax. "copy arp.exe+,,"
* Copy command is now completed.
*/
Modified: trunk/reactos/base/shell/cmd/date.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/date.c?rev=…
==============================================================================
--- trunk/reactos/base/shell/cmd/date.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/date.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -27,7 +27,7 @@
* 04-Feb-1999 (Eric Kohl)
* Fixed date input bug.
*
- * 03-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 03-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/echo.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/echo.c?rev=…
==============================================================================
--- trunk/reactos/base/shell/cmd/echo.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/echo.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -22,7 +22,7 @@
* 13-Jul-2000 (Eric Kohl)
* Implemented 'echo.' and 'echoerr.'.
*
- * 28-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 28-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/error.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/error.c?rev…
==============================================================================
--- trunk/reactos/base/shell/cmd/error.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/error.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -16,7 +16,7 @@
* 02-Feb-1999 (Eric Kohl)
* Use FormatMessage() for error reports.
*
- * 28-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 28-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/for.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/for.c?rev=5…
==============================================================================
--- trunk/reactos/base/shell/cmd/for.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/for.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -26,7 +26,7 @@
* Implemented preservation of echo flag. Some other for related
* code in other files fixed, too.
*
- * 28-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 28-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/free.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/free.c?rev=…
==============================================================================
--- trunk/reactos/base/shell/cmd/free.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/free.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -7,7 +7,7 @@
* 01-Sep-1999 (Eric Kohl)
* Started.
*
- * 28-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 28-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/goto.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/goto.c?rev=…
==============================================================================
--- trunk/reactos/base/shell/cmd/goto.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/goto.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -22,7 +22,7 @@
* 27-Jan-1999 (Eric Kohl)
* Added help text ("/?").
*
- * 28-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 28-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/label.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/label.c?rev…
==============================================================================
--- trunk/reactos/base/shell/cmd/label.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/label.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -13,7 +13,7 @@
* 19-Jan-1998 (Eric Kohl)
* Unicode ready!
*
- * 28-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 28-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/memory.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/memory.c?re…
==============================================================================
--- trunk/reactos/base/shell/cmd/memory.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/memory.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -7,7 +7,7 @@
* 01-Sep-1999 (Eric Kohl)
* Started.
*
- * 28-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 28-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/misc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/misc.c?rev=…
==============================================================================
--- trunk/reactos/base/shell/cmd/misc.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/misc.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -28,7 +28,7 @@
* 06-Nov-1999 (Eric Kohl)
* Added PagePrompt() and FilePrompt().
*
- * 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/move.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/move.c?rev=…
==============================================================================
--- trunk/reactos/base/shell/cmd/move.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/move.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -21,10 +21,10 @@
* 03-Feb-1999 (Eric Kohl)
* Added "/N" option.
*
-* 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>)
-* Remove all hardcode string to En.rc
-*
-* 24-Jun-2005 (Brandon Turner) <turnerb7(a)msu.edu>)
+* 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
+* Remove all hardcoded strings in En.rc
+*
+* 24-Jun-2005 (Brandon Turner <turnerb7(a)msu.edu>)
* Fixed bug to allow MS style wildcards + code clean up
* added /y and /-y
*/
Modified: trunk/reactos/base/shell/cmd/msgbox.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/msgbox.c?re…
==============================================================================
--- trunk/reactos/base/shell/cmd/msgbox.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/msgbox.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -6,7 +6,7 @@
* 25 Aug 1999
* started - Paolo Pantaleo <paolopan(a)freemail.it>
*
- * 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/parser.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/parser.c?re…
==============================================================================
--- trunk/reactos/base/shell/cmd/parser.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/parser.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -123,7 +123,7 @@
break;
}
}
-
+
/* Check for numbered redirection */
if ((Char >= _T('0') && Char <= _T('9')
&&
(ParsePos == &ParseLine[1] || IsSeparator(ParsePos[-2]))
Modified: trunk/reactos/base/shell/cmd/path.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/path.c?rev=…
==============================================================================
--- trunk/reactos/base/shell/cmd/path.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/path.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -22,7 +22,7 @@
* 24-Jan-1999 (Eric Kohl)
* Fixed Win32 environment handling.
*
- * 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
#include "precomp.h"
Modified: trunk/reactos/base/shell/cmd/prompt.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/prompt.c?re…
==============================================================================
--- trunk/reactos/base/shell/cmd/prompt.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/prompt.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -43,7 +43,7 @@
* 24-Jan-1999 (Eric Kohl)
* Fixed Win32 environment handling.
*
- * 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
#include "precomp.h"
Modified: trunk/reactos/base/shell/cmd/ren.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/ren.c?rev=5…
==============================================================================
--- trunk/reactos/base/shell/cmd/ren.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/ren.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -17,10 +17,11 @@
* 17-Oct-2001 (Eric Kohl)
* Implemented basic rename code.
*
- * 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*
- * 25-Nov-2008 (Victor Martinez) <vicmarcal(a)hotmail.com> Patch dedicated to
Myrjala because her comprenhension and love :D
+ * 25-Nov-2008 (Victor Martinez <vicmarcal(a)hotmail.com>)
+ * Patch dedicated to Myrjala because her comprenhension and love :D
* Fixing following Bugs:
* -Wrong behavior with wildcards when Source and Destiny are Paths(FIXED).
* -Wrong general behavior (MSDN:"Rename cant move files between
subdirectories")(FIXED)
Modified: trunk/reactos/base/shell/cmd/screen.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/screen.c?re…
==============================================================================
--- trunk/reactos/base/shell/cmd/screen.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/screen.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -6,7 +6,7 @@
* 30 Aug 1999
* started - Paolo Pantaleo <paolopan(a)freemail.it>
*
- * 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*
*/
Modified: trunk/reactos/base/shell/cmd/set.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/set.c?rev=5…
==============================================================================
--- trunk/reactos/base/shell/cmd/set.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/set.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -30,7 +30,7 @@
* 25-Feb-1999 (Eric Kohl)
* Fixed little bug.
*
- * 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/setlocal.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/setlocal.c?…
==============================================================================
--- trunk/reactos/base/shell/cmd/setlocal.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/setlocal.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -5,7 +5,7 @@
*
* 1 Feb 2008 (Christoph von Wittich)
* started.
-*/
+*/
#include "precomp.h"
Modified: trunk/reactos/base/shell/cmd/shift.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/shift.c?rev…
==============================================================================
--- trunk/reactos/base/shell/cmd/shift.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/shift.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -19,7 +19,7 @@
* 20-Jan-1999 (Eric Kohl)
* Unicode and redirection safe!
*
- * 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/start.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/start.c?rev…
==============================================================================
--- trunk/reactos/base/shell/cmd/start.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/start.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -7,7 +7,7 @@
* 24-Jul-1999 (Eric Kohl)
* Started.
*
- * 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/time.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/time.c?rev=…
==============================================================================
--- trunk/reactos/base/shell/cmd/time.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/time.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -20,7 +20,7 @@
* 04-Feb-1999 (Eric Kohl)
* Fixed time input bug.
*
- * 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc.
*/
Modified: trunk/reactos/base/shell/cmd/title.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/title.c?rev…
==============================================================================
--- trunk/reactos/base/shell/cmd/title.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/title.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -5,7 +5,7 @@
* History:
* 1999-02-11 Emanuele Aliberti
*
- * 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/type.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/type.c?rev=…
==============================================================================
--- trunk/reactos/base/shell/cmd/type.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/type.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -22,7 +22,7 @@
* 19-Jan-1999 (Paolo Pantaleo <paolopan(a)freemail.it>)
* Added multiple file support (copied from y.c)
*
- * 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/verify.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/verify.c?re…
==============================================================================
--- trunk/reactos/base/shell/cmd/verify.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/verify.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -14,7 +14,7 @@
* 20-Jan-1999 (Eric Kohl)
* Unicode and redirection ready!
*
- * 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/
Modified: trunk/reactos/base/shell/cmd/window.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/window.c?re…
==============================================================================
--- trunk/reactos/base/shell/cmd/window.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/window.c [iso-8859-1] Sun Jun 30 13:23:30 2013
@@ -10,7 +10,7 @@
* activate and window in a single file using mainly the same code
* (nice size optimization :)
*
- * 30-Apr-2005 (Magnus Olsen) <magnus(a)greatlord.com>
+ * 30-Apr-2005 (Magnus Olsen <magnus(a)greatlord.com>)
* Remove all hardcoded strings in En.rc
*/