.gitignore
author Edouard Tisserant <edouard@beremiz.fr>
Thu, 05 Dec 2024 13:56:59 +0100
changeset 4060 d2f5eb3c7d6e
parent 3961 f01bd9a40554
permissions -rw-r--r--
py_ext: fix CSV Writer

fix POU logic :
- SAVE is a BOOL
- invocation of py_eval on rising edge of SAVE
- remove save python argument

fix python:
- use no encoding for file open (python2)
- re-use detected dialect if any
- use no "rt+" and truncate since no need to re-sniff dialect for output file
- return "OK" instead of "#SUCCESS", preventing POU logic to ACK result
- support creating new line if writing just after last line
- support appending data on short rows

fix example:
- use a HMI:Button to trigger CSV write instead of HMI:Input +1
- reload CSVs on on each new CSV opened in file browser
- add display of CSV write output
3796
b0507eb2be1f update .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
diff changeset
     1
*.pyc
b0507eb2be1f update .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents:
diff changeset
     2
**/__pycache__
3807
87f670154294 Updaye .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3796
diff changeset
     3
.vscode
87f670154294 Updaye .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3796
diff changeset
     4
**/build/**
3819
4582f0fcf4c4 update .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3807
diff changeset
     5
*.class
4582f0fcf4c4 update .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3807
diff changeset
     6
**/.svghmithumbs/**
3826
f370b71e3418 Update .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3819
diff changeset
     7
**/my_*.der
f370b71e3418 Update .gitignore
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3819
diff changeset
     8
**/my_*.pem
3841
02fa0f8484d7 Tests: align on requirements.txt
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3826
diff changeset
     9
tests/tools/Docker/requirements.txt
3940
934bd46a7500 C++ runtime: WIP: untested PLCObject implementation. Still missing tracing.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3841
diff changeset
    10
**/management.json
934bd46a7500 C++ runtime: WIP: untested PLCObject implementation. Still missing tracing.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3841
diff changeset
    11
**/.secret
934bd46a7500 C++ runtime: WIP: untested PLCObject implementation. Still missing tracing.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3841
diff changeset
    12
3942
ac6408084c60 Doc: Add about section (PR #33)
Nadim Khan <34601107+nadim4114@users.noreply.github.com>
parents: 3841
diff changeset
    13
doc/_build/**
3940
934bd46a7500 C++ runtime: WIP: untested PLCObject implementation. Still missing tracing.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3841
diff changeset
    14
doc/locale/**
934bd46a7500 C++ runtime: WIP: untested PLCObject implementation. Still missing tracing.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3841
diff changeset
    15
934bd46a7500 C++ runtime: WIP: untested PLCObject implementation. Still missing tracing.
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3841
diff changeset
    16
C_runtime/**/*.d
3961
f01bd9a40554 C runtime: cosmetic changes
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3943
diff changeset
    17
C_runtime/**/*.o
f01bd9a40554 C runtime: cosmetic changes
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3943
diff changeset
    18
beremiz_runtime
f01bd9a40554 C runtime: cosmetic changes
Edouard Tisserant <edouard.tisserant@gmail.com>
parents: 3943
diff changeset
    19
**/tmp/**