Notices


Reply
Thread Tools
Reflektorfalke's Avatar
Posts: 597 | Thanked: 490 times | Joined on Dec 2009 @ Germany
#91
Ah one thing that hasnīt been mentioned in this thread: Portrait Mode!

I know there is a lot of whining about portrait mode out there, but I think it would be a really nice addition to this app.
Especially when you think about league tables and long match days or maybe for the World Cup screens with the matches and the group tables in one view...
Plus, the addition of club logos / flags might make a certain line height necessary and will look probably better in portrait mode!?

I understand that this is easier to implement with PR1.2 (right?).
Just wanted to suggest you keep that in mind ;-)
 
Reflektorfalke's Avatar
Posts: 597 | Thanked: 490 times | Joined on Dec 2009 @ Germany
#92
Originally Posted by magnuslu View Post
Seems though that SoccerDB is not so good for 'knock-out' stages of competitions and thus cups and our beloved WC! Any ideas there?
What is the problem here with SoccerDB?
What are the requirements for a good source of data?
What about the previously mentioned idea of finding a idea a sponsor that provides data and maybe even some incentives / rewards for your work?
 
Posts: 299 | Thanked: 241 times | Joined on Oct 2009 @ Singapore
#93
Originally Posted by Reflektorfalke View Post
Ah one thing that hasnīt been mentioned in this thread: Portrait Mode!
This was supposed to be one of the surprise features in a coming version
__________________
My Maemo Apps:
QTeachMe
- Flashcard app
MobiTifo (which was formerly known as QSportsEvent) - Sports leagues tracking (mainly football).
 

The Following 2 Users Say Thank You to magnuslu For This Useful Post:
Reflektorfalke's Avatar
Posts: 597 | Thanked: 490 times | Joined on Dec 2009 @ Germany
#94
Some more Icons for use within the app or as app-icon.
Please share which one you like...
 

The Following 2 Users Say Thank You to Reflektorfalke For This Useful Post:
Posts: 299 | Thanked: 241 times | Joined on Oct 2009 @ Singapore
#95
Anyone is an ace on CSS classes?

The SoccerDB site explains how the HTML can be formatted here: http://www.aragon.ws/soccerdb/site/usingmatches.php

My first lame attempts are as follows:

Code:
<HTML>
		<style type="text/css">
		.Date 
		{
			font-family: verdana, geneva, arial, helvetica, sans-serif; 
			background-color: #00FF66;
			padding: 2px;
			margin: 5px;
			border-left-style: groove; 
			border-left-color: green; 
			border-left-width: 5px; 
			border-bottom-style: ridge; 
			border-bottom-color: yellow; 
			border-bottom-width: 5px; 
		}
		.Match 
		{
			font-family: verdana, geneva, arial, helvetica, sans-serif; 
			color: blue; 
			background-color: #ffffff;
			padding: 2px 1px;
		}

		</style>
<script type="text/javascript"
src="http://www.aragon.ws/soccerdb/getmatches.php?id=714&css=Match&cssDate=Date"></script> 
</HTML>
<script type="text/javascript"
src="http://www.aragon.ws/soccerdb/gettable.php?id=714&css=Match"></script> 
</HTML>
As I'm more of a developer than a designer, community help is appreciated here... I haven't figured out if it is possible to use a style for the table either. So far I only got to work with the matches.
__________________
My Maemo Apps:
QTeachMe
- Flashcard app
MobiTifo (which was formerly known as QSportsEvent) - Sports leagues tracking (mainly football).
 
Posts: 287 | Thanked: 165 times | Joined on Oct 2009 @ The Netherlands
#96
Sure you can change the table style (see below). How do you want to have the things styled? Can you create a mockup?

Code:
<HTML>
  <head>
    <style type="text/css">
      body {
        font-family: verdana, geneva, arial, helvetica, sans-serif; 
      }
      table {
        background-color: white;
        color: blue;
      }
    .Date {
      background-color: #00FF66;
      color: black;
      padding: 2px;
      margin: 5px;
      border-left-style: groove; 
      border-left-color: green; 
      border-left-width: 5px; 
      border-bottom-style: ridge; 
      border-bottom-color: yellow; 
      border-bottom-width: 5px; 
    }
    .Match {
      padding: 2px 1px;
    }

    </style>
    <script type="text/javascript" src="http://www.aragon.ws/soccerdb/getmatches.php?id=714&css=Match&cssDate=Date"></script> 
    <script type="text/javascript" src="http://www.aragon.ws/soccerdb/gettable.php?id=714&css=Match"></script> 
  </head>
<body>
  
</body>
</HTML>
 

The Following 3 Users Say Thank You to robbie For This Useful Post:
Posts: 287 | Thanked: 165 times | Joined on Oct 2009 @ The Netherlands
#97
You also can parse the soccerdb data to create a 'csv file' that you can use in a qt component. It shouldn't be that hard.

Just take a look here: http://www.aragon.ws/soccerdb/getmatches.php?id=714
 

The Following User Says Thank You to robbie For This Useful Post:
Posts: 299 | Thanked: 241 times | Joined on Oct 2009 @ Singapore
#98
No. I don't have anything specific in mind. Anyway, I'm sure you can provide a sample faster than I can provide a mockup.
__________________
My Maemo Apps:
QTeachMe
- Flashcard app
MobiTifo (which was formerly known as QSportsEvent) - Sports leagues tracking (mainly football).
 
Posts: 299 | Thanked: 241 times | Joined on Oct 2009 @ Singapore
#99
Originally Posted by robbie View Post
You also can parse the soccerdb data to create a 'csv file' that you can use in a qt component. It shouldn't be that hard.
I know... I'm working on some other functionality first, but will revisit this later. I hope to have a new version out either today or tomorrow for everyone's review.
__________________
My Maemo Apps:
QTeachMe
- Flashcard app
MobiTifo (which was formerly known as QSportsEvent) - Sports leagues tracking (mainly football).
 

The Following 2 Users Say Thank You to magnuslu For This Useful Post:
Reflektorfalke's Avatar
Posts: 597 | Thanked: 490 times | Joined on Dec 2009 @ Germany
#100
Originally Posted by magnuslu View Post
Anyone is an ace on CSS classes?

The SoccerDB site explains how the HTML can be formatted here: http://www.aragon.ws/soccerdb/site/usingmatches.php

As I'm more of a developer than a designer, community help is appreciated here... I haven't figured out if it is possible to use a style for the table either. So far I only got to work with the matches.
Here is an example as base for further discussions:

Code:
<HTML>
		<style type="text/css">
		.Date 
		{
			font-family: verdana, geneva, arial, helvetica, sans-serif; 
			background-color: #4F81BD;
			padding: 2px;
			margin: 5px;
			border-style: solid; 
			border-color: #8EB4E3; 
			border-width: 2px; 
			-moz-border-radius: 5px;
		}
		.Match 
		{
			font-family: verdana, geneva, arial, helvetica, sans-serif; 
			color: black; 
			background-color: #8EB4E3;
			padding: 2px 1px;
		}
		.header {
			font-family: verdana, geneva, arial, helvetica, sans-serif; 
			font-weight: bold;
			padding: 2px;
		}
		.odd {
			background-color: #ebebeb;
			font-family: verdana, geneva, arial, helvetica, sans-serif; 
			padding: 2px;
		}
		.even {
			background-color: #fff;
			font-family: verdana, geneva, arial, helvetica, sans-serif; 
			padding: 2px;
		}
		.lines {
			background-color: #000;
		}
		.highlight {
			font-weight: bold;
		}


		</style>
<script type="text/javascript"
src="http://www.aragon.ws/soccerdb/getmatches.php?id=714&css=Match&cssDate=Date"></script> 
<script type="text/javascript"
src="http://www.aragon.ws/soccerdb/gettable.php?id=391&&showHeader=true
&cssHeader=header&cssLines=lines&css1=odd&css2=even&highlightTeam=24&cssHighlight=highlight"></script> <script type="text/javascript"
src="http://www.aragon.ws/soccerdb/gettable.php?id=714&css=Match"></script> 
</HTML>
 

The Following 3 Users Say Thank You to Reflektorfalke For This Useful Post:
Reply


 
Forum Jump


All times are GMT. The time now is 18:56.