Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
d77c6952
Commit
d77c6952
authored
4 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
update-website: merge similar fcts
parent
b6376987
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
devtools/code-tools/update-website.py
+28
-37
28 additions, 37 deletions
devtools/code-tools/update-website.py
with
28 additions
and
37 deletions
devtools/code-tools/update-website.py
+
28
−
37
View file @
d77c6952
...
...
@@ -10,7 +10,7 @@ This will run all existing examples and generate intensity images for web site.
python update-examples.py <website-source-dir> <BornAgain-source-dir> <BornAgain-build-dir>
"""
import
argparse
,
os
,
shutil
import
argparse
,
datetime
,
os
,
shutil
def
find_files
(
dir_name
):
"""
...
...
@@ -68,33 +68,15 @@ def copy_files(source_list, destination_list):
print
(
f
)
def
update_example_scripts
(
website_dir
,
bornagain_source
):
"""
Copies example scripts from BornAgain to website.
"""
website
=
os
.
path
.
join
(
website_dir
,
"
static/files/python
"
)
source
=
os
.
path
.
join
(
bornagain_source
,
"
Examples/Python
"
)
website_files
=
get_files
(
website
,
"
.py
"
)
source_files
=
get_files
(
source
,
"
.py
"
)
print
(
f
'
Update
{
len
(
website_files
)
}
scripts ...
'
)
if
verbose
:
print
(
website_files
)
copy_files
(
source_files
,
website_files
)
def
update_all_files_of_one_type
(
source
,
destination
,
extension
):
source_files
=
get_files
(
source
,
extension
)
website_files
=
get_files
(
destination
,
extension
)
def
update_example_images
(
website_dir
,
example_images
):
"""
Copies example images from BornAgain build directory to website.
"""
print
(
"
Update images ...
"
)
print
(
f
'
Update
{
len
(
website_files
)
}
{
extension
}
files ...
'
)
website
=
os
.
path
.
join
(
website_dir
,
"
content/documentation/examples
"
)
source
=
example_images
website_files
=
get_files
(
website
,
"
.png
"
)
source_files
=
get_files
(
source
,
"
.png
"
)
flog
.
write
(
f
'
Update
{
len
(
website_files
)
}
{
extension
}
files:
'
)
flog
.
write
(
f
'
{
website_files
}
'
)
copy_files
(
source_files
,
website_files
)
...
...
@@ -103,31 +85,40 @@ def update_website(website_source_dir, ba_source_dir, ba_build_dir):
"""
Updates example scripts and images on website.
"""
user_website_dir
=
os
.
path
.
expanduser
(
website_source_dir
)
# Start logging
website_dirpath
=
os
.
path
.
expanduser
(
website_source_dir
)
log_path
=
os
.
path
.
join
(
website_dirpath
,
"
update.examples.log
"
)
global
flog
flog
=
open
(
log_path
,
"
a
"
)
print
(
f
'
Appending log to
{
log_path
}
'
)
flog
.
write
(
f
'
\n
===
\n
{
datetime
.
datetime
.
now
().
strftime
(
"
%d%b%y %H
:
%
M
:
%
S
"
)
}
\n
'
)
user_source_dir
=
os
.
path
.
expanduser
(
ba_source_dir
)
user_build_dir
=
os
.
path
.
expanduser
(
ba_build_dir
)
user_image_dir
=
os
.
path
.
join
(
user_build_dir
,
"
test_output/Functional/PyExamples
"
)
if
verbose
:
print
(
"
Directories:
"
)
print
(
"
website_dir :
'
{}
'"
.
format
(
user_website_dir
))
print
(
"
source_dir :
'
{}
'"
.
format
(
user_source_dir
))
print
(
"
build_dir :
'
{}
'"
.
format
(
user_build_dir
))
print
(
"
image_dir :
'
{}
'"
.
format
(
user_image_dir
))
flog
.
write
(
'
Directories:
\n
'
)
flog
.
write
(
f
'
website_dir :
{
website_dirpath
}
\n
'
)
flog
.
write
(
f
'
source_dir :
{
user_source_dir
}
\n
'
)
flog
.
write
(
f
'
build_dir :
{
user_build_dir
}
\n
'
)
flog
.
write
(
f
'
image_dir :
{
user_image_dir
}
\n
'
)
website
=
os
.
path
.
join
(
website_dirpath
,
"
static/files/python
"
)
source
=
os
.
path
.
join
(
user_source_dir
,
"
Examples/Python
"
)
update_all_files_of_one_type
(
source
,
website_dirpath
,
'
.py
'
)
update_example_scripts
(
user_website_dir
,
user_source_dir
)
update_example_images
(
user_website_dir
,
user_image_dir
)
website
=
os
.
path
.
join
(
website_dirpath
,
"
content/documentation/examples
"
)
source
=
user_image_dir
update_all_files_of_one_type
(
source
,
website_dirpath
,
'
.png
'
)
if
__name__
==
'
__main__
'
:
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
"
-v
"
,
"
--verbose
"
,
action
=
"
store_true
"
)
parser
.
add_argument
(
"
website_source_dir
"
,
type
=
str
)
parser
.
add_argument
(
"
ba_source_dir
"
,
type
=
str
)
parser
.
add_argument
(
"
ba_build_dir
"
,
type
=
str
)
args
=
parser
.
parse_args
()
verbose
=
args
.
verbose
update_website
(
args
.
website_source_dir
,
args
.
ba_source_dir
,
args
.
ba_build_dir
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment