How to get wiki editing permissions

Discussions about the wiki documentation of FreeCAD and its translation.
Forum rules
Be nice to others! Respect the FreeCAD code of conduct!
chrisb
Veteran
Posts: 54177
Joined: Tue Mar 17, 2015 9:14 am

Re: How to get wiki editing permissions

Post by chrisb »

Kamin wrote: Mon Sep 07, 2020 5:48 am I've found a mistake in the Wiki.
Please tell us which error you intend to fix.
A Sketcher Lecture with in-depth information is available in English, auf Deutsch, en français, en español.
Kamin
Posts: 2
Joined: Mon Sep 07, 2020 5:36 am

Re: How to get wiki editing permissions

Post by Kamin »

In https://wiki.freecadweb.org/Feature_editing , there is a grammatical error:
... After all, in FreeCAD, the a new feature must be touching ....
chrisb
Veteran
Posts: 54177
Joined: Tue Mar 17, 2015 9:14 am

Re: How to get wiki editing permissions

Post by chrisb »

Thanks for contributing to the wiki. I had to ask back, because your generic post smelled like spam.
A Sketcher Lecture with in-depth information is available in English, auf Deutsch, en français, en español.
T33
Posts: 11
Joined: Sun Oct 11, 2020 8:55 am

Re: How to get wiki editing permissions

Post by T33 »

Hello, I was following the tutorials on the wiki and found 2 mistakes.

Page:
https://wiki.freecadweb.org/Topological_data_scripting

1. Old Python 2 print statement no longer works in Python console.

Chapter: Create a vector

Code: Select all

print myVertex.Point
Should be

Code: Select all

print(myVertex.Point)
2. Seems a copy/paste typo in the last lines of code from the "Create a face" chapter.
face -> sface (only for last line)

Chapter: Create a face

Code: Select all

sface = Part.Face(wire2)
face.isValid()
> False
Should be

Code: Select all

sface = Part.Face(wire2)
sface.isValid()
> False
User avatar
Kunda1
Veteran
Posts: 13434
Joined: Thu Jan 05, 2017 9:03 pm

Re: How to get wiki editing permissions

Post by Kunda1 »

T33 wrote: Sun Oct 11, 2020 9:05 am 1. Old Python 2 print statement no longer works in Python console.

Chapter: Create a vector

Code: Select all

print myVertex.Point
Should be

Code: Select all

print(myVertex.Point)
FreeCAD still supports py2 (according to wmayer, until v0.19 is released)
So if you were to make a change it would be to mention both py2 and py3 options
T33 wrote: Sun Oct 11, 2020 9:05 am 2. Seems a copy/paste typo in the last lines of code from the "Create a face" chapter.
face -> sface (only for last line)

Chapter: Create a face

Code: Select all

sface = Part.Face(wire2)
face.isValid()
> False
Should be

Code: Select all

sface = Part.Face(wire2)
sface.isValid()
> False
Indeed.
PM me with username and valid email, and I can set you up with an account
Thanks for your effort :smile:
Alone you go faster. Together we go farther
Please mark thread [Solved]
Want to contribute back to FC? Checkout:
'good first issues' | Open TODOs and FIXMEs | How to Help FreeCAD | How to report Bugs
openBrain
Veteran
Posts: 9041
Joined: Fri Nov 09, 2018 5:38 pm
Contact:

Re: How to get wiki editing permissions

Post by openBrain »

T33 wrote: Sun Oct 11, 2020 10:29 am Found 2 more errors in the wiki.
Please do not hijack this topic which is about getting wiki access. There is a 'Wiki' subtopic on the forum when you can freely post all your findings. ;) Thx
User avatar
Kunda1
Veteran
Posts: 13434
Joined: Thu Jan 05, 2017 9:03 pm

Re: How to get wiki editing permissions

Post by Kunda1 »

openBrain wrote: Sun Oct 11, 2020 10:32 am Please do not hijack this topic which is about getting wiki access. There is a 'Wiki' subtopic on the forum when you can freely post all your findings. ;) Thx
I split it off in to its own thread in the Wiki subforum. Thanks.
Alone you go faster. Together we go farther
Please mark thread [Solved]
Want to contribute back to FC? Checkout:
'good first issues' | Open TODOs and FIXMEs | How to Help FreeCAD | How to report Bugs
T33
Posts: 11
Joined: Sun Oct 11, 2020 8:55 am

Re: How to get wiki editing permissions

Post by T33 »

Thanks for informing me and giving me access.
I'll update the wiki accordingly and post any changes I find/make in the separate thread.
Rylord
Posts: 3
Joined: Thu Oct 22, 2020 1:19 pm

Re: How to get wiki editing permissions

Post by Rylord »

Hello, I cannot access the following post:

https://wiki.freecadweb.org/Sketcher_BS ... plicity/en

It says I need to login, but I already have an account logged-in. Not sure what I am missing. Any help is appreciated.

Ryan
renatorivo
Veteran
Posts: 2611
Joined: Tue Feb 21, 2012 8:07 pm
Location: Torino - Italy

Re: How to get wiki editing permissions

Post by renatorivo »

The .../en pages are not editable, they are generated automatically. What do you want to do?

Changes must be made on the page without any language code Sketcher_BSplineIncreaseKnotMultiplicity
Post Reply