Small nit-pick:
.\reactos\reactos\tools\getdate.exe is being pulled from SVN even though it
is being generated by getdate.cmd and getdate.c that are both in the same
directory?
-John
Hi,
on the 3rd of May, from 1PM to 6PM CET, the following services will down
due to a power maintenance:
-> ISO upload
-> ISO download
-> Doxygen
-> cppcheck
-> Linux buildbot
-> KVM testbot
-> VMware testbot
I warmly recommend you don't commit during that period then, as
remaining builder, Windows one, won't be able to upload its ISOs.
Actually, I could also take the opportunity of such downtime to take SVN
(svn, git, buildbot master) server down for maintenance as it will
barely harm. I'll keep you informed.
I'll push reminders before it happens.
Sorry for the services interruption.
With my best regards,
--
Pierre Schweitzer<pierre at reactos.org>
System Administrator
ReactOS Foundation
Hello.
I am the guy writing an updater for ReactOS. Recent tests show some
difficulties and errors in data from reactos bootcds; mainly reactos.inf:
My program reads reactos.inf, puts the filepaths together and copies
files to the specified positions in folder-tree (I'm talking about the
server's side). It seems that reactos.inf contains pretty weird data;
opening reactos.inf with gedit shows it intact; reading it with the
program gets the following things out (shortened):
" -- 6 -->cache/files/���"
should be "cache/files/inf" (with cache/files" beeing the path of all
cached files, unpacked from bootcd-ISO.
and (in the same context):
"
-- 5 = system32\drivers\etc
-- 6 = inf
-- 7 = bin
-- �Í = bin\data
-- 9 = media
-- 10 = Microsoft.NET
"
("--" comes from debug-function of my iniparser).
Is this intended to be as is or not? Could someone please fix that or
let me know whether I should think about doing something differently.
I'm working and testing with Xubuntu 13.04 amd64 - always getting latest
dbg-BootCD-ISO.
Thanks peope.
Regards Stefan Naumann
I'm not a fan of single line conditional statements.
I'd prefer if we had a style rule for that.
Any thoughts on that?
Am 01.05.2013 19:12, schrieb hbelusca(a)svn.reactos.org:
> Author: hbelusca
> Date: Wed May 1 17:12:56 2013
> New Revision: 58902
> do
> {
> - while (*LoadOptions == '/')
> - ++LoadOptions;
> -
> + while (*LoadOptions == '/') ++LoadOptions;
> *NewLoadOptions++ = *LoadOptions;
> } while (*LoadOptions++);
>
>