Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
blog
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
Container Registry
Model registry
Operate
Environments
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
cubicweb
cubes
blog
Commits
c31eb0c07ac6
Commit
c31eb0c07ac6
authored
15 years ago
by
Sandrine Ribeau
Browse files
Options
Downloads
Patches
Plain Diff
[schema] add workflow on BlogEntry so that anonymous could only see published blog entries
parent
38eda314be39
No related branches found
Branches containing commit
Tags
0.2.4
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
migration/1.7.0_Any.py
+22
-0
22 additions, 0 deletions
migration/1.7.0_Any.py
migration/postcreate.py
+9
-0
9 additions, 0 deletions
migration/postcreate.py
schema.py
+8
-1
8 additions, 1 deletion
schema.py
with
39 additions
and
1 deletion
migration/1.7.0_Any.py
0 → 100644
+
22
−
0
View file @
c31eb0c0
add_relation_definition
(
'
BlogEntry
'
,
'
in_state
'
,
'
State
'
)
add_relation_definition
(
'
TrInfo
'
,
'
wf_info_for
'
,
'
BlogEntry
'
)
add_relation_definition
(
'
BlogEntry
'
,
'
custom_workflow
'
,
'
Workflow
'
)
# add BlogEntry workflow
bwf
=
add_workflow
(
_
(
'
default BlogEntry workflow
'
),
'
BlogEntry
'
)
draft
=
bwf
.
add_state
(
_
(
'
draft
'
),
initial
=
True
)
published
=
bwf
.
add_state
(
_
(
'
published
'
))
publish
=
bwf
.
add_transition
(
_
(
'
publish
'
),
draft
,
published
,
(
'
managers
'
,))
checkpoint
()
# set state to published for already existing blog entries
blogentries
=
rql
(
'
Any B WHERE B is BlogEntry
'
)
for
blogentry
in
blogentries
:
session
.
unsafe_execute
(
'
SET B in_state S WHERE S name
"
published
"
, B eid %(b)s
'
,
{
'
b
'
:
blogentry
[
0
]})
checkpoint
()
This diff is collapsed.
Click to expand it.
migration/postcreate.py
+
9
−
0
View file @
c31eb0c0
# postcreate script. You could setup a workflow here for example
# BlogEntry workflow
bwf
=
add_workflow
(
_
(
'
default BlogEntry workflow
'
),
'
BlogEntry
'
)
draft
=
bwf
.
add_state
(
_
(
'
draft
'
),
initial
=
True
)
published
=
bwf
.
add_state
(
_
(
'
published
'
))
publish
=
bwf
.
add_transition
(
_
(
'
publish
'
),
draft
,
published
,
(
'
managers
'
,))
This diff is collapsed.
Click to expand it.
schema.py
+
8
−
1
View file @
c31eb0c0
from
yams.buildobjs
import
EntityType
,
String
,
SubjectRelation
from
cubicweb.schema
import
WorkflowableEntityType
try
:
from
yams.buildobjs
import
RichString
except
ImportError
:
...
...
@@ -11,7 +12,13 @@
rss_url
=
String
(
maxsize
=
128
,
description
=
_
(
'
blog
\'
s rss url (useful for when using external site such as feedburner)
'
))
class
BlogEntry
(
EntityType
):
class
BlogEntry
(
WorkflowableEntityType
):
permissions
=
{
'
read
'
:
(
'
managers
'
,
'
users
'
,
ERQLExpression
(
'
X in_state S, S name
"
published
"'
),),
'
add
'
:
(
'
managers
'
,
'
users
'
),
'
update
'
:
(
'
managers
'
,
'
owners
'
),
'
delete
'
:
(
'
managers
'
,
'
owners
'
)
}
title
=
String
(
required
=
True
,
fulltextindexed
=
True
,
maxsize
=
256
)
content
=
RichString
(
required
=
True
,
fulltextindexed
=
True
)
entry_of
=
SubjectRelation
(
'
Blog
'
,
cardinality
=
'
**
'
)
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