Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
RQL
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
RQL
Commits
b5a69faac4ea
Commit
b5a69faac4ea
authored
14 years ago
by
Sylvain Thénault
Browse files
Options
Downloads
Plain Diff
backport stable
parents
35e86ad388c8
5a8ae1ed1c84
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.hgtags
+2
-0
2 additions, 0 deletions
.hgtags
ChangeLog
+6
-0
6 additions, 0 deletions
ChangeLog
__pkginfo__.py
+1
-1
1 addition, 1 deletion
__pkginfo__.py
debian/changelog
+6
-0
6 additions, 0 deletions
debian/changelog
nodes.py
+4
-1
4 additions, 1 deletion
nodes.py
with
19 additions
and
2 deletions
.hgtags
+
2
−
0
View file @
b5a69faa
...
...
@@ -54,3 +54,5 @@
cb66c5a9918dd8958dd3cdf48f8bdd0c2786b76a rql-debian-version-0.26.2-1
7fb422fc2032ecc5a93528ed382e083b212b1cbf rql-version-0.26.3
aca033de456a6b526045f9be0dbdb770e67912ab rql-debian-version-0.26.3-1
bcf24f8a29c07146220816565a132ba148cdf82a rql-version-0.26.4
88b739e85c615fc41a964f39e853fe77aaf3f207 rql-debian-version-0.26.4-1
This diff is collapsed.
Click to expand it.
ChangeLog
+
6
−
0
View file @
b5a69faa
ChangeLog for RQL
=================
2010-07-28 -- 0.26.4
* fix re-annotation pb: some stinfo keys were not properly reinitialized
which may cause pb later (at sql generation time for instance)
2010-06-21 -- 0.26.3
* support for node from having in Select.remove
...
...
This diff is collapsed.
Click to expand it.
__pkginfo__.py
+
1
−
1
View file @
b5a69faa
...
...
@@ -20,7 +20,7 @@
__docformat__
=
"
restructuredtext en
"
modname
=
"
rql
"
numversion
=
(
0
,
26
,
3
)
numversion
=
(
0
,
26
,
4
)
version
=
'
.
'
.
join
(
str
(
num
)
for
num
in
numversion
)
license
=
'
LGPL
'
...
...
This diff is collapsed.
Click to expand it.
debian/changelog
+
6
−
0
View file @
b5a69faa
rql (0.26.4-1) unstable; urgency=low
* new upstream release
-- Sylvain Thénault <sylvain.thenault@logilab.fr> Wed, 28 Jul 2010 10:29:47 +0200
rql (0.26.3-1) unstable; urgency=low
* new upstream release
...
...
This diff is collapsed.
Click to expand it.
nodes.py
+
4
−
1
View file @
b5a69faa
...
...
@@ -19,4 +19,5 @@
This module defines all the nodes we can find in a RQL Syntax tree, except
root nodes, defined in the `stmts` module.
"""
...
...
@@ -22,5 +23,4 @@
"""
__docformat__
=
"
restructuredtext en
"
from
itertools
import
chain
...
...
@@ -861,6 +861,9 @@
# constant node linked to an uid variable if any
'
constnode
'
:
None
,
})
# remove optional st infos
for
key
in
(
'
optrelations
'
,
'
blocsimplification
'
,
'
ftirels
'
):
self
.
stinfo
.
pop
(
key
,
None
)
def
add_optional_relation
(
self
,
relation
):
try
:
...
...
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