Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Fachgruppenwebseite Metadaten
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package 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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fginfo
Fachgruppenwebseite Metadaten
Commits
f7e7da27
Verified
Commit
f7e7da27
authored
2 years ago
by
Jake
Browse files
Options
Downloads
Patches
Plain Diff
added common.combine()
parent
ecc3e4be
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
fgs/__main__.py
+7
-3
7 additions, 3 deletions
fgs/__main__.py
fgs/common.py
+14
-0
14 additions, 0 deletions
fgs/common.py
fgs/datatypes.py
+3
-2
3 additions, 2 deletions
fgs/datatypes.py
fgs/writer.py
+4
-2
4 additions, 2 deletions
fgs/writer.py
with
28 additions
and
7 deletions
fgs/__main__.py
+
7
−
3
View file @
f7e7da27
...
@@ -5,6 +5,7 @@ import os
...
@@ -5,6 +5,7 @@ import os
import
sys
import
sys
import
common
import
datatypes
import
datatypes
import
reader
import
reader
import
generator
import
generator
...
@@ -19,11 +20,13 @@ def main():
...
@@ -19,11 +20,13 @@ def main():
print
(
"
Hello World
"
)
print
(
"
Hello World
"
)
config
=
{}
config
=
{}
with
open
(
'
../config.json
'
)
as
f
:
with
open
(
'
../config.json
'
)
as
f
:
config
.
update
(
json
.
loads
(
f
.
read
()))
config
=
common
.
combine
(
config
,
json
.
loads
(
f
.
read
()))
with
open
(
'
../lang.json
'
)
as
f
:
with
open
(
'
../lang.json
'
)
as
f
:
config
[
'
lang
'
]
=
json
.
loads
(
f
.
read
())
if
'
lang
'
not
in
config
:
config
[
'
lang
'
]
=
{}
config
[
'
lang
'
]
=
common
.
combine
(
config
[
'
lang
'
],
json
.
loads
(
f
.
read
()))
with
open
(
CONTENT_DIR
+
'
/config.json
'
)
as
f
:
with
open
(
CONTENT_DIR
+
'
/config.json
'
)
as
f
:
config
.
update
(
json
.
loads
(
f
.
read
()))
config
=
common
.
combine
(
config
,
json
.
loads
(
f
.
read
()))
print
(
config
)
print
(
config
)
factories
=
{}
factories
=
{}
...
@@ -62,6 +65,7 @@ def main():
...
@@ -62,6 +65,7 @@ def main():
def
read_static_dir
(
directory
,
static_files
,
subpath
=
[]):
def
read_static_dir
(
directory
,
static_files
,
subpath
=
[]):
print
(
"
static_dir:
"
+
directory
);
print
(
"
static_dir:
"
+
directory
);
for
filename
in
os
.
listdir
(
directory
):
for
filename
in
os
.
listdir
(
directory
):
...
...
This diff is collapsed.
Click to expand it.
fgs/common.py
0 → 100644
+
14
−
0
View file @
f7e7da27
def
combine
(
old
,
new
):
if
type
(
old
)
!=
type
(
new
):
raise
Exception
(
"
Cannot combine different types:
"
,
type
(
old
),
type
(
new
),
old
,
new
)
if
isinstance
(
old
,
dict
):
res
=
old
.
copy
()
for
key
,
value
in
new
.
items
():
if
key
in
res
:
res
[
key
]
=
combine
(
res
[
key
],
value
)
else
:
res
[
key
]
=
value
return
res
else
:
return
new
This diff is collapsed.
Click to expand it.
fgs/datatypes.py
+
3
−
2
View file @
f7e7da27
import
datetime
import
datetime
from
dateutil
import
parser
as
dtparser
from
dateutil
import
parser
as
dtparser
import
common
class
DictConverter
:
class
DictConverter
:
def
__init__
(
self
,
factories
):
def
__init__
(
self
,
factories
):
...
@@ -106,8 +108,7 @@ class Page:
...
@@ -106,8 +108,7 @@ class Page:
if
self
.
lang
==
deflang
:
if
self
.
lang
==
deflang
:
return
self
.
_metadata
return
self
.
_metadata
defpage
=
self
.
_factories
[
'
page
'
].
get
(
self
.
slug
,
deflang
)
defpage
=
self
.
_factories
[
'
page
'
].
get
(
self
.
slug
,
deflang
)
res
=
defpage
.
metadata
.
copy
()
res
=
common
.
combine
(
defpage
.
metadata
,
self
.
_metadata
)
res
.
update
(
self
.
_metadata
)
return
res
return
res
metadata
=
property
(
get_metadata
,
None
,
None
)
metadata
=
property
(
get_metadata
,
None
,
None
)
...
...
This diff is collapsed.
Click to expand it.
fgs/writer.py
+
4
−
2
View file @
f7e7da27
...
@@ -2,6 +2,8 @@ from jinja2 import Environment, FileSystemLoader, StrictUndefined
...
@@ -2,6 +2,8 @@ from jinja2 import Environment, FileSystemLoader, StrictUndefined
import
os
import
os
import
common
class
Writer
:
class
Writer
:
def
__init__
(
self
,
config
,
context
,
output_dir
,
theme_dir
):
def
__init__
(
self
,
config
,
context
,
output_dir
,
theme_dir
):
...
@@ -35,7 +37,7 @@ class Writer:
...
@@ -35,7 +37,7 @@ class Writer:
# render template
# render template
context
=
{}
context
=
{}
context
.
update
(
self
.
context
)
context
=
common
.
combine
(
context
,
self
.
context
)
context
[
"
config
"
]
=
localized_config
context
[
"
config
"
]
=
localized_config
context
[
"
theme
"
]
=
localized_config
[
'
theme
'
]
context
[
"
theme
"
]
=
localized_config
[
'
theme
'
]
context
[
"
template
"
]
=
template
context
[
"
template
"
]
=
template
...
@@ -43,7 +45,7 @@ class Writer:
...
@@ -43,7 +45,7 @@ class Writer:
context
[
"
l
"
]
=
lang
# current language
context
[
"
l
"
]
=
lang
# current language
context
[
"
path
"
]
=
path
context
[
"
path
"
]
=
path
context
[
"
siteurl
"
]
=
siteurl
context
[
"
siteurl
"
]
=
siteurl
context
.
update
(
extra_context
)
context
=
common
.
combine
(
context
,
extra_context
)
#print("template: ", template)
#print("template: ", template)
#print("path: ", path)
#print("path: ", path)
#print("lang: ", lang)
#print("lang: ", lang)
...
...
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