eBook reader proposal

2012-04-03 Thread Bogdan Cristea
Hi

I have just created a repository on git.kde.org with my application, 
tabletReader, which I would like to expand to became an eBook reader for AP.

http://quickgit.kde.org/index.php?p=scratch%2Fcristea%2FtabletReader.gita=summary

The app is not yet tested on AP, but it is tested on ExoPC running Plasma 
notebook with openSUSE 12.1. My intention is to attract more attention on this 
project in order to get more feedback and contributions. 

For now this project resides on my personal scratch repository and there is no 
specific entry on bugzilla. For comments and suggestions please use this list 
or e-mail me directly.

regards
-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: eBook reader proposal

2012-04-04 Thread Bogdan Cristea
On Wednesday 04 April 2012 18:19:53 Thomas Pfeiffer wrote:
 I will give feedback as soon as I get to try it out (which will probably 
 require getting it into the OBS, or giving me a binary to put on my device. 
 Detailed instructions for compiling it myself would work, too, of course).

Hi Thomas

I am working on a package for OBS, but you have to wait one or two days till I 
figure out everything. If you want to compile yourself, this is quite 
straightforward:
* clone the project
git clone git://anongit.kde.org/scratch/cristea/tabletReader.git
* install dependecies as specified in the readme file (for qt-mobility make 
sure that you install the version 1.2, for other packages the version is less 
important). As root type:
zypper in libqt4-devel
zypper in qt-mobility qt-mobility-devel 
zypper in libpoppler-qt4-3 libpoppler-qt4-devel
zypper in chmlib chmlib-devel
zypper in libdjvulibre-devel libdjvulibre21
* compile and install the app
qmake  make  make install

regards
-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: eBook reader proposal

2012-04-05 Thread Bogdan Cristea
On Thursday 05 April 2012 15:17:15 Aaron J. Seigo wrote:
 On Wednesday, April 4, 2012 18:24:43 Marco Martin wrote:
  from a technical point of view, a good way to proceed i think would be 
this:
 100% agreed. (no surprise :)
 
 good news is that the viewer area is already nicely separated from the rest
 of the application. in fact, it is a QWidget that basically just paints
 pixmaps delivered from the renderers.

   That QWidget (SlidingStackedWidget) is slightly more complicated than that 
because it allows to animate the pages on switch (horizontal flicks). So 
actually the pixmaps are put on QWigets (QLabels) contained in 
SlidingStackedWidget. 
Using pixmaps for rendering pages has some limitations: for chm documents 
following links is impossible, same for pdf files (not sure how poppler 
handles this).

 
 so what may make sense is to take advantage of QML being able to show
 pixmaps natively and expose just some QObject based classes which provide
 the interface for fetching those pixmaps. this is what the current QWidget
 basically does already, so the work to make this happen should not be very
 big at all.

Actually I think that we need to find a way to animate pages using QML, 
something similar already exists for viewing images.

 
 while having this as a separately loadable QML component should be the end
 goal, i think that to make that more achievable it would make sense to make
 the current app work in the manner described above and then once it is
 working within the app to make it a separate, externally-loaded QML
 component.

This reminds me that the file browser used to open files is not very well 
designed, so it might be an ideea to load an external QML component which 
already allows to browse files (it would be great to be able to install some 
filters into that component in order to see only supported formats)

 
 .. and that will be VERY cool as it will open up viewer capabilities to any
 other app as long as this one is installed.

To resume, I would see the application structure like this:
1. main window: in QML (partially implemented)
2. document loader (separate thread alowing to manage document types and a 
buffer with several pages) in C++ (already implemented)
3. okular core library in C++ (to be adapted)

-- 
Bogdan 
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


tabletReader project is now public

2012-04-05 Thread Bogdan Cristea
All

tabletReader project repository resides now in KDE Playground so that public 
contributions are possible. It can be found at:

https://projects.kde.org/projects/playground/edu/ebookreader

please note that in projects.kde.org its identifier is *ebookreader*. The 
identifier could be temporary, later we need to agree upon a name more 
specific for this project.

For read/write access with git use:

g...@git.kde.org:ebookreader

regards
-- 
Bogdan 
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


tabletReader rpms

2012-04-06 Thread Bogdan Cristea

For those willing to test tabletReader, RPMs are available for openSUSE 12.1 
at

http://download.opensuse.org/repositories/home:/Bogdanc23/openSUSE_12.1/

regards
-- 
Bogdan 
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: tabletReader rpms

2012-04-12 Thread Bogdan Cristea
On Wednesday 11 April 2012 11:25:46 you wrote:
 Thanks for providing the RPMs! However, there is still a problem: At least
 on  MeeGo, currently libchm.so.0 is not available, and without it,
 tabletReader does not start. Could you please provide a package for this as
 well?

Hi

Have you tried to install chmlib rpms provided for openSUSE 12.1? They should 
work with the rpms I provide. If you still have problems, please provide more 
details about your OS in order to be able to test this issue on my side.

regards
-- 
Bogdan 
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Okular active

2012-05-15 Thread Bogdan Cristea
Hi

On Tuesday 15 May 2012 22:08:14 Thomas Pfeiffer wrote:
 So is this based on Bogdan's work to integrate the Okular libraries into 
 tabletReader or did he abandon this work or was it wasted because the
 result  is just being discarded?

tabletReader is not abandoned. I have been able to integrate okular core 
library into tabletReader, but there are some compilation problems due to 
separation issues between okular core library and its front-end. I am about to 
submit a patch to okular in order to try to fix some of these issues. This is 
why I am not yet able to provide an rpm, because I use a customized okular 
core library.

 
 And is there already a package in the OBS for testing it? If so, what's its 
 name?
 The screenshot looks nice, but I'd like to see it in action so I can give 
 feedback.

I will give a try to okular active, maybe we will find a way to coordonate our 
efforts.

regards
-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Okular active

2012-05-18 Thread Bogdan Cristea
On Thursday 17 May 2012 17:47:15 Marco Martin wrote:
 packaging is fixed, unfortunately at the moment it still have to be
 launched  from the shell with active-documentviewer pdfpath

I have installed 2012-04-23-16-57-basyskom-plasma-active-testing-meego-usb-
live.iso, but even after repository refresh I am unable to find okular-active. 
Which repo should I add ?

-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


[Bug 300327] New: active-okular does not support djvu and chm files

2012-05-19 Thread Bogdan Cristea
https://bugs.kde.org/show_bug.cgi?id=300327

Bug ID: 300327
  Severity: normal
   Version: unspecified
  Priority: NOR
  Assignee: active@kde.org
   Summary: active-okular does not support djvu and chm files
Classification: Unclassified
OS: Linux
  Reporter: crist...@gmail.com
  Hardware: Meego/Harmattan
Status: UNCONFIRMED
 Component: General
   Product: Active

active-okular cannot open djvu and chm files (error message says No plugin for
mimetype ...)

Reproducible: Always

Steps to Reproduce:
1.install active-okular in meego with active plasma, devel release
2.open from terminal a document with active-documentviewer
Actual Results:  
Cannot open djvu and chm files

Expected Results:  
Should open the file or display en error message to warn the user.

active-okular should use the same okular core library as the classic okular
application. When installing active-okular the okular backend should remain the
same.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: New git repos

2012-06-18 Thread Bogdan Cristea
On Monday 18 June 2012 12:51:51 Marco Martin wrote:
 just as heads up, we have two new git repos of things that were discussed
 on  this list in the past:
 
 https://projects.kde.org/projects/playground/base/plasma-active-maliit
 https://projects.kde.org/projects/playground/base/plasma-active-kickstart
 
 migrated from my scratch area to playground. the first is a maliit plugin
 that  uses plasma qml components for its ui, the second is a collection of
 kickstarts and yaml files to generate mer based plasma active images

Thanks for your efforts. Just a small observation: plasma active should be 
active plasma I think.

-- 
Bogdan 
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Code for number wheel widget

2012-06-24 Thread Bogdan Cristea
On Sunday 24 June 2012 12:14:04 Marco Martin wrote:
 yep, its' there
 unfortunately that code is still tangled in the date configuration, module,
 is  pretty single purpose.
 
 what should be done is to isolate it in a general purpose reusable
 component,  so that can be moved in the plasmaextras namescpace.
 
 any takers?

Hi

I had taken a short look, but indeed it seems quite outdated. I can update 
this component for PA, with some help from you maybe. Please tell me what 
should be done in order to transform this into a reusable component.

regards
-- 
Bogdan 
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Installing plasma active (PA) on Balsam Professional fails

2012-06-25 Thread Bogdan Cristea
Hi

I am trying to setup a development environent for PA using an ExoPC tablet. 
The only way till now was to install the Meego based image, but this solution 
is not appropriate for development since the repositories are scarce in 
packages.

I have followed the instructions for installing PA on Balsam Professional with 
Balsam-Professional-12.1-USB-Install-i586.img and 
http://community.kde.org/Plasma/Active/Installation#Installation_on_Balsam_Professional,
 
but after installing PA from repository the KDE desktop becomes unusable.

Trying to install PA from source seems to be difficult, because one needs to 
compile first KDE. I have tried several times, but with no luck and there are 
no clear instructions on PA site.

So, I think that we need a development environment for PA based on some well 
known Linux distribution (personally I prefer openSUSE) if we want to have 
more applications developed for this platform. 

Please share your thoughts and experiences.

regards
-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Installing plasma active (PA) on Balsam Professional fails

2012-06-25 Thread Bogdan Cristea
On Monday 25 June 2012 19:15:17 Sascha Manns wrote:
 Our prefered way is to install the PA2 Image, and then updating via the 
 Repositories like described there: http://community.open-
 slx.com/articles.php?article_id=398
 But thank you very much, we have to update the Link.
 
  So, I think that we need a development environment for PA based on some
  well known Linux distribution (personally I prefer openSUSE) if we want
  to have more applications developed for this platform.
 
 I don't think that can be. openSUSE don't support PA anymore.

Thank you, actually the install instructions exist on PA site, but they are 
among all other install options. This is exactly what I need, I would put this 
option (install PA2 with balsam, then update) as an option for developpers.

regards
-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: UX suggestions for tabletReader

2012-07-22 Thread Bogdan Cristea
On Sunday 22 July 2012 23:38:52 Inge Wallin wrote:
 What's the status of this? I have suddenly bccome interested in ebook
 readers  for tablets and I wonder what the status of TabletReader for
 Plasma Active is.

Hi

tabletReader uses now okular core library (with some modifications). I am 
about to submit my changes to okular team so that okular core library will be 
independent of the settings of the front end. Currently I am trying to use a 
single DeclarativeView for tabletReader, the current sources can be found in 
the git repository here

https://projects.kde.org/projects/playground/edu/ebookreader

However, you might experience compilation issues since okular does not yet 
integrate my changes.

For an alternative to tabletReader you might have a look at Active Okular

regards
-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Plasma Active 3

2012-09-05 Thread Bogdan Cristea
On Wednesday 05 September 2012 11:07:44 Thomas Pfeiffer wrote:
 - When using Kmail Touch, it looks like you try swiping several times but 
 nothing happens. Either something actually did happen but you can't tell
 what  happened from the video, or the screen didn't recognize the gesture,
 or there is a bug in Kmail Touch. Either way, it gives the impression that
 Plasma Active is sluggish, which is not good for a touchscreen UI, so I
 think that should be cut.

I had the same impression: everything run smoothly except the kmail Touch 
application. Same feeling, you tried several times to swipe, but nothing 
happens.

regards
-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: [Okular-devel] Improving the book reading experience with KDE tech

2012-12-23 Thread Bogdan Cristea
On Sunday 23 December 2012 15:29:24 Inge Wallin wrote:
 Thanks a lot. That will help.  
 
 I was thinking of experimenting with a qwebkit based generator instead of
 the  current qtextdocument based one. Another alternative is to use the
 more advanced text layout of the calligra text engine which is also based
 on qtextdocument but extends it considerably.

This approach of rendering epub using qwebkit would be beneficial for chm 
documents too. Currently okular renders them as images so that all embedded 
links are frozen (not clickable). kchmviewer uses a different approach that 
works much better for chm docs. I am interested in this topic and willing to 
help (as much as my schedule allows).

-- 
Bogdan Cristea

___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Active Plasma crashes after zypper dup

2013-02-26 Thread Bogdan Cristea
Hi

I have installed AP from the stable release, then I have done a zypper dup, 
but after reboot AP keeps crashing. I am using a exopc tablet. Are the public 
repos not stable ? What is the proper way to install AP with the latest 
updates ?

regards
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Active Plasma crashes after zypper dup

2013-03-03 Thread Bogdan Cristea
Just an update: the devel image from 1st March 2013 works on my exopc.

In Active Okular, when switching pages, the page width is not always the
same, sometimes I see below the previous page. Is this a desired effect ? I
find this to be rather disturbing. Also, is there a way to choose page zoom
fit width ?


On Wed, Feb 27, 2013 at 8:31 PM, Bogdan Cristea crist...@gmail.com wrote:

 Hi

 I have installed first the latest devel image

 basyskom-plasma-active-wetab-exopc-tablet-mer-devel-130224-2046.iso

 but after installation it does not boot on my exopc tablet. With the
 stable version

 basyskom-plasma-active-three-wetab-exopc-tablet-mer-release.iso

 I have a working system, but I cannot update the entire distribution. I
 would like to have at least a recent Active Plasma distribution in
  order to start testing and developing. Are there any other options for
 exopc ?

 regards
 Bogdan


 On Wed, Feb 27, 2013 at 9:20 AM, Thomas Pfeiffer colo...@autistici.orgwrote:

 On 26.02.2013 23:08, Bogdan Cristea wrote:

 Hi

 I have installed AP from the stable release, then I have done a zypper
 dup,
 but after reboot AP keeps crashing. I am using a exopc tablet. Are the
 public
 repos not stable ? What is the proper way to install AP with the latest
 updates ?


 Hi,
 if you want to get the latest updates, you should install the Devel image.
 The stable repos should actually be stable, so that's a problem. I
 suspect that the crash is caused by Mer updates, so it looks like we'll
 have to keep a closer eye on which Mer version gets into our stable repos.

 __**_
 Active mailing list
 Active@kde.org
 https://mail.kde.org/mailman/**listinfo/activehttps://mail.kde.org/mailman/listinfo/active




 --
 Bogdan Cristea




-- 
Bogdan Cristea
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Active Okular (was Re: Active Plasma crashes after zypper dup)

2013-03-03 Thread Bogdan Cristea
On Sunday 03 March 2013 20:52:21 you wrote:
 On Sunday 03 March 2013 20:37:33 you wrote:
  Just an update: the devel image from 1st March 2013 works on my exopc.
  
  In Active Okular, when switching pages, the page width is not always the
  same, sometimes I see below the previous page. Is this a desired effect ?
  I
  find this to be rather disturbing.
 
 This is an open bug, see https://bugs.kde.org/show_bug.cgi?id=310371
 
  Also, is there a way to choose page zoom
  fit width ?
 
 Nope, there isn't yet. It would be a nice feature, though I currently don't
 have an idea where it would be placed in the UI. It's nice that Okular
 Active doesn't have any chrome and I'd like it to stay that way. If we
 find a good way to access the function and somebody would be willing to
 implement it, that would be great :)

Hi Thomas

I am willing to contribute to Active Okular. As you might remember, I have my 
own version of an e-book reader. Is there an official way to submit 
applications 
to AP ? How about the status of qt5 ? AP uses rather qt5 than qt4 for 
development ?

thanks
-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Active Media Center and Active Plasma

2013-03-22 Thread Bogdan Cristea
Hi

Just seen today a post about the first release of Active Media Center. What is 
the relationship with AP ? It looks like a lot of the functionality is 
overlapped.

regards
-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: new image

2013-03-26 Thread Bogdan Cristea
On Tuesday 26 March 2013 14:29:21 Marco Martin wrote:
 Hi all,
 this image finally comes from the new repos:
 
 https://share.basyskom.com/plasma-active/deployment/wetab-exopc/tablet/mer/d
 evel/weekly/basyskom-plasma-active-wetab-exopc-tablet-mer-devel-130326-1124.
 iso
 
 happy testing

Hi
  I have just installed it on my exopc tablet. At reboot AP does not start. 
This one works: basyskom-plasma-active-wetab-exopc-tablet-mer-
devel-121104-2007.iso

regards
-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


git availability in AP repos

2013-03-27 Thread Bogdan Cristea
Hi

Is there a way to install git on AP from some repository. It would be nice to 
have at least this package available in the default repos (together maybe with 
tmux, synergy, etc.)

regards
-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


AP main toolbar image

2013-04-08 Thread Bogdan Cristea
Hi

I would like to reuse the background image of the AP main toolbar in my own 
application (for a toolbar that should appear just below the main toolbar). Is 
there a way to obtain this image or something similar ?

thanks
-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


AP - full screen mode

2013-04-09 Thread Bogdan Cristea
On Tuesday 09 April 2013 00:41:44 Aaron J. Seigo wrote:
 On Monday, April 8, 2013 20:12:41 Bogdan Cristea wrote:
  I would like to reuse the background image of the AP main toolbar in my
  own
  application (for a toolbar that should appear just below the main
  toolbar).
  Is there a way to obtain this image or something similar ?
 
 it's the widgets/panel-background svg from the Plasma theme.
 
 Svg(widgets/panel-background) should do the trick.

Hi

I am trying to force my application in full screen mode, but it seems that the 
main panel is always shown while my application window is below the main 
panel. Is there a way to force an application window to be in full screen mode 
without the main panel ?

For full screen mode currently I use

QRect rect(0, 0, QApplication::desktop()-width(), QApplication::desktop()-
height());
setGeometry(rect);

-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: AP - full screen mode

2013-04-09 Thread Bogdan Cristea
On Tuesday 09 April 2013 15:36:23 Marco Martin wrote:
 full screen mode is not supported yet, because on an application
 misbehaving  it can lock out the entire device.
 what would be needed is a kwin extension that offers some gesture to exit
 from  fullscreen

Allright, it's a good point. In my case I am actually using my own toolbar 
with a full screen button. I should disable this on AP, but I am wondering if 
from Qt I can find a portable way to detect when running on AP.

-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: AP - full screen mode

2013-04-09 Thread Bogdan Cristea
On Tuesday 09 April 2013 15:39:46 Thomas Pfeiffer wrote:
 we are currently preventing full screen mode because if a (legacy) 
 application does not provide a way to exit full screen mode without 
 using the keyboard, we're stuck with no way to close the application. 
 This has happened e.g. with Bangarang.
 We are planning to re-allow full screen mode once we are sure that no 
 application running on PA uses full screen without a way to return to 
 windowed using the touch screen.

ok, in this case I keep my implementation hoping for this future feature in AP 
:). 

I do believe that a full screen might be needed as the main panel occupies 
useful space on the screen.

-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Qt update in AP from 4.8.3 to 4.8.4

2013-04-26 Thread Bogdan Cristea
Hi

Are there any chances to have an update of Qt framework from 4.8.3 (as it is 
now in AP) to 4.8.4 (for example used by openSUSE 12.3) ? I have noticed a 
different behavior when listing the content of a folder with 

QDir directory = QDir(currentDir_, *.*, QDir::Name | QDir::IgnoreCase | 
QDir::LocaleAware);

Folder names beginning by a parentheses are displayed first in the list in 
4.8.3 while in 4.8.4 the parentheses is ignored and the first letter is 
considered.

regards
-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


TabletReader v3.0 RPM for Active Plasma available

2013-05-12 Thread Bogdan Cristea
All

TabletReader v3.0 can be installed on Active Plasma from my 
merproject.org repository.
Just add the repository using
zypper ar 
http://repo.merproject.org/obs/home:/cristeab/kde_devel_ux_latest_i586/ 
cristeab
then install TabletReader with
zypper in TabletReader

This represents an experimental project and I am trying to support several 
platforms (currently Active Plasma and Windows, but in the future Android 
and iOS). For further information see: 
https://projects.kde.org/projects/playground/edu/ebookreader

I'll start also to contribute to Active Okular once my time allows. Any 
feedback and contributions are welcome.

regards
-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


My application builds only on kde_devel_ux_latest_i586 (armv7l, i586, x86_64)

2013-05-13 Thread Bogdan Cristea
Hi

My application builds successfully only on the above repository, while the 
other two repositories based on kde_deve_ux (kde_devel_ux_latest_armv7hl 
(armv7l, i586, x86_64), kde_devel_ux_latest_armv7l (armv7l, i586, x86_64)) 
have a lot of unresolved dependencies. Is there a way to solve this ?

-- 
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Download files from owncloud using the web browser

2013-06-30 Thread Bogdan Cristea
Hi

I am able to access owncloud web interface from AP and to browse through
the files, however I cannot download a specific file, the browser tries to
download instead a php file. Should this be considered a bug of AP browser ?

-- 
Bogdan Cristea
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: PA4

2013-07-23 Thread Bogdan Cristea

Le 7/23/2013 9:33 PM, Marco Martin a écrit :


So, little update:

I built an image of kde:ux:stable (pa4) against the current mer 
release, instead the old one that was used, and now installs correctly 
to the ExoPc :)


is not that easy since i had to rewrite nemo-mobile-sesison, that in 
turn needs nemo:mw:current, the userspace systemd session, so the 
kickstart has to be a bit convoluted.


an image should be
http://makeplaylive.com/~notmart/plasma-active-i586.iso 
http://makeplaylive.com/%7Enotmart/plasma-active-i586.iso

(didn't try that file exactly)

so the things to be doen to do a release (at least on x86) are:
* build on a fixed mer release (that now is the current)
* use nemo:mw:devel (should need a fixed nemo release as well)
* put the redone nemo-mobile-session in kde:ux:stable,testing and devel
* adapt the kickstarts to new repos

Comments?

--
Marco Martin



___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


ARM devices are not yet supported in AP4 ? I have seen that compiling an 
app on mer build (https://build.merproject.org/) for other architectures 
than x86 does not seem to work


___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: wiki cleanup: Development

2013-08-18 Thread Bogdan Cristea

On Fri 16 Aug 2013 07:34:30 PM CEST, Michael Bohlender wrote:

http://community.kde.org/Plasma/Active/Development

needs some work.

http://community.kde.org/Plasma/Active/Development#Plasma_SDK:_Plasmate:
Could someone using openSuse add the latest information about how to
install plasmate to the plasmate section? I removed the old info about
adding sebas personal repository for 11.4 because that looked outdated
to me.

http://community.kde.org/Plasma/Active/Development#Plasma_Active_Core_Development:

the part about contour seems to be outdated. what is the current state
of contour? could someone with knowledge edit this part or provide me
with enough information so I can do it?

http://community.kde.org/Plasma/Active/Development#Integration_Workflow

What is the state of the openSuse integration workflow?
Is this still happening?

I will update the meego part and make it about mer.
Do we still have automated devel images form basyskom ?

http://community.kde.org/Plasma/Active/Development#Release_Management
Do we  keep the two month after KDE SC release plan?
With PA4 obviously not but what about the future?
how should i change that chapter ?




___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Hi

I am unable to modify PA wiki with my kde account. Could someone put on 
the wiki the article I have wrote on Setting up an AP development 
environment for your application ? It could be put on 
Plasma/Active/Development page 
(http://community.kde.org/Plasma/Active/Development) as section 1.2


thanks
Bogdan
Setting up an AP development environment for your application

The recommended approach for application development is to use a PC with a 
Linux distribution (e.g. openSUSE). If needed, clone and compile the required 
PA libraries, notably Active Quick, on your platform. However, this step is not 
mandatory as long as the application interface is written in standard QML. As 
general rules please use cmake as compilation management system and QML for 
your graphical user interface. See PA Apps Recommendations and Guidelines 
(http://community.kde.org/Plasma/Active/Apps) for further details.

Once your application is ready for testing, please use the latest PA iso on a 
supported device (e.g. ExoPC). Enable the development repository on your device 
and type

zypper refresh
zypper dup

in order to update your PA installation. Make sure that your application 
compiles and runs on PA. 

There are a number of limitations on PA, for example there is no full screen 
mode for the application as the task bar should be always displayed in case the 
application misbehaves. These limitations are not always documented, so please 
test carrefully your application. If needed, install synergy 
(http://synergy-foss.org/) in order to have keyboard and mouse support on your 
tablet. However, check carefully how your application is adapted to touch 
screens as this is the main target for PA. Using a virtual machine to test your 
application is not recommended as full touch screen support is not (yet) 
available.

Once you have tested your application, you can prepare it for deployment by 
setting up your repository on Mer Project Open Build Service 
(https://build.merproject.org/). For alternative ways of deploying your 
application see PA Packaging and Distribution 
(http://community.kde.org/Plasma/Active/Apps#Packaging_and_Distribution).___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: wiki cleanup: Development

2013-08-22 Thread Bogdan Cristea

On 08/20/2013 07:56 PM, Thomas Pfeiffer wrote:

On Sunday 18 August 2013 23:06:43 Bogdan Cristea wrote:

Hi

I am unable to modify PA wiki with my kde account.

You have an Identity account and yet you cannot edit community.kde.org? That
sounds weird. Have you clicked OpenID / Identity login and then Identity?

___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Hi

I have used my Google account to login and change PA wiki. The section I 
have added can be found here


http://community.kde.org/Plasma/Active/Development#Setting_up_a_Development_Environment

Please review and provide feedback if possible

regards
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


On screen keyboard no longer working after update

2013-08-31 Thread Bogdan Cristea

Hi
After a zypper dup today the onscreen keyboard no longer appears when I 
need to type something in an edit box (e.g. kwallet password). Any ideas 
how to fix this ?

thanks
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Reinstallation and saving the home directory

2013-09-01 Thread Bogdan Cristea

On 09/01/2013 08:40 PM, Wolfgang Romey wrote:

Actually we had planned official support for ownCloud sync for PA4, but time
and manpower constraints didn't allow us to do it in time. It's still on
our to do list, though.

What has to be done to support ownCloud sync in PA4?

Cheers

Wolfgang
---


Wolfgang Romey

Anhänge bitte nur in offenen Formaten wie z.B. die openoffice-Formate

Diese email ist signiert.


___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active
I have the same question here. More generally, is there a wish list with 
features to be added in AP ? (e.g. owncloud support)
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


PA4 lastest stable image

2013-09-03 Thread Bogdan Cristea

Hi

Where can I find the latest stable image of PA4 ? I have looked on PA4, 
but I didn't find a link pointing to the latest PA iso.


regards
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: PA4 lastest stable image

2013-09-03 Thread Bogdan Cristea

On Tue 03 Sep 2013 03:13:49 PM CEST, Marco Martin wrote:

On Tuesday 03 September 2013, Bogdan Cristea wrote:

Hi

Where can I find the latest stable image of PA4 ? I have looked on PA4,
but I didn't find a link pointing to the latest PA iso.



http://makeplaylive.com/~notmart/

https://share.basyskom.com/plasma-active/deployment/wetab-exopc/tablet/mer/devel/weekly/



Thank you for the quick reply. For the PA site admins: these links 
should be immediately accessible from http://plasma-active.org/, 
instead of diving into Wiki

___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


[Active] [Bug 324464] New: Add-Ons don't slide to the left when an item is selected from the right-most vertical list

2013-09-03 Thread Bogdan Cristea
https://bugs.kde.org/show_bug.cgi?id=324464

Bug ID: 324464
   Summary: Add-Ons don't slide to the left when an item is
selected from the right-most vertical list
Classification: Unclassified
   Product: Active
   Version: PA 4
  Platform: Meego/Harmattan
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: Applications
  Assignee: active@kde.org
  Reporter: crist...@gmail.com

When one selects an item from the right-most list, the view
should automatically scroll to the left in order to show the right-most
panel (which allows to download and view the book) 

Reproducible: Always

Steps to Reproduce:
1. start Add Ons application (connect using an account)
2. select Books from the left vertical list, then Agriculture from the second
list
3. select an item from the third list
Actual Results:  
the item from the third list is selected, but the used needs to swipe left in
order to see the fourth pannel (the one with Download button)

Expected Results:  
the view should slide automatically after an item was selected from the right
most list

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: ownCloud in PA4

2013-09-03 Thread Bogdan Cristea

On Tue 03 Sep 2013 05:17:54 PM CEST, c...@vaultechnology.com wrote:

On 2013-09-03 05:15, Sebastian Kügler wrote:

On Tuesday, September 03, 2013 13:37:49 Thomas Pfeiffer wrote:

On 03.09.2013 12:39, Sebastian Kügler wrote:
 On Sunday, September 01, 2013 20:40:42 Wolfgang Romey wrote:
 What has to be done to support ownCloud sync in PA4?

 It has to be put into the announcement. The client is ready and
works.

It does? Dude why didn't you tell us?  I thought it was still in a
basically works, but there is still work to do kind of state.
Is it already in the repos? ownCloud for PA is very important, we must
not miss this is in the announcement!


I did, it worked for PA3, I told people here, and the conclusion was
that it's
a nice add-on feature, but nothing too central. I didn't feel like
pushing it,
I just don't like vanity.

There are reports of people who are running it without problems for
months,
and it's running on my laptop for months as well, stable.

The main problem with it, technically, is that it doesn't warn
against self-
signed ssl certificates. That would probably needs two or three days
of work.

In the repos, just install owncloud-client (or maybe mirall client, or
somesuch, and you get a nicely integrated PA sync client.

Cheers,


I agree with Thomas...ownCloud in PA4 is important. I will add it to
the announcement if it's working well for others.

However, I'm having some difficulties with it on ExoPC. I can do the
sign-in. Then the instructions are to click Finish to set up
synching locations. But there's no obvious Finish to click and all the
text is overwritten. Installed from scratch with the latest image from
notmart. Any suggestions?

Is owncloud working for other people on the ExoPC?

Carl

___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Hi

I am having issues too with owncloud client. How have you started the 
client ? From command line, when I type owncloud, only owncloudsyncd is 
available, there is no owncloud-client.


regards
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


[Active] [Bug 324467] New: When pulling down the taskbar, the tasks already started on the toolbar are above the onscreen keyboard

2013-09-03 Thread Bogdan Cristea
https://bugs.kde.org/show_bug.cgi?id=324467

Bug ID: 324467
   Summary: When pulling down the taskbar, the tasks already
started on the toolbar are above the onscreen keyboard
Classification: Unclassified
   Product: Active
   Version: PA 4
  Platform: Meego/Harmattan
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: Keyboard
  Assignee: active@kde.org
  Reporter: crist...@gmail.com

The icons of the tasks already started are shown above the onscreen keyboard
when trying to search something on the main task bar.

Reproducible: Always

Steps to Reproduce:
1. Start two or more tasks (e.g. Browser and Terminal)
2. Pull down the main taskbar and select the search box
3. On screen keyboard is shown
Actual Results:  
the icons of the already started tasks are shown above the keyboard, making
impossible to type

Expected Results:  
the on screen keyboard should be shown above all items currently found on the
screen

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: ownCloud in PA4

2013-09-05 Thread Bogdan Cristea

On 09/05/2013 11:09 AM, Wolfgang Romey wrote:

As I wrote, there is a widget for owncloud you can add to an activity and see,
which folders you have set up for syncing. That was the first i found, before
finding owncloud in settings.

Wolfgang



___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active
I didn't find the widget in the Widgets section after installing 
owncloud-client. Is this something that should be installed separately 
or has a different name ?
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: ownCloud in PA4

2013-09-05 Thread Bogdan Cristea

On Thu 05 Sep 2013 11:47:26 AM CEST, Bogdan Cristea wrote:

On 09/05/2013 11:29 AM, Wolfgang Romey wrote:

I didn't find the widget in the Widgets section after installing
owncloud-client. Is this something that should be installed separately
or has a different name ?

I looked it up in virtualbox a moment ago and it is the widget
Synchronisation
- online.

Maybe it should get another name.

Wolfgang


I have found the plasmoid, it was there from the beginning. The icon
and/or the name should be changed to something more close to owncloud


Well, after playing with the settings module and the plasmoid I am not 
sure that it is working. Anyway, in my case it fails to synchronize a 
remote folder. Are the sources for owncloud-client available ? I am 
interested in fixing this.

___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Feedback to the Dot story

2013-09-05 Thread Bogdan Cristea

On 09/05/2013 02:38 PM, Thomas Pfeiffer wrote:

On 05.09.2013 13:30, Aaron J. Seigo wrote:
so what do we do? wait until there are only tasks that a majority of 
random

test subjects do well on?


Do you think the tasks for the test were picked randomly? Most of the 
tasks in the test are essential for working with what sets Plasma 
Active apart from other OSes (like adding things to Activities, 
tagging stuff in Files or using SLC). It's not the first time I set up 
a usability test.



To me, this is not a polished product, this is still an (advanced)
early adopter / developer version.


i understand you feel this way (i noted so in my earlier email, 
even). this is

not your call to make, however.


It's standard procedure in human-centered design to do a usability 
test before releasing a product. And in every company I've worked 
with, people not being able to finish important tasks (or having big 
problems along the way) results in a red light, forcing the product 
team to do another iteration before release.
I know that's not the way it works in FOSS: We release early versions 
into the public to get feedback from a wide range of people. That's 
absolutely okay, but calling it a polished product instead of an 
early version still does not make sense to me.
It's not my call, but it isn't yours, either. If the majority of the 
team feels that PA4 is a polished product (which may very well be the 
case), then I have to bow to that majority, of course.



And since we target early adopters
and devs, why do we call it polished product”?


we target early adopters and devs because there are no devices that 
it comes

pre-installed on.


Yet I have heard several times things along the lines of The people 
we target with PA4 will be fine with that, which translates to me as 
We assume the target audience of this release to have above-average 
computer skills.


real products ship. real products are not perfect. yet somehow 
people use

them and even fall in love with them.


Release early, release often, I know. That's what all FOSS should do 
and

most do. But e.g. Simon or KTp give their - already pretty mature -
products 0.X version numbers and say they'll call them 1.0 when they
find nothing really missing anymore (that doesn't mean they cannot be
improved anymore, though).
I know this isn't about version numbers, but I've never heard David 
call


yes, it is not about version numbers.

that said ... Simon is quite mature; KTp still has a ways to go. 
regardless,
one of the hurdles KDE projects face is this perfectionism bleeding 
over into

public communication.


I consider both Simon and KTp pretty successful, despite their making 
clear that they are not 1.0 yet.


we can, and do, have all sorts of valid criticisms of the products 
produced.


for most people, that doesn’t matter one bit. and so when we go out 
and tell

people how *bad* our software is (which is exactly what your messaging
translates to in people’s minds) they just don’t use the software at 
all or if

they do they focus on the negatives we’ve  primed them for.

the result is that they do not use software that would actually work 
*just

fine* for them and even make them happy.

why? because we’ve pointed out what it does not do well in an attempt 
to over
our ass instead of highlighting what it does do well and focusing 
people on

that.


I know this list is publicly readable, but do you think what's written 
on this list directly affects public opinion? Read the quote from me 
in the article. Does this sound like pointing out how bad PA4 is to you?



I don't mean to say that we did bad work, because we didn't. We did
great work, but we still have more great work to do before we have a
polished product. PA4 is great, but still very rough in a whole lot
of ways.


shall i list all the bugs i run into on a daily basis on my (not very 
old)

Android phone?

shall i share the pain of watching my brother-in-law use his brand 
new top-of-
the-line Android phone while he complains about this or that as he 
fiddles

about with it?

you are trying to live in a world of perfection that doesn’t exist, 
and that

mindset is an existential threat to the  project.


I pointed out why I would not consider PA4 a polished product. I did 
not write a blog post about PA4 being bad or anything.


I have different standards for polished than you. That's fine with 
me, but I don't think that means I'll have to shut up and keep my 
standard for myself.
To me it's similar with bugs: I may have annoyed you and Marco and 
possible others as well when I insisted on several bugs being fixed 
before release.
However it turns out that fixing these bugs took only a few days, 
resulting in improved quality. And it was not that bug fixing which 
delayed the release in the end. I gave my green light on august 16th. 
If I'd kept my mouth shut, those bugs would still be in there.

___
Active mailing list
Active@kde.org

Re: Plasmoid installation in PA

2013-09-08 Thread Bogdan Cristea
Yes, the grid exists in Plasma 2, but due to screen size is less obvious,
while for small touch-screen it becomes a little too intrusive. Is there a
way to have the gris parameters changed in order to have closer grid points
or disable it completely ?


On Sat, Sep 7, 2013 at 10:33 PM, Thomas Pfeiffer colo...@autistici.orgwrote:

 On Saturday 07 September 2013 21:44:56 Bogdan Cristea wrote:
  Hi
 
  I had a look at new plasmoids installed on PA (Picture Frame). No
  modifications are needed to be installed in PA, but when a plasmoid is
  added to an activity it seems a little strange that the plasmoid
  position and size are somehow limited to some discrete values, i.e. the
  plasmoid cannot be positioned anywhere on the screen and its size cannot
  vary to any value.

 That's on purpose: The Activity Screen uses a layout grid, and everything
 automatically aligns to that grid. That limits the placement and sizing
 freedom a bit, but in combination with the resource boxes and the
 imprecision
 of touchscreen interaction, Activity screens would turn into a real visual
 mess pretty fast if there was not grid.
 Btw: I've heard that Plasma 2 uses a grid layout for all workspaces (not
 sure
 if that's still true, though).

  One more question. Where could I add the new plasmoids I find to work on
  PA (e.g. picture frame) ?

 There is no offical way yet, but as soon as it's completely rolled out,
 Plasmoids will be made available through Add Ons. See also Aaron's Google
 Plus
 post sharing the release announcement
 (https://plus.google.com/10740696571114069/posts/ffJp9rpTMZe):
 The real story, however, is going to be in the months after this release
 as
 we roll out the content store management app for people who would like to
 participate by offering original content (apps, artwork, books, etc,
 etc.), an
 app developer support program and focus on hardware adaptations.

 Cheers,
 Thomas

 ___
 Active mailing list
 Active@kde.org
 https://mail.kde.org/mailman/listinfo/active




-- 
Bogdan Cristea
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


PA4 installed on Virtual Box

2013-09-08 Thread Bogdan Cristea

Hi

I have just installed PA4 on Virtual Box and Windows8, but I am unable 
to connect to the network. Is there a way to do this (configuration 
parameters) ?


regards
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Picture Frame plasmoid rpm

2013-09-08 Thread Bogdan Cristea

Hi

I have packaged for PA Picture Frame plasmoid from KDE plasma addons. 
The rpm has been tested on ExoPC tablet and is available here:


http://repo.merproject.org/obs/home:/cristeab/kde_devel_ux_latest_i586/

The project homepage can be found here (it can be used as example for 
packaging plasmoids for PA):


https://github.com/cristeab/picture-frame

regards
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


[Active] [Bug 324777] Found no way to enter new RSS Feed in the feed reader

2013-09-11 Thread Bogdan Cristea
https://bugs.kde.org/show_bug.cgi?id=324777

Bogdan Cristea crist...@gmail.com changed:

   What|Removed |Added

 CC||crist...@gmail.com

--- Comment #1 from Bogdan Cristea crist...@gmail.com ---
RSS Plasmoid works for me, but I had a similar issue with the ok button. It
might be related to the fact that it takes some time for the news to be feed.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: new bodega server up

2013-10-05 Thread Bogdan Cristea
Any news about bodega server ? When I try to create an account with my
gmail address I get an error message saying that my e-mail address is
invalid.


On Sat, Sep 28, 2013 at 11:58 AM, Aaron J. Seigo ase...@kde.org wrote:

 On Saturday, September 28, 2013 07:53:57 you wrote:
  When new apps can be uploaded to bodega ?

 Technically they could be uploaded right now, but I’d like to wait until
 Monday/Tuesday so that we can release the documentation (which will
 prevent me
 having to answer the same questions over and over).

  The link you provide gives only a
  page with Vivaldi tablet information. No other options are available.

 I actually didn’t provide any links other than to a PDF file and the
 apidocs
 (which is at apidocs.makeplaylive.com).

 The bodega server runs on addons.makeplaylive.com:3443 and the management
 app
 is also on its own domain. Essentially, each service gets hosted on its own
 domain.

 The management app is live right now at manager.makeplaylive.com but I’d
 like
 to ask everyone to wait for the documentation.

 --
 Aaron J. Seigo
 ___
 Active mailing list
 Active@kde.org
 https://mail.kde.org/mailman/listinfo/active




-- 
Bogdan Cristea
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: new bodega server up

2013-10-07 Thread Bogdan Cristea

On 10/07/2013 01:17 PM, Aaron J. Seigo wrote:

On Sunday, October 6, 2013 08:48:14 crist...@gmail.com wrote:

I was expecting to have a more informative error message. Anyway, using my
addons account doesnâEUR^(TM)t work either:
  
Odd; I just logged in, I also tried an incorrect password and a non-existent

email address and did not receive any errors.

The installation was upgraded over the weekend after a private beta period
last week, perhaps it was during that time? Can you try again?


Hi

I have tried to login to this address

http://manager.makeplaylive.com/

and I get this error message with my addons account:


 Express


   /500/TypeError: Cannot read property 'id' of undefined

 * at Object.module.exports.loadMainPage
   (/home/bodega/bodega-webapp-manager-production/lib/index.js:27:51)
 * at BodegaManager.index
   (/home/bodega/bodega-webapp-manager-production/lib/bodega.js:126:15)
 * at app.get.res.render.network
   (/home/bodega/bodega-webapp-manager-production/routes.js:43:23)
 * at callbacks
   
(/home/bodega/bodega-webapp-manager-production/node_modules/express/lib/router/index.js:164:37)
 * at isAuthorized
   (/home/bodega/bodega-webapp-manager-production/routes.js:24:9)
 * at callbacks
   
(/home/bodega/bodega-webapp-manager-production/node_modules/express/lib/router/index.js:164:37)
 * at param
   
(/home/bodega/bodega-webapp-manager-production/node_modules/express/lib/router/index.js:138:11)
 * at pass
   
(/home/bodega/bodega-webapp-manager-production/node_modules/express/lib/router/index.js:145:5)
 * at Router._dispatch
   
(/home/bodega/bodega-webapp-manager-production/node_modules/express/lib/router/index.js:173:5)
 * at Object.router
   
(/home/bodega/bodega-webapp-manager-production/node_modules/express/lib/router/index.js:33:10)


not sure why, is there some options that I need to activate in my 
account ? Anyway, I am interested in publishing an application based on 
okular on bodega server, please let me know when this can be done.


thanks
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: new bodega server up

2013-10-07 Thread Bogdan Cristea

On 10/07/2013 06:31 PM, Wolfgang Romey wrote:

now (18.30 ) login is working. I will try to uload a few of my own images
soon. Unless Aaron says: don't do it (now)


Same here, I am able to login now. I'll try to upload my application in 
the next couple of days.

___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Add application from mer repos to Bodega server

2013-10-09 Thread Bogdan Cristea

Hi
I have just added an application from mer repositories and uploaded 
several screenshots, but nothing appears under my assets tab.

regards
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Add application from mer repos to Bodega server

2013-10-09 Thread Bogdan Cristea

On Wed 09 Oct 2013 10:11:43 PM CEST, Marco Martin wrote:

On Wednesday 09 October 2013 21:43:05 Bogdan Cristea wrote:

Hi
I have just added an application from mer repositories and uploaded
several screenshots, but nothing appears under my assets tab.
regards
Bogdan


i don't see anything in the incomingassets table.
if you add one, you should see it appear in the assets page indeeded, in the
review pending ones
at least is what i see it happens with my user.

did you use app from obs or uploaded directly an rpm?
and it didn't answer with any error whatsoever?



I have used app from obs, no error shown
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Add application from mer repos to Bodega server

2013-10-10 Thread Bogdan Cristea

On 10/10/2013 11:29 AM, Marco Martin wrote:

now the form should report an error in case something goes wrong (btw, i tried
again to upload an asset,  and it works fine here, so may depend from what
user is doing it)

another thing you can try is to not upload any image at first, just add them
after the asset has been created

btw, if you give me a pointer  of where is the package you want to publish on
obs, i'll copy it in the kde:stable:apps, the repository (to put in the same
place the apps that are in the store)

Hi

Here is the link to my repository

http://repo.merproject.org/obs/home:/cristeab/kde_devel_ux_latest_i586/i586/

The package file is: TabletReader-3.0.2-18.1.Nemo.i586.rpm

However, I would like to update this package, so simply copying into 
another place might be an issue since different versions might be in 
different places.


regards
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Experiences during Bodega partner experience walkthrough

2013-10-22 Thread Bogdan Cristea

On Tue 22 Oct 2013 10:04:57 PM CEST, Thomas Pfeiffer wrote:

On Tuesday 22 October 2013 21:55:53 Aaron J. Seigo wrote:

On Tuesday, October 22, 2013 16:38:17 Thomas Pfeiffer wrote:

On Tuesday 22 October 2013 13:47:27 Aaron J. Seigo wrote:

When sending a request for publishing for an image, there is still the
message, that an icon is missing. There is only the possibility to
upload
a
sreenshot, which i did, but which is not accepted as an icon.


Turning screenshots into icons is not implemented; you need to provide
an
icon.


Auto-creating icons from thumbnails was what Marco suggested in a previous
thread, wasn't it (see below)?


yes; but it only got implemented tonight (thanks to marco)


Lightning-fast Marco, as always :)


b) modify the server in such when icons are generated, if none present,
use
the screenshot and resize it icon-sized


Is it still the plan to implement that in the future? For me, this is the
way to go, because what works better as an icon for an image than a small
version of it?


yep. and for things like books we even know which screenshot to use (the
front cover).

many will still want to create their own custom icons, though, as generally
the result will usually be better.


Sure. People should have the chance to provide their own icon, with auto-
generated ones as fallback.
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Just tried again to create an asset from OBS, but still my assets list 
is empty with no error message. I am registered as Publisher. Do I need 
to activate other options ?

___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Creating an asset on Bodega server

2013-10-25 Thread Bogdan Cristea

Hi
When I try to create a simple image asset, I get on create the error 
PartnerInvalid. When creating an App from OBS I get no error but the 
asset is not created. Probably the two errors are related. Any advice ?

regards
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Creating an asset on Bodega server

2013-10-25 Thread Bogdan Cristea

On Fri 25 Oct 2013 09:07:10 PM CEST, Marco Martin wrote:

On Friday 25 October 2013 20:51:08 Bogdan Cristea wrote:

Hi
When I try to create a simple image asset, I get on create the error
PartnerInvalid. When creating an App from OBS I get no error but the
asset is not created. Probably the two errors are related. Any advice ?
regards
Bogdan


are you content creator in the partner?



I am an approved Publisher, where should I look for content creator
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Creating an asset on Bodega server

2013-10-25 Thread Bogdan Cristea

On Fri 25 Oct 2013 09:16:44 PM CEST, Bogdan Cristea wrote:

On Fri 25 Oct 2013 09:16:56 PM CEST, Marco Martin wrote:

On Friday 25 October 2013 21:07:50 you wrote:

On Fri 25 Oct 2013 09:07:10 PM CEST, Marco Martin wrote:

On Friday 25 October 2013 20:51:08 Bogdan Cristea wrote:

Hi
When I try to create a simple image asset, I get on create the error
PartnerInvalid. When creating an App from OBS I get no error but
the
asset is not created. Probably the two errors are related. Any
advice ?
regards
Bogdan


are you content creator in the partner?


I am an approved Publisher, where should I look for content creator


in the people of the publisher (little action icon with the faces)

then add person, your email/login and then set the capabilities


I got it, thanks


I have created two assets, with a picture and from OBS, but with both I 
get Error in sending your request

___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Creating an asset on Bodega server

2013-10-25 Thread Bogdan Cristea

On Fri 25 Oct 2013 10:15:53 PM CEST, Aaron J. Seigo wrote:

On Friday, October 25, 2013 21:16:44 Bogdan Cristea wrote:

On Fri 25 Oct 2013 09:16:56 PM CEST, Marco Martin wrote:

On Friday 25 October 2013 21:07:50 you wrote:

On Fri 25 Oct 2013 09:07:10 PM CEST, Marco Martin wrote:

On Friday 25 October 2013 20:51:08 Bogdan Cristea wrote:

Hi
When I try to create a simple image asset, I get on create the error
PartnerInvalid. When creating an App from OBS I get no error but the
asset is not created. Probably the two errors are related. Any advice ?
regards
Bogdan


are you content creator in the partner?


I am an approved Publisher, where should I look for content creator


in the people of the publisher (little action icon with the faces)

then add person, your email/login and then set the capabilities


I got it, thanks


I improved this the other day for new partners: now when you create a new
partner, you get *all* the roles associated with your account (as the
“founding” individual)



I think that more explicit error messages are necessary. For example, 
it should say explicitly what roles I need in order to create in asset 
an how

___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: bodega stores - book reader

2013-11-04 Thread Bogdan Cristea

On 11/04/2013 12:41 PM, Wolfgang Romey wrote:

When trying to install the book-reader, AddOns crushed everytime I tried it. I
tried to generate a bug report, but when trtying to install the debug symbols
i got ther message that not all the neccessary repos are there. Which do I
need.
I have tried yesterday to install TabletReader, but the desktop file is 
opened instead. I am not sure what happened after the update of today, 
I'll retest this evening.

___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: bodega stores - book reader

2013-11-04 Thread Bogdan Cristea

On Mon 04 Nov 2013 07:45:24 PM CET, Marco Martin wrote:

On Monday 04 November 2013, Wolfgang Romey wrote:


Yes, there is some tweaking left on the PA side to make this work
properly. Working on it :)


When trying to install the book-reader, AddOns crushed everytime I tried
it. I tried to generate a bug report, but when trtying to install the


Luckily i could reproduce.

now after pulling the latest update should be fixed.
I suceeded to install and uninstall the tabletreader app some times and all
went fine.
Also fixed the issue for which launch opened the desktop file instead of
launching the application.
So testing of the install process with latest client pulled from zypper would
be welcome ;)

Cheers,
Marco Martin
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


I can confirm that TabletReader installs and launches from Add-Ons. 
Good work Martin

___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: Errors when editing an already published asset

2013-11-11 Thread Bogdan Cristea

On 11/11/2013 10:44 AM, Marco Martin wrote:

what do you mean as in platform tag? you can assign any of the two in the tag
drag and drop thinghie (second action icon in the assets view)
I don't understand your question what do you mean as in platform tag?. 
The platform tag I see when editing contains Vivaldi string and if I 
publish my assert exactly like this it gets rejected.

___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: random idea about OBS packages

2013-11-11 Thread Bogdan Cristea

On 11/11/2013 11:17 AM, Marco Martin wrote:

I was thinking about how to make the osc integration a bit better, since now
is a bit clunky (starting from the fact the input fields in the upload form
seems to be a bit confusing)

another problem that surfaced is that when there is an update in plasma active
that touches things like kdelibs, it triggers a rebuild of the other packages
as well, changing the build number, making the packageid invalid (i corrected
by hand the two assets interested)

an idea may be:
* the user only inputs the project (or not even that if we force all to be in
a single repo)
* the ackage name (again the obs package name and rpm name are the same in 99%
of the cases)
* the architecturei586,armv7hl (if we still want to be two different assets
for the two architectures)

then the descriptor file on the server is just a template, the actual
packageid should be generated by a command (possibly when the asset is
downloaded, to be really really sure is the newest one)

something like

osc list -b kde:stable:apps TabletReader|grep TabletReader

seems a good base for the job

opinions? comments?



I would go for using the package name and its version number, as defined 
by the author, e.g.

name: TabletReader
version: 3.0.2
then the number generated by the build system is added automatically.

However, I don't see how you update the package from that single repo 
when the author makes available a new version. Should the author upload 
all the files needed to build the package on OBS ?

___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Re: random idea about OBS packages

2013-11-12 Thread Bogdan Cristea

On Tue 12 Nov 2013 04:12:41 PM CET, Marco Martin wrote:

an update on the direction i'm going.

At this point using invocation of the external tool osc it can fetch both the
proper rpm filesize and correct rpm name, buiold number included.

One problem is that right now it's based on the extension of the uploaded file
being .desc, but apart being hacky, the branch mart/obsmanager of the server
works.

one idea was, instead of requiring a file to be uploaded is to have some data
source concept..

The database already has the concept of externpath, so, if the user while
creating an asset from obs does instead specify a repo and a package (like
home:foo) the externpath becomes
obs://build.merproject.org/home:foo/packagename

when this happens a desc file gets created (that should probably become json,
to ensure a bit of expandibility) and it works as now in the mart/obsmanager
branch

when the publisher approves a pending request, another external osc invokation
happens automatically and it does a copypac of the package between home:foo
and kde:stable:apps, so the approval procedure would be completely web based

not sure if i explained myself clearly at all.. but, comments? ;)



The idea of submitting just a repository path and a package name is 
something I was expecting from the beginning. But you need some online 
validation mechanism in order to make sure that the user fills 
correctly these fields.

___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Opera browser in PA i386

2013-12-07 Thread Bogdan Cristea

Hi

I have downloaded Opera browser archive for i386 and it runs smoothly in 
PA installed on an ExoPC tablet. The main issue seems to be that the on 
screen keyboard is not triggered when needing to input some text. I am 
wondering if there is a way to manually trigger the on screen keyboard 
(not sure however if the text will be received by the text box in this 
case). Other solution might be to try to write an extension for Opera in 
order to have integration with PA. What do you think ?


regards
Bogdan
___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active


Fwd: Opera browser in PA i386 - cont

2013-12-07 Thread Bogdan Cristea

And it seems that Flash Player is working (at least on youtube)


 Original Message 
Subject:Opera browser in PA i386
Date:   Sat, 07 Dec 2013 21:00:28 +0100
From:   Bogdan Cristea crist...@gmail.com
To: active@kde.org active@kde.org



Hi

I have downloaded Opera browser archive for i386 and it runs smoothly in
PA installed on an ExoPC tablet. The main issue seems to be that the on
screen keyboard is not triggered when needing to input some text. I am
wondering if there is a way to manually trigger the on screen keyboard
(not sure however if the text will be received by the text box in this
case). Other solution might be to try to write an extension for Opera in
order to have integration with PA. What do you think ?

regards
Bogdan



___
Active mailing list
Active@kde.org
https://mail.kde.org/mailman/listinfo/active