Merge lp:~mandel/ubuntuone-windows-installer/fix_xml_warnings_3 into lp:ubuntuone-windows-installer/beta

Proposed by Manuel de la Peña
Status: Merged
Approved by: Rodrigo Moya
Approved revision: 32
Merged at revision: 56
Proposed branch: lp:~mandel/ubuntuone-windows-installer/fix_xml_warnings_3
Merge into: lp:ubuntuone-windows-installer/beta
Prerequisite: lp:~mandel/ubuntuone-windows-installer/fix_xml_warnings_2
Diff against target: 639 lines (+232/-238)
21 files modified
build.number (+1/-1)
src/Canonical.UbuntuOne.Client.Views/NotifyIcon.xaml.cs (+17/-19)
src/Canonical.UbuntuOne.Client.Views/PreferencesDialog.xaml.cs (+18/-1)
src/Canonical.UbuntuOne.Client.Views/UbuntuOneMessageBox.cs (+17/-19)
src/Canonical.UbuntuOne.Client.Views/Update/DownloadingView.xaml.cs (+17/-19)
src/Canonical.UbuntuOne.Client.Views/Update/UpdatingView.xaml.cs (+17/-19)
src/Canonical.UbuntuOne.Common.Tests/Canonical.UbuntuOne.Common.Tests.csproj (+2/-1)
src/Canonical.UbuntuOne.Common/Container/SpringContainer.cs (+17/-19)
src/Canonical.UbuntuOne.Common/DataContracts/ShareData.cs (+17/-19)
src/Canonical.UbuntuOne.Common/Update/IDotUpdaterWrapper.cs (+17/-19)
src/Canonical.UbuntuOne.Common/Update/IUpdatingView.cs (+17/-19)
src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/FolderMessageExtensions.cs (+1/-1)
src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/ISyncConfigurationMessageFactory.cs (+17/-19)
src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/ISyncShareMessageFactory.cs (+1/-1)
src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/SyncConfigurationMessageFactory.cs (+1/-1)
src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/SyncDaemonMessageExtensions.cs (+17/-19)
src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/SyncFolderMessageFactory.cs (+1/-1)
src/Canonical.UbuntuOne.ProcessDispatcher/SyncDaemonService.cs (+17/-19)
src/Canonical.UbuntuOne.ProcessDispatcher/SyncFileManagerService.cs (+1/-1)
src/Canonical.UbuntuOne.ProcessDispatcher/SyncSharesService.cs (+17/-19)
src/Version.cs (+2/-2)
To merge this branch: bzr merge lp:~mandel/ubuntuone-windows-installer/fix_xml_warnings_3
Reviewer Review Type Date Requested Status
Vincenzo Di Somma (community) Approve
Rodrigo Moya (community) Approve
Review via email: mp+31823@code.launchpad.net

Description of the change

Remove another 100 warning messages due to the xml docs. Removed the a test dll that was generating documentation.

To post a comment you must log in.
Revision history for this message
Rodrigo Moya (rodrigo-moya) wrote :

24 +//

what are those chars in the first line?

Also, your name is wrong in some of the comments:

+// Authors: Manuel de la Peña <email address hidden>

Seems you (that is, the Windows editor you are using) are saving the files in an incorrect encoding?

Apart from that, since I just see a fix in the XML (apart from the comments changes), approving

review: Approve
Revision history for this message
Manuel de la Peña (mandel) wrote :

He, stupid windows, those funny things are there because the encoding is UTF8 with a BOM.

From unicode.org:

A byte order mark (BOM) consists of the character code U+FEFF at the beginning of a data stream, where it can be used as a signature defining the byte order and encoding form, primarily of unmarked plaintext files. Under some higher level protocols, use of a BOM may be mandatory (or prohibited) in the Unicode data stream defined in that protocol.

I've been using VS set to Auto-detect UTF8 encoding without a signature so I have really no clue of what the hell is the BOM doing there. I wonder what happens if I remove it, will it be added again?

I'll check WTF is windows doing.

31. By Manuel de la Peña

Fix xml comments issues

32. By Manuel de la Peña

Merge with parent.

Revision history for this message
Vincenzo Di Somma (vds) wrote :

Good!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'build.number'
--- build.number 2010-08-04 14:20:36 +0000
+++ build.number 2010-08-09 16:43:43 +0000
@@ -1,1 +1,1 @@
11.0.404.5869
2\ No newline at end of file1\ No newline at end of file
21.0.405.3708
3\ No newline at end of file3\ No newline at end of file
44
=== modified file 'src/Canonical.UbuntuOne.Client.Views/NotifyIcon.xaml.cs'
--- src/Canonical.UbuntuOne.Client.Views/NotifyIcon.xaml.cs 2010-08-09 16:43:42 +0000
+++ src/Canonical.UbuntuOne.Client.Views/NotifyIcon.xaml.cs 2010-08-09 16:43:43 +0000
@@ -1,22 +1,20 @@
1/**1// Copyright 2010 Canonical Ltd.
2 * Copyright 2010 Canonical Ltd.2//
3 * 3// This file is part of UbuntuOne on Windows.
4 * This file is part of UbuntuOne on Windows.4//
5 * 5// UbuntuOne on Windows is free software: you can redistribute it and/or modify
6 * UbuntuOne on Windows is free software: you can redistribute it and/or modify 6// it under the terms of the GNU Lesser General Public License version
7 * it under the terms of the GNU Lesser General Public License version 7// as published by the Free Software Foundation.
8 * as published by the Free Software Foundation. 8//
9 * 9// Ubuntu One on Windows is distributed in the hope that it will be useful,
10 * Ubuntu One on Windows is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12// GNU Lesser General Public License for more details.
13 * GNU Lesser General Public License for more details. 13//
14 *14// You should have received a copy of the GNU Lesser General Public License
15 * You should have received a copy of the GNU Lesser General Public License 15// along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.
16 * along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.16//
17 * 17// Authors: Manuel de la Peña <manuel.delapena@canonical.com>
18 * Authors: Manuel de la Peña <manuel.delapena@canonical.com>
19 */
20using System;18using System;
21using System.Collections.Generic;19using System.Collections.Generic;
22using Canonical.UbuntuOne.Client.Notification;20using Canonical.UbuntuOne.Client.Notification;
2321
=== modified file 'src/Canonical.UbuntuOne.Client.Views/PreferencesDialog.xaml.cs'
--- src/Canonical.UbuntuOne.Client.Views/PreferencesDialog.xaml.cs 2010-08-09 16:43:42 +0000
+++ src/Canonical.UbuntuOne.Client.Views/PreferencesDialog.xaml.cs 2010-08-09 16:43:43 +0000
@@ -1,4 +1,21 @@
1using System;1// Copyright 2010 Canonical Ltd.
2//
3// This file is part of UbuntuOne on Windows.
4//
5// UbuntuOne on Windows is free software: you can redistribute it and/or modify
6// it under the terms of the GNU Lesser General Public License version
7// as published by the Free Software Foundation.
8//
9// Ubuntu One on Windows is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU Lesser General Public License for more details.
13//
14// You should have received a copy of the GNU Lesser General Public License
15// along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.
16//
17// Authors: Manuel de la Peña <manuel.delapena@canonical.com>
18using System;
2using System.Collections.Generic;19using System.Collections.Generic;
3using System.Linq;20using System.Linq;
4using System.Text;21using System.Text;
522
=== modified file 'src/Canonical.UbuntuOne.Client.Views/UbuntuOneMessageBox.cs'
--- src/Canonical.UbuntuOne.Client.Views/UbuntuOneMessageBox.cs 2010-07-29 17:16:40 +0000
+++ src/Canonical.UbuntuOne.Client.Views/UbuntuOneMessageBox.cs 2010-08-09 16:43:43 +0000
@@ -1,22 +1,20 @@
1/**1// Copyright 2010 Canonical Ltd.
2 * Copyright 2010 Canonical Ltd.2//
3 * 3// This file is part of UbuntuOne on Windows.
4 * This file is part of UbuntuOne on Windows.4//
5 * 5// UbuntuOne on Windows is free software: you can redistribute it and/or modify
6 * UbuntuOne on Windows is free software: you can redistribute it and/or modify 6// it under the terms of the GNU Lesser General Public License version
7 * it under the terms of the GNU Lesser General Public License version 7// as published by the Free Software Foundation.
8 * as published by the Free Software Foundation. 8//
9 * 9// Ubuntu One on Windows is distributed in the hope that it will be useful,
10 * Ubuntu One on Windows is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12// GNU Lesser General Public License for more details.
13 * GNU Lesser General Public License for more details. 13//
14 *14// You should have received a copy of the GNU Lesser General Public License
15 * You should have received a copy of the GNU Lesser General Public License 15// along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.
16 * along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.16//
17 * 17// Authors: Manuel de la Peña <manuel.delapena@canonical.com>
18 * Authors: Manuel de la Peña <manuel.delapena@canonical.com>
19 */
20using System.Windows;18using System.Windows;
21using Canonical.UbuntuOne.Common;19using Canonical.UbuntuOne.Common;
2220
2321
=== modified file 'src/Canonical.UbuntuOne.Client.Views/Update/DownloadingView.xaml.cs'
--- src/Canonical.UbuntuOne.Client.Views/Update/DownloadingView.xaml.cs 2010-08-09 16:43:42 +0000
+++ src/Canonical.UbuntuOne.Client.Views/Update/DownloadingView.xaml.cs 2010-08-09 16:43:43 +0000
@@ -1,22 +1,20 @@
1/**1// Copyright 2010 Canonical Ltd.
2 * Copyright 2010 Canonical Ltd.2//
3 * 3// This file is part of UbuntuOne on Windows.
4 * This file is part of UbuntuOne on Windows.4//
5 * 5// UbuntuOne on Windows is free software: you can redistribute it and/or modify
6 * UbuntuOne on Windows is free software: you can redistribute it and/or modify 6// it under the terms of the GNU Lesser General Public License version
7 * it under the terms of the GNU Lesser General Public License version 7// as published by the Free Software Foundation.
8 * as published by the Free Software Foundation. 8//
9 * 9// Ubuntu One on Windows is distributed in the hope that it will be useful,
10 * Ubuntu One on Windows is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12// GNU Lesser General Public License for more details.
13 * GNU Lesser General Public License for more details. 13//
14 *14// You should have received a copy of the GNU Lesser General Public License
15 * You should have received a copy of the GNU Lesser General Public License 15// along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.
16 * along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.16//
17 * 17// Authors: Manuel de la Peña <manuel.delapena@canonical.com>
18 * Authors: Manuel de la Peña <manuel.delapena@canonical.com>
19 */
20using System;18using System;
21using Canonical.UbuntuOne.Common.Update;19using Canonical.UbuntuOne.Common.Update;
22using StaticResources = Canonical.UbuntuOne.Client.Views.Resources.Resources;20using StaticResources = Canonical.UbuntuOne.Client.Views.Resources.Resources;
2321
=== modified file 'src/Canonical.UbuntuOne.Client.Views/Update/UpdatingView.xaml.cs'
--- src/Canonical.UbuntuOne.Client.Views/Update/UpdatingView.xaml.cs 2010-08-09 16:43:42 +0000
+++ src/Canonical.UbuntuOne.Client.Views/Update/UpdatingView.xaml.cs 2010-08-09 16:43:43 +0000
@@ -1,22 +1,20 @@
1/**1// Copyright 2010 Canonical Ltd.
2 * Copyright 2010 Canonical Ltd.2//
3 * 3// This file is part of UbuntuOne on Windows.
4 * This file is part of UbuntuOne on Windows.4//
5 * 5// UbuntuOne on Windows is free software: you can redistribute it and/or modify
6 * UbuntuOne on Windows is free software: you can redistribute it and/or modify 6// it under the terms of the GNU Lesser General Public License version
7 * it under the terms of the GNU Lesser General Public License version 7// as published by the Free Software Foundation.
8 * as published by the Free Software Foundation. 8//
9 * 9// Ubuntu One on Windows is distributed in the hope that it will be useful,
10 * Ubuntu One on Windows is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12// GNU Lesser General Public License for more details.
13 * GNU Lesser General Public License for more details. 13//
14 *14// You should have received a copy of the GNU Lesser General Public License
15 * You should have received a copy of the GNU Lesser General Public License 15// along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.
16 * along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.16//
17 * 17// Authors: Manuel de la Peña <manuel.delapena@canonical.com>
18 * Authors: Manuel de la Peña <manuel.delapena@canonical.com>
19 */
20using System;18using System;
21using Canonical.UbuntuOne.Common.Update;19using Canonical.UbuntuOne.Common.Update;
2220
2321
=== modified file 'src/Canonical.UbuntuOne.Common.Tests/Canonical.UbuntuOne.Common.Tests.csproj'
--- src/Canonical.UbuntuOne.Common.Tests/Canonical.UbuntuOne.Common.Tests.csproj 2010-08-09 16:43:42 +0000
+++ src/Canonical.UbuntuOne.Common.Tests/Canonical.UbuntuOne.Common.Tests.csproj 2010-08-09 16:43:43 +0000
@@ -21,7 +21,8 @@
21 <WarningLevel>4</WarningLevel>21 <WarningLevel>4</WarningLevel>
22 <PlatformTarget>x86</PlatformTarget>22 <PlatformTarget>x86</PlatformTarget>
23 <ConsolePause>false</ConsolePause>23 <ConsolePause>false</ConsolePause>
24 <DocumentationFile>bin\Debug\Canonical.UbuntuOne.Common.Tests.XML</DocumentationFile>24 <DocumentationFile>
25 </DocumentationFile>
25 </PropertyGroup>26 </PropertyGroup>
26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">27 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
27 <DebugType>none</DebugType>28 <DebugType>none</DebugType>
2829
=== modified file 'src/Canonical.UbuntuOne.Common/Container/SpringContainer.cs'
--- src/Canonical.UbuntuOne.Common/Container/SpringContainer.cs 2010-08-09 16:43:42 +0000
+++ src/Canonical.UbuntuOne.Common/Container/SpringContainer.cs 2010-08-09 16:43:43 +0000
@@ -1,22 +1,20 @@
1/**1// Copyright 2010 Canonical Ltd.
2 * Copyright 2010 Canonical Ltd.2//
3 * 3// This file is part of UbuntuOne on Windows.
4 * This file is part of UbuntuOne on Windows.4//
5 * 5// UbuntuOne on Windows is free software: you can redistribute it and/or modify
6 * UbuntuOne on Windows is free software: you can redistribute it and/or modify 6// it under the terms of the GNU Lesser General Public License version
7 * it under the terms of the GNU Lesser General Public License version 7// as published by the Free Software Foundation.
8 * as published by the Free Software Foundation. 8//
9 * 9// Ubuntu One on Windows is distributed in the hope that it will be useful,
10 * Ubuntu One on Windows is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12// GNU Lesser General Public License for more details.
13 * GNU Lesser General Public License for more details. 13//
14 *14// You should have received a copy of the GNU Lesser General Public License
15 * You should have received a copy of the GNU Lesser General Public License 15// along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.
16 * along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.16//
17 * 17// Authors: Manuel de la Peña <manuel.delapena@canonical.com>
18 * Authors: Manuel de la Peña <manuel.delapena@canonical.com>
19 */
20using System;18using System;
21using System.Collections;19using System.Collections;
22using System.Linq;20using System.Linq;
2321
=== modified file 'src/Canonical.UbuntuOne.Common/DataContracts/ShareData.cs'
--- src/Canonical.UbuntuOne.Common/DataContracts/ShareData.cs 2010-08-09 16:43:42 +0000
+++ src/Canonical.UbuntuOne.Common/DataContracts/ShareData.cs 2010-08-09 16:43:43 +0000
@@ -1,22 +1,20 @@
1/**1// Copyright 2010 Canonical Ltd.
2 * Copyright 2010 Canonical Ltd.2//
3 * 3// This file is part of UbuntuOne on Windows.
4 * This file is part of UbuntuOne on Windows.4//
5 * 5// UbuntuOne on Windows is free software: you can redistribute it and/or modify
6 * UbuntuOne on Windows is free software: you can redistribute it and/or modify 6// it under the terms of the GNU Lesser General Public License version
7 * it under the terms of the GNU Lesser General Public License version 7// as published by the Free Software Foundation.
8 * as published by the Free Software Foundation. 8//
9 * 9// Ubuntu One on Windows is distributed in the hope that it will be useful,
10 * Ubuntu One on Windows is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12// GNU Lesser General Public License for more details.
13 * GNU Lesser General Public License for more details. 13//
14 *14// You should have received a copy of the GNU Lesser General Public License
15 * You should have received a copy of the GNU Lesser General Public License 15// along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.
16 * along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.16//
17 * 17// Authors: Manuel de la Peña <manuel.delapena@canonical.com>
18 * Authors: Manuel de la Peña <manuel.delapena@canonical.com>
19 */
20using System.Runtime.Serialization;18using System.Runtime.Serialization;
2119
22namespace Canonical.UbuntuOne.Common20namespace Canonical.UbuntuOne.Common
2321
=== modified file 'src/Canonical.UbuntuOne.Common/Update/IDotUpdaterWrapper.cs'
--- src/Canonical.UbuntuOne.Common/Update/IDotUpdaterWrapper.cs 2010-07-21 08:27:33 +0000
+++ src/Canonical.UbuntuOne.Common/Update/IDotUpdaterWrapper.cs 2010-08-09 16:43:43 +0000
@@ -1,22 +1,20 @@
1/**1// Copyright 2010 Canonical Ltd.
2 * Copyright 2010 Canonical Ltd.2//
3 * 3// This file is part of UbuntuOne on Windows.
4 * This file is part of UbuntuOne on Windows.4//
5 * 5// UbuntuOne on Windows is free software: you can redistribute it and/or modify
6 * UbuntuOne on Windows is free software: you can redistribute it and/or modify 6// it under the terms of the GNU Lesser General Public License version
7 * it under the terms of the GNU Lesser General Public License version 7// as published by the Free Software Foundation.
8 * as published by the Free Software Foundation. 8//
9 * 9// Ubuntu One on Windows is distributed in the hope that it will be useful,
10 * Ubuntu One on Windows is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12// GNU Lesser General Public License for more details.
13 * GNU Lesser General Public License for more details. 13//
14 *14// You should have received a copy of the GNU Lesser General Public License
15 * You should have received a copy of the GNU Lesser General Public License 15// along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.
16 * along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.16//
17 * 17// Authors: Manuel de la Peña <manuel.delapena@canonical.com>
18 * Authors: Manuel de la Peña <manuel.delapena@canonical.com>
19 */
20using System;18using System;
21using Microsoft.ApplicationBlocks.Updater;19using Microsoft.ApplicationBlocks.Updater;
2220
2321
=== modified file 'src/Canonical.UbuntuOne.Common/Update/IUpdatingView.cs'
--- src/Canonical.UbuntuOne.Common/Update/IUpdatingView.cs 2010-08-09 16:43:42 +0000
+++ src/Canonical.UbuntuOne.Common/Update/IUpdatingView.cs 2010-08-09 16:43:43 +0000
@@ -1,22 +1,20 @@
1/**1// Copyright 2010 Canonical Ltd.
2 * Copyright 2010 Canonical Ltd.2//
3 * 3// This file is part of UbuntuOne on Windows.
4 * This file is part of UbuntuOne on Windows.4//
5 * 5// UbuntuOne on Windows is free software: you can redistribute it and/or modify
6 * UbuntuOne on Windows is free software: you can redistribute it and/or modify 6// it under the terms of the GNU Lesser General Public License version
7 * it under the terms of the GNU Lesser General Public License version 7// as published by the Free Software Foundation.
8 * as published by the Free Software Foundation. 8//
9 * 9// Ubuntu One on Windows is distributed in the hope that it will be useful,
10 * Ubuntu One on Windows is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12// GNU Lesser General Public License for more details.
13 * GNU Lesser General Public License for more details. 13//
14 *14// You should have received a copy of the GNU Lesser General Public License
15 * You should have received a copy of the GNU Lesser General Public License 15// along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.
16 * along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.16//
17 * 17// Authors: Manuel de la Peña <manuel.delapena@canonical.com>
18 * Authors: Manuel de la Peña <manuel.delapena@canonical.com>
19 */
2018
21namespace Canonical.UbuntuOne.Common.Update19namespace Canonical.UbuntuOne.Common.Update
22{20{
2321
=== modified file 'src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/FolderMessageExtensions.cs'
--- src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/FolderMessageExtensions.cs 2010-07-13 09:52:05 +0000
+++ src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/FolderMessageExtensions.cs 2010-08-09 16:43:43 +0000
@@ -1,4 +1,4 @@
1/**1/*
2 * Copyright 2010 Canonical Ltd.2 * Copyright 2010 Canonical Ltd.
3 * 3 *
4 * This file is part of UbuntuOne on Windows.4 * This file is part of UbuntuOne on Windows.
55
=== modified file 'src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/ISyncConfigurationMessageFactory.cs'
--- src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/ISyncConfigurationMessageFactory.cs 2010-07-07 17:06:36 +0000
+++ src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/ISyncConfigurationMessageFactory.cs 2010-08-09 16:43:43 +0000
@@ -1,22 +1,20 @@
1/**1// Copyright 2010 Canonical Ltd.
2 * Copyright 2010 Canonical Ltd.2//
3 * 3// This file is part of UbuntuOne on Windows.
4 * This file is part of UbuntuOne on Windows.4//
5 * 5// UbuntuOne on Windows is free software: you can redistribute it and/or modify
6 * UbuntuOne on Windows is free software: you can redistribute it and/or modify 6// it under the terms of the GNU Lesser General Public License version
7 * it under the terms of the GNU Lesser General Public License version 7// as published by the Free Software Foundation.
8 * as published by the Free Software Foundation. 8//
9 * 9// Ubuntu One on Windows is distributed in the hope that it will be useful,
10 * Ubuntu One on Windows is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12// GNU Lesser General Public License for more details.
13 * GNU Lesser General Public License for more details. 13//
14 *14// You should have received a copy of the GNU Lesser General Public License
15 * You should have received a copy of the GNU Lesser General Public License 15// along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.
16 * along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.16//
17 * 17// Authors: Manuel de la Peña <manuel.delapena@canonical.com>
18 * Authors: Manuel de la Peña <manuel.delapena@canonical.com>
19 */
20using Canonical.UbuntuOne.Common;18using Canonical.UbuntuOne.Common;
2119
22namespace Canonical.UbuntuOne.ProcessDispatcher20namespace Canonical.UbuntuOne.ProcessDispatcher
2321
=== modified file 'src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/ISyncShareMessageFactory.cs'
--- src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/ISyncShareMessageFactory.cs 2010-07-08 11:39:25 +0000
+++ src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/ISyncShareMessageFactory.cs 2010-08-09 16:43:43 +0000
@@ -1,4 +1,4 @@
1/**1/*
2 * Copyright 2010 Canonical Ltd.2 * Copyright 2010 Canonical Ltd.
3 * 3 *
4 * This file is part of UbuntuOne on Windows.4 * This file is part of UbuntuOne on Windows.
55
=== modified file 'src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/SyncConfigurationMessageFactory.cs'
--- src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/SyncConfigurationMessageFactory.cs 2010-07-13 09:12:00 +0000
+++ src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/SyncConfigurationMessageFactory.cs 2010-08-09 16:43:43 +0000
@@ -1,4 +1,4 @@
1/**1/*
2 * Copyright 2010 Canonical Ltd.2 * Copyright 2010 Canonical Ltd.
3 * 3 *
4 * This file is part of UbuntuOne on Windows.4 * This file is part of UbuntuOne on Windows.
55
=== modified file 'src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/SyncDaemonMessageExtensions.cs'
--- src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/SyncDaemonMessageExtensions.cs 2010-07-13 09:52:05 +0000
+++ src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/SyncDaemonMessageExtensions.cs 2010-08-09 16:43:43 +0000
@@ -1,22 +1,20 @@
1/**1// Copyright 2010 Canonical Ltd.
2 * Copyright 2010 Canonical Ltd.2//
3 * 3// This file is part of UbuntuOne on Windows.
4 * This file is part of UbuntuOne on Windows.4//
5 * 5// UbuntuOne on Windows is free software: you can redistribute it and/or modify
6 * UbuntuOne on Windows is free software: you can redistribute it and/or modify 6// it under the terms of the GNU Lesser General Public License version
7 * it under the terms of the GNU Lesser General Public License version 7// as published by the Free Software Foundation.
8 * as published by the Free Software Foundation. 8//
9 * 9// Ubuntu One on Windows is distributed in the hope that it will be useful,
10 * Ubuntu One on Windows is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12// GNU Lesser General Public License for more details.
13 * GNU Lesser General Public License for more details. 13//
14 *14// You should have received a copy of the GNU Lesser General Public License
15 * You should have received a copy of the GNU Lesser General Public License 15// along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.
16 * along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.16//
17 * 17// Authors: Manuel de la Peña <manuel.delapena@canonical.com>
18 * Authors: Manuel de la Peña <manuel.delapena@canonical.com>
19 */
20using System.Collections.Generic;18using System.Collections.Generic;
2119
22namespace Canonical.UbuntuOne.ProcessDispatcher20namespace Canonical.UbuntuOne.ProcessDispatcher
2321
=== modified file 'src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/SyncFolderMessageFactory.cs'
--- src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/SyncFolderMessageFactory.cs 2010-07-13 09:12:00 +0000
+++ src/Canonical.UbuntuOne.ProcessDispatcher/Protobuf/SyncFolderMessageFactory.cs 2010-08-09 16:43:43 +0000
@@ -1,4 +1,4 @@
1/**1/*
2 * Copyright 2010 Canonical Ltd.2 * Copyright 2010 Canonical Ltd.
3 * 3 *
4 * This file is part of UbuntuOne on Windows.4 * This file is part of UbuntuOne on Windows.
55
=== modified file 'src/Canonical.UbuntuOne.ProcessDispatcher/SyncDaemonService.cs'
--- src/Canonical.UbuntuOne.ProcessDispatcher/SyncDaemonService.cs 2010-08-09 16:43:42 +0000
+++ src/Canonical.UbuntuOne.ProcessDispatcher/SyncDaemonService.cs 2010-08-09 16:43:43 +0000
@@ -1,22 +1,20 @@
1/**1// Copyright 2010 Canonical Ltd.
2 * Copyright 2010 Canonical Ltd.2//
3 * 3// This file is part of UbuntuOne on Windows.
4 * This file is part of UbuntuOne on Windows.4//
5 * 5// UbuntuOne on Windows is free software: you can redistribute it and/or modify
6 * UbuntuOne on Windows is free software: you can redistribute it and/or modify 6// it under the terms of the GNU Lesser General Public License version
7 * it under the terms of the GNU Lesser General Public License version 7// as published by the Free Software Foundation.
8 * as published by the Free Software Foundation. 8//
9 * 9// Ubuntu One on Windows is distributed in the hope that it will be useful,
10 * Ubuntu One on Windows is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12// GNU Lesser General Public License for more details.
13 * GNU Lesser General Public License for more details. 13//
14 *14// You should have received a copy of the GNU Lesser General Public License
15 * You should have received a copy of the GNU Lesser General Public License 15// along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.
16 * along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.16//
17 * 17// Authors: Manuel de la Peña <manuel.delapena@canonical.com>
18 * Authors: Manuel de la Peña <manuel.delapena@canonical.com>
19 */
20using System;18using System;
21using System.Collections.Generic;19using System.Collections.Generic;
22using Canonical.UbuntuOne.Common;20using Canonical.UbuntuOne.Common;
2321
=== modified file 'src/Canonical.UbuntuOne.ProcessDispatcher/SyncFileManagerService.cs'
--- src/Canonical.UbuntuOne.ProcessDispatcher/SyncFileManagerService.cs 2010-08-09 16:43:42 +0000
+++ src/Canonical.UbuntuOne.ProcessDispatcher/SyncFileManagerService.cs 2010-08-09 16:43:43 +0000
@@ -1,4 +1,4 @@
1/**1/*
2 * Copyright 2010 Canonical Ltd.2 * Copyright 2010 Canonical Ltd.
3 * 3 *
4 * This file is part of UbuntuOne on Windows.4 * This file is part of UbuntuOne on Windows.
55
=== modified file 'src/Canonical.UbuntuOne.ProcessDispatcher/SyncSharesService.cs'
--- src/Canonical.UbuntuOne.ProcessDispatcher/SyncSharesService.cs 2010-08-09 16:43:42 +0000
+++ src/Canonical.UbuntuOne.ProcessDispatcher/SyncSharesService.cs 2010-08-09 16:43:43 +0000
@@ -1,22 +1,20 @@
1/**1// Copyright 2010 Canonical Ltd.
2 * Copyright 2010 Canonical Ltd.2//
3 * 3// This file is part of UbuntuOne on Windows.
4 * This file is part of UbuntuOne on Windows.4//
5 * 5// UbuntuOne on Windows is free software: you can redistribute it and/or modify
6 * UbuntuOne on Windows is free software: you can redistribute it and/or modify 6// it under the terms of the GNU Lesser General Public License version
7 * it under the terms of the GNU Lesser General Public License version 7// as published by the Free Software Foundation.
8 * as published by the Free Software Foundation. 8//
9 * 9// Ubuntu One on Windows is distributed in the hope that it will be useful,
10 * Ubuntu One on Windows is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12// GNU Lesser General Public License for more details.
13 * GNU Lesser General Public License for more details. 13//
14 *14// You should have received a copy of the GNU Lesser General Public License
15 * You should have received a copy of the GNU Lesser General Public License 15// along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.
16 * along with UbuntuOne for Windows. If not, see <http://www.gnu.org/licenses/>.16//
17 * 17// Authors: Manuel de la Peña <manuel.delapena@canonical.com>
18 * Authors: Manuel de la Peña <manuel.delapena@canonical.com>
19 */
20using System;18using System;
21using System.Collections.Generic;19using System.Collections.Generic;
22using Canonical.UbuntuOne.Common;20using Canonical.UbuntuOne.Common;
2321
=== modified file 'src/Version.cs'
--- src/Version.cs 2010-08-04 14:20:36 +0000
+++ src/Version.cs 2010-08-09 16:43:43 +0000
@@ -10,6 +10,6 @@
10// </auto-generated>10// </auto-generated>
11//------------------------------------------------------------------------------11//------------------------------------------------------------------------------
1212
13[assembly: AssemblyVersionAttribute("1.0.404.5869")]13[assembly: AssemblyVersionAttribute("1.0.405.3708")]
14[assembly: AssemblyFileVersionAttribute("1.0.404.5869")]14[assembly: AssemblyFileVersionAttribute("1.0.405.3708")]
1515

Subscribers

People subscribed via source and target branches

to all changes: