Discussion:
Review Request 125266: Authentication with certificates / Make MRU/MTU editable / Dialog fix
René Fürst
2015-12-12 23:11:37 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------

(Updated Dez. 12, 2015, 11:11 nachm.)


Review request for Network Management and Plasma.


Changes
-------

added networkmanagement to reviewers


Repository: plasma-nm


Description
-------

Authentication with certificates / Make MRU/MTU editable / Dialog fix


Diffs
-----

vpn/l2tp/l2tpwidget.cpp b278228
vpn/l2tp/nm-l2tp-service.h ac2ecc9
vpn/l2tp/l2tpwidget.h 1e4c383
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tp.ui 22b9f73
vpn/l2tp/l2tpppp.ui 7e4fea3

Diff: https://git.reviewboard.kde.org/r/125266/diff/


Testing
-------

This patch contains 3 things:
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened

The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c


Thanks,

René FÌrst
Lamarque Souza
2015-12-13 00:50:52 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/#review89404
-----------------------------------------------------------



vpn/l2tp/l2tppppwidget.cpp (line 107)
<https://git.reviewboard.kde.org/r/125266/#comment61154>

Remove extra spaces.



vpn/l2tp/l2tppppwidget.cpp (line 108)
<https://git.reviewboard.kde.org/r/125266/#comment61155>

Why compare a QString to NULL? You should use:

if (dataMap.contains(QLatin1String(NM_L2TP_KEY_MTU))) {
...
}

Code style: always use brackets with if, even if there is just one line. Also add space after the if.



vpn/l2tp/l2tppppwidget.cpp (line 110)
<https://git.reviewboard.kde.org/r/125266/#comment61156>

Remove extra space.



vpn/l2tp/l2tppppwidget.cpp (line 111)
<https://git.reviewboard.kde.org/r/125266/#comment61157>

if (dataMap.contains(QLatin1String(NM_L2TP_KEY_MRU))) {
...
}



vpn/l2tp/l2tppppwidget.cpp (line 189)
<https://git.reviewboard.kde.org/r/125266/#comment61158>

Remove space.



vpn/l2tp/l2tppppwidget.cpp (line 190)
<https://git.reviewboard.kde.org/r/125266/#comment61161>

Code style:

if (...) {
}



vpn/l2tp/l2tppppwidget.cpp (line 192)
<https://git.reviewboard.kde.org/r/125266/#comment61159>

Remove space.



vpn/l2tp/l2tppppwidget.cpp (line 193)
<https://git.reviewboard.kde.org/r/125266/#comment61162>

Code style:

if (...) {
}



vpn/l2tp/l2tppppwidget.cpp (line 195)
<https://git.reviewboard.kde.org/r/125266/#comment61160>

Remove space.



vpn/l2tp/l2tpwidget.cpp (line 91)
<https://git.reviewboard.kde.org/r/125266/#comment61163>

Remove space.



vpn/l2tp/l2tpwidget.cpp (line 92)
<https://git.reviewboard.kde.org/r/125266/#comment61168>

Use if (data.contains()) to check if the data exists before retrieving it with data.value(). That way you avoid allocating a temporary QString when not necessary.



vpn/l2tp/l2tpwidget.cpp (line 96)
<https://git.reviewboard.kde.org/r/125266/#comment61164>

Remove space.



vpn/l2tp/l2tpwidget.cpp (line 97)
<https://git.reviewboard.kde.org/r/125266/#comment61169>

Use data.contains()



vpn/l2tp/l2tpwidget.cpp (line 101)
<https://git.reviewboard.kde.org/r/125266/#comment61165>

Remove space.



vpn/l2tp/l2tpwidget.cpp (line 102)
<https://git.reviewboard.kde.org/r/125266/#comment61170>

Use data.contains()



vpn/l2tp/l2tpwidget.cpp (line 106)
<https://git.reviewboard.kde.org/r/125266/#comment61166>

Remove space.



vpn/l2tp/l2tpwidget.cpp (line 107)
<https://git.reviewboard.kde.org/r/125266/#comment61171>

Use QStringLiteral("yes") instead of just "yes". Add brackets after the parentesis and space after if.



vpn/l2tp/l2tpwidget.cpp (line 135)
<https://git.reviewboard.kde.org/r/125266/#comment61172>

This should be a QScopedPointer instead of QPointer or you will have a memory leak here.

Do not use NULL, use Q_NULLPTR instead.



vpn/l2tp/l2tpwidget.cpp (line 138)
<https://git.reviewboard.kde.org/r/125266/#comment61167>

Remove space.



vpn/l2tp/l2tpwidget.cpp (line 143)
<https://git.reviewboard.kde.org/r/125266/#comment61173>

QScopedPointer instead of QPointer.



vpn/l2tp/l2tpwidget.cpp (line 146)
<https://git.reviewboard.kde.org/r/125266/#comment61174>

Remove space.



vpn/l2tp/l2tpwidget.cpp (line 152)
<https://git.reviewboard.kde.org/r/125266/#comment61175>

Remove space.



vpn/l2tp/l2tpwidget.cpp (line 155)
<https://git.reviewboard.kde.org/r/125266/#comment61176>

Remove space.



vpn/l2tp/l2tpwidget.cpp (line 156)
<https://git.reviewboard.kde.org/r/125266/#comment61178>

Code style:

if (...) {
}



vpn/l2tp/l2tpwidget.cpp (line 162)
<https://git.reviewboard.kde.org/r/125266/#comment61177>

Remove space.



vpn/l2tp/l2tpwidget.cpp (line 265)
<https://git.reviewboard.kde.org/r/125266/#comment61179>

Code style:

if (...) {
} else {
}


- Lamarque Souza
Post by René Fürst
-----------------------------------------------------------
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------
(Updated Dec. 12, 2015, 11:11 p.m.)
Review request for Network Management and Plasma.
Repository: plasma-nm
Description
-------
Authentication with certificates / Make MRU/MTU editable / Dialog fix
Diffs
-----
vpn/l2tp/l2tpwidget.cpp b278228
vpn/l2tp/nm-l2tp-service.h ac2ecc9
vpn/l2tp/l2tpwidget.h 1e4c383
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tp.ui 22b9f73
vpn/l2tp/l2tpppp.ui 7e4fea3
Diff: https://git.reviewboard.kde.org/r/125266/diff/
Testing
-------
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened
The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c
Thanks,
René FÌrst
Kai Uwe Broulik
2015-12-13 01:29:28 UTC
Permalink
Post by René Fürst
vpn/l2tp/l2tpwidget.cpp, line 107
<https://git.reviewboard.kde.org/r/125266/diff/1/?file=404334#file404334line107>
Use QStringLiteral("yes") instead of just "yes". Add brackets after the parentesis and space after if.
Actually, for comparison prefer QLatin1String.


- Kai Uwe


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/#review89404
-----------------------------------------------------------
Post by René Fürst
-----------------------------------------------------------
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------
(Updated Dez. 12, 2015, 11:11 nachm.)
Review request for Network Management and Plasma.
Repository: plasma-nm
Description
-------
Authentication with certificates / Make MRU/MTU editable / Dialog fix
Diffs
-----
vpn/l2tp/l2tpwidget.cpp b278228
vpn/l2tp/nm-l2tp-service.h ac2ecc9
vpn/l2tp/l2tpwidget.h 1e4c383
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tp.ui 22b9f73
vpn/l2tp/l2tpppp.ui 7e4fea3
Diff: https://git.reviewboard.kde.org/r/125266/diff/
Testing
-------
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened
The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c
Thanks,
René FÌrst
Jan Grulich
2015-12-13 15:47:24 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/#review89418
-----------------------------------------------------------



vpn/l2tp/l2tpppp.ui (line 35)
<https://git.reviewboard.kde.org/r/125266/#comment61186>

Remove &amp; which is sometimes automatically added by designer.



vpn/l2tp/l2tpppp.ui (line 235)
<https://git.reviewboard.kde.org/r/125266/#comment61188>

&amp;



vpn/l2tp/l2tpppp.ui (line 256)
<https://git.reviewboard.kde.org/r/125266/#comment61187>

&amp;


- Jan Grulich
Post by René Fürst
-----------------------------------------------------------
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------
(Updated Pro. 12, 2015, 11:11 odp.)
Review request for Network Management and Plasma.
Repository: plasma-nm
Description
-------
Authentication with certificates / Make MRU/MTU editable / Dialog fix
Diffs
-----
vpn/l2tp/l2tpwidget.cpp b278228
vpn/l2tp/nm-l2tp-service.h ac2ecc9
vpn/l2tp/l2tpwidget.h 1e4c383
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tp.ui 22b9f73
vpn/l2tp/l2tpppp.ui 7e4fea3
Diff: https://git.reviewboard.kde.org/r/125266/diff/
Testing
-------
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened
The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c
Thanks,
René FÌrst
René Fürst
2015-12-13 22:04:46 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------

(Updated Dez. 13, 2015, 10:04 nachm.)


Review request for Network Management and Plasma.


Repository: plasma-nm


Description
-------

Authentication with certificates / Make MRU/MTU editable / Dialog fix


Diffs (updated)
-----

vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9

Diff: https://git.reviewboard.kde.org/r/125266/diff/


Testing
-------

This patch contains 3 things:
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened

The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c


Thanks,

René FÌrst
René Fürst
2015-12-13 22:09:27 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/#review89434
-----------------------------------------------------------



vpn/l2tp/l2tpwidget.cpp (line 92)
<https://git.reviewboard.kde.org/r/125266/#comment61201>

I fixed the ones above too because they have the same issue.


- René FÌrst
Post by René Fürst
-----------------------------------------------------------
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------
(Updated Dez. 13, 2015, 10:04 nachm.)
Review request for Network Management and Plasma.
Repository: plasma-nm
Description
-------
Authentication with certificates / Make MRU/MTU editable / Dialog fix
Diffs
-----
vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9
Diff: https://git.reviewboard.kde.org/r/125266/diff/
Testing
-------
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened
The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c
Thanks,
René FÌrst
René Fürst
2015-12-13 22:19:35 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------

(Updated Dez. 13, 2015, 10:19 nachm.)


Review request for Network Management and Plasma.


Changes
-------

Minor indetion fixes... Please note: this patch is now based on the latest revision.


Repository: plasma-nm


Description
-------

Authentication with certificates / Make MRU/MTU editable / Dialog fix


Diffs (updated)
-----

vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9

Diff: https://git.reviewboard.kde.org/r/125266/diff/


Testing
-------

This patch contains 3 things:
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened

The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c


Thanks,

René FÌrst
Lamarque Souza
2015-12-13 22:35:13 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/#review89436
-----------------------------------------------------------



vpn/l2tp/l2tpwidget.cpp (line 102)
<https://git.reviewboard.kde.org/r/125266/#comment61205>

Actually it should have been QLatin1String instead of QStringLiteral here. Sorry the wrong tip.



vpn/l2tp/l2tpwidget.cpp (line 176)
<https://git.reviewboard.kde.org/r/125266/#comment61206>

Use switch intead of nested if's here. Take a look at OpenVpnSettingWidget::handleOnePasswordType() to see how to do that.



vpn/l2tp/l2tpwidget.cpp (line 180)
<https://git.reviewboard.kde.org/r/125266/#comment61207>

This comment has no meaning, remove it.


- Lamarque Souza
Post by René Fürst
-----------------------------------------------------------
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------
(Updated Dec. 13, 2015, 10:19 p.m.)
Review request for Network Management and Plasma.
Repository: plasma-nm
Description
-------
Authentication with certificates / Make MRU/MTU editable / Dialog fix
Diffs
-----
vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9
Diff: https://git.reviewboard.kde.org/r/125266/diff/
Testing
-------
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened
The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c
Thanks,
René FÌrst
René Fürst
2015-12-13 22:45:23 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/#review89437
-----------------------------------------------------------



vpn/l2tp/l2tpwidget.cpp (line 176)
<https://git.reviewboard.kde.org/r/125266/#comment61208>

That's actually not my code. I just indented it because it went into an if. Fixed it anyway.


- René FÌrst
Post by René Fürst
-----------------------------------------------------------
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------
(Updated Dez. 13, 2015, 10:19 nachm.)
Review request for Network Management and Plasma.
Repository: plasma-nm
Description
-------
Authentication with certificates / Make MRU/MTU editable / Dialog fix
Diffs
-----
vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9
Diff: https://git.reviewboard.kde.org/r/125266/diff/
Testing
-------
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened
The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c
Thanks,
René FÌrst
Lamarque Souza
2015-12-13 22:50:44 UTC
Permalink
Post by René Fürst
vpn/l2tp/l2tpwidget.cpp, line 183
<https://git.reviewboard.kde.org/r/125266/diff/3/?file=422014#file422014line183>
That's actually not my code. I just indented it because it went into an if. Fixed it anyway.
Do not do code style only changes in code that do not belong to this patch. That makes reviewing more difficult for all of us that are reviewing this patch.


- Lamarque


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/#review89437
-----------------------------------------------------------
Post by René Fürst
-----------------------------------------------------------
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------
(Updated Dec. 13, 2015, 10:48 p.m.)
Review request for Network Management and Plasma.
Repository: plasma-nm
Description
-------
Authentication with certificates / Make MRU/MTU editable / Dialog fix
Diffs
-----
vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9
Diff: https://git.reviewboard.kde.org/r/125266/diff/
Testing
-------
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened
The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c
Thanks,
René FÌrst
René Fürst
2015-12-13 23:00:09 UTC
Permalink
Post by Lamarque Souza
vpn/l2tp/l2tpwidget.cpp, line 183
<https://git.reviewboard.kde.org/r/125266/diff/3/?file=422014#file422014line183>
That's actually not my code. I just indented it because it went into an if. Fixed it anyway.
Do not do code style only changes in code that do not belong to this patch. That makes reviewing more difficult for all of us that are reviewing this patch.
Should I then submit a patch without indention on old code that went into an if and one with it? Because in the end I think a patch with correct indention is required, right?


- René


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/#review89437
-----------------------------------------------------------
Post by Lamarque Souza
-----------------------------------------------------------
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------
(Updated Dez. 13, 2015, 10:48 nachm.)
Review request for Network Management and Plasma.
Repository: plasma-nm
Description
-------
Authentication with certificates / Make MRU/MTU editable / Dialog fix
Diffs
-----
vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9
Diff: https://git.reviewboard.kde.org/r/125266/diff/
Testing
-------
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened
The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c
Thanks,
René FÌrst
Lamarque Souza
2015-12-16 11:22:58 UTC
Permalink
Post by Lamarque Souza
vpn/l2tp/l2tpwidget.cpp, line 183
<https://git.reviewboard.kde.org/r/125266/diff/3/?file=422014#file422014line183>
That's actually not my code. I just indented it because it went into an if. Fixed it anyway.
Do not do code style only changes in code that do not belong to this patch. That makes reviewing more difficult for all of us that are reviewing this patch.
Should I then submit a patch without indention on old code that went into an if and one with it? Because in the end I think a patch with correct indention is required, right?
Yes, submit a second patch with the code style changes. Pure code style changes makes reviewing more difficult and should be avoided.


- Lamarque


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/#review89437
-----------------------------------------------------------
Post by Lamarque Souza
-----------------------------------------------------------
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------
(Updated Dec. 13, 2015, 10:48 p.m.)
Review request for Network Management and Plasma.
Repository: plasma-nm
Description
-------
Authentication with certificates / Make MRU/MTU editable / Dialog fix
Diffs
-----
vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9
Diff: https://git.reviewboard.kde.org/r/125266/diff/
Testing
-------
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened
The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c
Thanks,
René FÌrst
René Fürst
2015-12-13 22:48:28 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------

(Updated Dez. 13, 2015, 10:48 nachm.)


Review request for Network Management and Plasma.


Repository: plasma-nm


Description
-------

Authentication with certificates / Make MRU/MTU editable / Dialog fix


Diffs (updated)
-----

vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9

Diff: https://git.reviewboard.kde.org/r/125266/diff/


Testing
-------

This patch contains 3 things:
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened

The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c


Thanks,

René FÌrst
Lamarque Souza
2015-12-14 00:22:42 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/#review89443
-----------------------------------------------------------


- Lamarque Souza
Post by René Fürst
-----------------------------------------------------------
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------
(Updated Dec. 13, 2015, 10:48 p.m.)
Review request for Network Management and Plasma.
Repository: plasma-nm
Description
-------
Authentication with certificates / Make MRU/MTU editable / Dialog fix
Diffs
-----
vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9
Diff: https://git.reviewboard.kde.org/r/125266/diff/
Testing
-------
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened
The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c
Thanks,
René FÌrst
René Fürst
2015-12-16 22:21:03 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------

(Updated Dez. 16, 2015, 10:21 nachm.)


Review request for Network Management and Plasma.


Changes
-------

Added a patch without indent changes


Repository: plasma-nm


Description
-------

Authentication with certificates / Make MRU/MTU editable / Dialog fix


Diffs
-----

vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9

Diff: https://git.reviewboard.kde.org/r/125266/diff/


Testing
-------

This patch contains 3 things:
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened

The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c


File Attachments (updated)
----------------

Patch without indent changes
https://git.reviewboard.kde.org/media/uploaded/files/2015/12/16/e492aabf-c098-4ea7-bff0-30a13cc3fdda__cert_mru_mtu_dialog_fix4_noindent.diff


Thanks,

René FÌrst
Lamarque Souza
2015-12-17 01:43:48 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/#review89631
-----------------------------------------------------------



vpn/l2tp/l2tpwidget.cpp (line 177)
<https://git.reviewboard.kde.org/r/125266/#comment61392>

Code style: the identation is wrong "case" should align vertically with "switch". Other than that the patch looks good to me.


- Lamarque Souza
Post by René Fürst
-----------------------------------------------------------
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------
(Updated Dec. 16, 2015, 10:21 p.m.)
Review request for Network Management and Plasma.
Repository: plasma-nm
Description
-------
Authentication with certificates / Make MRU/MTU editable / Dialog fix
Diffs
-----
vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9
Diff: https://git.reviewboard.kde.org/r/125266/diff/
Testing
-------
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened
The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c
File Attachments
----------------
Patch without indent changes
https://git.reviewboard.kde.org/media/uploaded/files/2015/12/16/e492aabf-c098-4ea7-bff0-30a13cc3fdda__cert_mru_mtu_dialog_fix4_noindent.diff
Thanks,
René FÌrst
Lamarque Souza
2015-12-17 01:43:55 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/#review89632
-----------------------------------------------------------

Ship it!


Ship It!

- Lamarque Souza
Post by René Fürst
-----------------------------------------------------------
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------
(Updated Dec. 16, 2015, 10:21 p.m.)
Review request for Network Management and Plasma.
Repository: plasma-nm
Description
-------
Authentication with certificates / Make MRU/MTU editable / Dialog fix
Diffs
-----
vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9
Diff: https://git.reviewboard.kde.org/r/125266/diff/
Testing
-------
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened
The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c
File Attachments
----------------
Patch without indent changes
https://git.reviewboard.kde.org/media/uploaded/files/2015/12/16/e492aabf-c098-4ea7-bff0-30a13cc3fdda__cert_mru_mtu_dialog_fix4_noindent.diff
Thanks,
René FÌrst
René Fürst
2016-02-02 21:40:06 UTC
Permalink
Post by René Fürst
Post by Lamarque Souza
Ship It!
So how do i get this checked in?
The tutorial just says "If your patch was accepted, congratulations! :)" ^^
https://techbase.kde.org/Contribute/Send_Patches


- René


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/#review89632
-----------------------------------------------------------
Post by René Fürst
-----------------------------------------------------------
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------
(Updated Dec. 17, 2015, 8:40 p.m.)
Review request for Network Management and Plasma.
Repository: plasma-nm
Description
-------
Authentication with certificates / Make MRU/MTU editable / Dialog fix
Diffs
-----
vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9
Diff: https://git.reviewboard.kde.org/r/125266/diff/
Testing
-------
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened
The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c
File Attachments
----------------
Patch without indent changes
https://git.reviewboard.kde.org/media/uploaded/files/2015/12/16/e492aabf-c098-4ea7-bff0-30a13cc3fdda__cert_mru_mtu_dialog_fix4_noindent.diff
Thanks,
René FÌrst
René Fürst
2015-12-17 20:40:59 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------

(Updated Dez. 17, 2015, 8:40 nachm.)


Review request for Network Management and Plasma.


Changes
-------

fixed the code style for a switch


Repository: plasma-nm


Description
-------

Authentication with certificates / Make MRU/MTU editable / Dialog fix


Diffs (updated)
-----

vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9

Diff: https://git.reviewboard.kde.org/r/125266/diff/


Testing
-------

This patch contains 3 things:
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened

The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c


File Attachments
----------------

Patch without indent changes
https://git.reviewboard.kde.org/media/uploaded/files/2015/12/16/e492aabf-c098-4ea7-bff0-30a13cc3fdda__cert_mru_mtu_dialog_fix4_noindent.diff


Thanks,

René FÌrst
René Fürst
2016-02-02 22:17:23 UTC
Permalink
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/125266/
-----------------------------------------------------------

(Updated Feb. 2, 2016, 10:17 p.m.)


Status
------

This change has been marked as submitted.


Review request for Network Management and Plasma.


Changes
-------

Submitted with commit b4c7cf28c3fea1ce54ca86d7d65494cc861b69bf by Lamarque V. Souza on behalf of Rene Furst to branch master.


Repository: plasma-nm


Description
-------

Authentication with certificates / Make MRU/MTU editable / Dialog fix


Diffs
-----

vpn/l2tp/l2tp.ui bf35d02
vpn/l2tp/l2tpppp.ui 3c70165
vpn/l2tp/l2tppppwidget.cpp ffe2c2b
vpn/l2tp/l2tpwidget.h a161b53
vpn/l2tp/l2tpwidget.cpp a4ff42f
vpn/l2tp/nm-l2tp-service.h ac2ecc9

Diff: https://git.reviewboard.kde.org/r/125266/diff/


Testing
-------

This patch contains 3 things:
1) Add authentication with certificates
2) Make MRU/MTU editable
3) Fix an issue where PPP/Advanced settings were lost when the dialogs were not opened

The base for 1) and 2) was added to NetworkManager-l2tp here https://github.com/frenetic1/NetworkManager-l2tp/commit/8103cf09e2cda19d701a48331eba069ff4c8e82c


File Attachments
----------------

Patch without indent changes
https://git.reviewboard.kde.org/media/uploaded/files/2015/12/16/e492aabf-c098-4ea7-bff0-30a13cc3fdda__cert_mru_mtu_dialog_fix4_noindent.diff


Thanks,

René FÌrst

Loading...