[longomatch/redesign3] Add "Period" subcategory to the default template
- From: Andoni Morales Alastruey <amorales src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [longomatch/redesign3] Add "Period" subcategory to the default template
- Date: Sat, 20 Aug 2011 19:54:10 +0000 (UTC)
commit ddcfda7d034011a1b07ca799817b95977e7ddde8
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date: Sat Aug 20 21:53:02 2011 +0200
Add "Period" subcategory to the default template
LongoMatch/Store/Templates/CategoriesTemplate.cs | 13 +++++++++++--
1 files changed, 11 insertions(+), 2 deletions(-)
---
diff --git a/LongoMatch/Store/Templates/CategoriesTemplate.cs b/LongoMatch/Store/Templates/CategoriesTemplate.cs
index 44bdd68..7f6a4e5 100644
--- a/LongoMatch/Store/Templates/CategoriesTemplate.cs
+++ b/LongoMatch/Store/Templates/CategoriesTemplate.cs
@@ -70,15 +70,15 @@ namespace LongoMatch.Store.Templates
for(int i=1; i<=count; i++) {
PlayerSubCategory localplayers, visitorplayers;
+ TagSubCategory period;
TeamSubCategory team;
team = new TeamSubCategory {
Name = Catalog.GetString("Team"),
AllowMultiple = false,
FastTag = true};
- team.Add(Team.NONE);
team.Add(Team.LOCAL);
- team.Add(Team.NONE);
+ team.Add(Team.VISITOR);
localplayers = new PlayerSubCategory {
Name = Catalog.GetString("Local Team Players"),
@@ -91,6 +91,14 @@ namespace LongoMatch.Store.Templates
AllowMultiple = false,
FastTag = true};
visitorplayers.Add(Team.VISITOR);
+
+ period = new TagSubCategory {
+ Name = Catalog.GetString("Period"),
+ AllowMultiple = false,
+ FastTag = true,
+ };
+ period.Add("1");
+ period.Add("2");
Category cat = new Category {
Name = "Category " + i,
@@ -104,6 +112,7 @@ namespace LongoMatch.Store.Templates
cat.SubCategories.Add(team);
cat.SubCategories.Add(localplayers);
cat.SubCategories.Add(visitorplayers);
+ cat.SubCategories.Add(period);
Add(cat);
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]