This repository has been archived by the owner on Apr 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CHANGED: RingRanking contain 3 ranks authors, am, scenario
FIXED: Scenario Ranking sql request can now use a list of anim_mode (not use for the moment)
- Loading branch information
Patrick Bernard
committed
Oct 24, 2006
1 parent
99fc8bc
commit 796a75a
Showing
6 changed files
with
46 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
web/ryzom_com/RingRanking/skins/ringranking/zsql/SQL_ScenarioRanking.zsql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<dtml-comment> | ||
arguments: ranking_by master | ||
arguments: ranking_by anim_mode | ||
connection_id:r2linux03 | ||
title:Session: get scenario ranking | ||
</dtml-comment> | ||
|
||
select distinct title,description,author,rrp_total,anim_mode,language,orientation,level,id | ||
from scenario | ||
where anim_mode = <dtml-sqlvar master type="string"> | ||
where <dtml-sqltest anim_mode type="string" multiple > | ||
order by <dtml-sqlvar ranking_by type="string">, rrp_total desc | ||
|
4 changes: 2 additions & 2 deletions
4
web/ryzom_com/RingRanking/skins/ringranking/zsql/SQL_ScenarioRankingByLang.zsql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<dtml-comment> | ||
arguments: ranking_by master language | ||
arguments: ranking_by anim_mode language | ||
connection_id:r2linux03 | ||
title:Session: get scenario ranking | ||
</dtml-comment> | ||
|
||
select distinct title,description,author,rrp_total,anim_mode,language,orientation,level,id | ||
from scenario | ||
where anim_mode = <dtml-sqlvar master type="string"> | ||
where <dtml-sqltest anim_mode type="string" multiple > | ||
and language = <dtml-sqlvar language type="string"> | ||
order by <dtml-sqlvar ranking_by type="string">, rrp_total desc |
4 changes: 2 additions & 2 deletions
4
web/ryzom_com/RingRanking/skins/ringranking/zsql/SQL_ScenarioRankingByOtherLang.zsql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters