[Sugar-devel] DebXO on XO-1

2014-03-27 Thread Basanta Shrestha
Hi,
When I play videos on XO-1 from schoolserver, it doesn't play well -it kind
of pauses and sound overlaps. I have 700M free disk space and 60M free
memory on XO-1. I was thinking about trying DebXO with sugar interface. I
am seeking some suggstions from list. Thank you.
-Basanta.


http://www.olenepal.org
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] DebXO on XO-1

2014-03-27 Thread Gonzalo Odiard
I don't know about DebXO, but can you tell us what sugar version are you
using,
and if possible what image?
The problem is with any video or with some formats?

Gonzalo


On Thu, Mar 27, 2014 at 8:24 AM, Basanta Shrestha 
basanta.shres...@olenepal.org wrote:

 Hi,
 When I play videos on XO-1 from schoolserver, it doesn't play well -it
 kind of pauses and sound overlaps. I have 700M free disk space and 60M free
 memory on XO-1. I was thinking about trying DebXO with sugar interface. I
 am seeking some suggstions from list. Thank you.
 -Basanta.


 http://www.olenepal.org

 ___
 Sugar-devel mailing list
 Sugar-devel@lists.sugarlabs.org
 http://lists.sugarlabs.org/listinfo/sugar-devel




-- 
Gonzalo Odiard

SugarLabs - Learning Software for children
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


[Sugar-devel] Time spent on activity (was Best time format for logging?)

2014-03-27 Thread Manuel Quiñones
Hi Walter,

2014-02-28 11:12 GMT-03:00 Walter Bender walter.ben...@gmail.com:
 It seems time on activity is an oft-requested feature. IMHO, we should
 maintain those data in the activity instance metadata like we do
 launch times et al. Should be a fairly straight-forward patch.

what do you think?

https://github.com/manuq/sugar-toolkit-gtk3/pull/7/files

the PR is against my own repository because github is not giving me a
way to compare with sugarlabs toolkit, I need to sort that out.  In
the meanwhile, I would like to know your opinion.


 (My rationale is that making it part of the activity metadata, it is
 accessible to the Sugar user -- part of the effort to make learning
 visible to the learner, not just the administrator.)

 -walter

-- 
.. manuq ..
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] Time spent on activity (was Best time format for logging?)

2014-03-27 Thread Gonzalo Odiard
Maybe have sense save the spent time as a list too,
like we do with launch times.
Looks like a non invasive change, and a good source of information.

Gonzalo


On Thu, Mar 27, 2014 at 3:19 PM, Manuel Quiñones ma...@laptop.org wrote:

 Hi Walter,

 2014-02-28 11:12 GMT-03:00 Walter Bender walter.ben...@gmail.com:
  It seems time on activity is an oft-requested feature. IMHO, we should
  maintain those data in the activity instance metadata like we do
  launch times et al. Should be a fairly straight-forward patch.

 what do you think?

 https://github.com/manuq/sugar-toolkit-gtk3/pull/7/files

 the PR is against my own repository because github is not giving me a
 way to compare with sugarlabs toolkit, I need to sort that out.  In
 the meanwhile, I would like to know your opinion.

 
  (My rationale is that making it part of the activity metadata, it is
  accessible to the Sugar user -- part of the effort to make learning
  visible to the learner, not just the administrator.)
 
  -walter

 --
 .. manuq ..
 ___
 Sugar-devel mailing list
 Sugar-devel@lists.sugarlabs.org
 http://lists.sugarlabs.org/listinfo/sugar-devel




-- 
Gonzalo Odiard

SugarLabs - Learning Software for children
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] Time spent on activity (was Best time format for logging?)

2014-03-27 Thread Manuel Quiñones
2014-03-27 15:23 GMT-03:00 Gonzalo Odiard godi...@sugarlabs.org:
 Maybe have sense save the spent time as a list too,
 like we do with launch times.
 Looks like a non invasive change, and a good source of information.

Good point, is the other option I was handling.  Is a trivial patch too:

https://github.com/manuq/sugar-toolkit-gtk3/pull/8/files

I think this one is definetely better.

I was in doubt for two reasons: 1. because unlike launch_time, this
spent-times metadata will not be saved if the activity does not end
properly: could be a crash, a programming error, end of battery, etc.
So the item N of spent-times will not necessarily correspont to item N
of launch-times.

And secondly, because the simpler option satisfies the placeholder
that is currently in Harvest
https://github.com/tchx84/harvest-server/blob/master/sql/001-harvest.sql#L24

The second one will require a new table in Harvest.  But that's an
easy change too.

Side note: I see we have a horrible mix of styles in metadata, some
names use underscore (title_set_by_user, activity_id) and some use
minus character (share-scope, icon-color, launch-times).  Does anyone
know the preferred style?

Thanks for the comments.

-- 
.. manuq ..
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] Time spent on activity (was Best time format for logging?)

2014-03-27 Thread Gonzalo Odiard
On Thu, Mar 27, 2014 at 4:17 PM, Manuel Quiñones ma...@laptop.org wrote:

 2014-03-27 15:23 GMT-03:00 Gonzalo Odiard godi...@sugarlabs.org:
  Maybe have sense save the spent time as a list too,
  like we do with launch times.
  Looks like a non invasive change, and a good source of information.

 Good point, is the other option I was handling.  Is a trivial patch too:

 https://github.com/manuq/sugar-toolkit-gtk3/pull/8/files

 I think this one is definetely better.

 I was in doubt for two reasons: 1. because unlike launch_time, this
 spent-times metadata will not be saved if the activity does not end
 properly: could be a crash, a programming error, end of battery, etc.
 So the item N of spent-times will not necessarily correspont to item N
 of launch-times.


While is true you don't have how much time was spent in every session,
the sequence is good data anyway.


 And secondly, because the simpler option satisfies the placeholder
 that is currently in Harvest

 https://github.com/tchx84/harvest-server/blob/master/sql/001-harvest.sql#L24

 The second one will require a new table in Harvest.  But that's an
 easy change too.


Ok, would be good have tch involved then.



 Side note: I see we have a horrible mix of styles in metadata, some
 names use underscore (title_set_by_user, activity_id) and some use
 minus character (share-scope, icon-color, launch-times).  Does anyone
 know the preferred style?


No idea about that

Gonzalo
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] DebXO on XO-1

2014-03-27 Thread James Cameron
I don't think DebXO will be any different.  The usual solution to
video playback problems on XO-1 is to transcode the video to a format
that works better.

That you have the video on the schoolserver suggests that you should
first try copying it to the XO-1 in case the pauses are due to antenna
damage or wireless network contention.

-- 
James Cameron
http://quozl.linux.org.au/
___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] #4745 Develop UNSP: Develop 40 sugargame template error in activity.info

2014-03-27 Thread forster

Gonzalo

I made you the owner of this bug because I think you are the most  
recent maintainer of Develop. Hope that's OK


Tony


#4745: Develop 40 sugargame template error in activity.info
-+--
   Reporter:  tonyforster|   Owner:  godiard
   Type:  defect |  Status:  new
   Priority:  Unspecified by Maintainer  |   Milestone:  Unspecified
  Component:  Develop| Version:  Unspecified
   Severity:  Unspecified|Keywords:
Distribution/OS:  Unspecified|  Bug Status:  Unconfirmed
-+--
\
\
 Creating a new Activity from the sugargame template, Activity will not run
 because activity.info line 5 exec= specifies a non-existant activity.py
 module and class.

 editing line 5 to exec = sugar-activity HelloWorld.HelloWorld fixes bug

 change in V40 15e5faa Remove unneeded activity.py may be the cause
\
\
\

--
Ticket URL: http://bugs.sugarlabs.org/ticket/4745
Sugar Labs http://sugarlabs.org/
Sugar Labs bug tracking system

_
This mail has been virus scanned by Australia On Line
see http://www.australiaonline.net.au/mailscanning






___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel


Re: [Sugar-devel] #4745 Develop UNSP: Develop 40 sugargame template error in activity.info

2014-03-27 Thread Gonzalo Odiard
Thanks Tony

Gonzalo

On Thu, Mar 27, 2014 at 8:01 PM, fors...@ozonline.com.au wrote:

 Gonzalo

 I made you the owner of this bug because I think you are the most recent
 maintainer of Develop. Hope that's OK

 Tony

  #4745: Develop 40 sugargame template error in activity.info
 -+--
Reporter:  tonyforster|   Owner:  godiard
Type:  defect |  Status:  new
Priority:  Unspecified by Maintainer  |   Milestone:  Unspecified
   Component:  Develop| Version:  Unspecified
Severity:  Unspecified|Keywords:
 Distribution/OS:  Unspecified|  Bug Status:  Unconfirmed
 -+--
 \
 \
  Creating a new Activity from the sugargame template, Activity will not
 run
  because activity.info line 5 exec= specifies a non-existant activity.py
  module and class.

  editing line 5 to exec = sugar-activity HelloWorld.HelloWorld fixes bug

  change in V40 15e5faa Remove unneeded activity.py may be the cause
 \
 \
 \

 --
 Ticket URL: http://bugs.sugarlabs.org/ticket/4745
 Sugar Labs http://sugarlabs.org/
 Sugar Labs bug tracking system

 _
 This mail has been virus scanned by Australia On Line
 see http://www.australiaonline.net.au/mailscanning






___
Sugar-devel mailing list
Sugar-devel@lists.sugarlabs.org
http://lists.sugarlabs.org/listinfo/sugar-devel