Punit Mehta | 17 Jun 2013 19:32
Picon

Meeting for discussing the state of the Khipu

Hi all .. :)
         
                      I am a Google Summer of Code - 2013 student and I am working on the application khipu (Advance Mathematical Function Plotter and also a replacement for Kmplot ) with my mentor Antonio Larrosa and also Aleix Pol. My project is to polish the application and  make it releasable at the end of GSoC. I have implemented some of the features mentioned in my proposal and also we have been testing the application from many months. So, we think this is the right time to discuss the state of the project and some future plans for the application. For that , we have planned to arrange a meeting on #kde-edu on 18th June , 2013 at 3:30 PM (CEST) or 1.30 PM (UTC). So , we heartily invite you all to join the channel at the mentioned time and give your precious feedback on what lacks in the application for its first release and on which features we should focus more ! :) 


                       Thanks in advance.... Hope to see you there :) 

Regards,
Punit Mehta 
[ IRC-nick:punit9462 ]
_______________________________________________
kde-edu mailing list
kde-edu <at> mail.kde.org
https://mail.kde.org/mailman/listinfo/kde-edu
Punit Mehta | 16 Jun 2013 20:15
Picon

Review Request 111051: Added a function to change the color of the reference plane's grids in plotter3D.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/111051/

Review request for KDE Edu, Aleix Pol Gonzalez and Percy Camilo Triveño Aucahuasi.
By Punit Mehta.

Description

I have added a function in plotter3D class to change the color of the reference plane's grids. The color can be changed manually while using any application based on analitza. Initially , it was only supporting a "grey" color. Now , it can draw any color's grid based on the user's choice.

Testing

Done ! works perfect in khipu.

Diffs

  • analitzaplot/plotter3d.h (3b56226)
  • analitzaplot/plotter3d.cpp (492a84c)

View Diff

_______________________________________________
kde-edu mailing list
kde-edu <at> mail.kde.org
https://mail.kde.org/mailman/listinfo/kde-edu
Punit Mehta | 13 Jun 2013 13:26
Picon

Review Request 110992: Changed some code in plotsdictionarymodel.cpp and plotsdictionary.h to have better dictionary support

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/110992/

Review request for KDE Edu, Aleix Pol Gonzalez and Percy Camilo Triveño Aucahuasi.
By Punit Mehta.

Description

Improvement in the code of plotsdictionarymodel class in analitzaplot. 1) Initially , the constructor itself creates the dictionary. Now , the constructor just initializes the object and user/programmer can create the dictionary according to the wish and the flow of the program. 2) Also , I have added some improvements to support plotting from the dictionary for both the dimensions ( dim2D and dim3D ). For that , the assumption is that the dictionary file ( .plots file ) will contain the dimension in the first line as a comment ( e.g. [// dimension :=2 //] code in the first line in .plot file). 3) I have also added some other dictionary files ( for dim2D and dim3D ) so that other application based on Analitza ( in my case Khipu ) can use the dictionary support very well. These dictionary files are just for testing purpose. I am still looking forward in creating a rich collection of dictionary files. Here, the dictionary files will be installed in the directory whose path will be like : [ default-kde-path / libanalitza /plots ]. -> Once , the change will be merged in analitzaplot , khipu can also work very well as far as the dictionary support is concerned. :)

Testing

Done.. works in khipu .. but I am not sure if other part of analitza uses plotsdictionarymodel. If that is the case , then we need to change the code for that class also . but as fas as I know , there is not any other class which depends on plotsdictionarymodel in analitza.

Diffs

  • analitzaplot/data/plots/basic_curves.plots (42d8ec7)
  • analitzaplot/plotsdictionarymodel.h (a308cdc)
  • analitzaplot/plotsdictionarymodel.cpp (3e99167)

View Diff

_______________________________________________
kde-edu mailing list
kde-edu <at> mail.kde.org
https://mail.kde.org/mailman/listinfo/kde-edu
Albert Astals Cid | 12 Jun 2013 23:10
Picon
Favicon
Gravatar

Fwd: 4.11 Beta 1 release announcement

If someone has something news-worthy

Cheers,
  Albert

----------  Missatge reenviat  ----------

Assumpte: 4.11 Beta 1 release announcement
Data: Dimarts, 11 de juny de 2013, 19:52:25
De: Albert Astals Cid <aacid <at> kde.org>
A: kde-promo <at> kde.org
CC: kde-devel <at> kde.org, kde-core-devel <at> kde.org, release-team <at> kde.org

Hi, I just realized that we are releasing 4.11 Beta 1 in a few days (2 or 3) 
and we have nothing written like 

http://www.kde.org/announcements/announce-4.10-beta1.php

Please people that know of new news-worthy features add them to
https://notes.kde.org/p/411beta1

If someone with writting skills can [re]write the features in a nice way it'd 
be cool.

And we probably need a screenshot.

Also someone should start leading the proper 4.11 announcement work.

Cheers,
  Albert - Who never signed up to do any kind of promo work

>> Visit http://mail.kde.org/mailman/listinfo/kde-devel#unsub to unsubscribe 
<<
-----------------------------------------
Vadim Zhukov | 11 Jun 2013 17:10
Picon
Gravatar

Review Request 110954: Rewrite FindBoostPython.cmake for correctness and stability

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/110954/

Review request for KDE Edu and David Narváez.
By Vadim Zhukov.

Description

1. Return compile check (see BoostPython_TRY_COMPILE() macro), it's needed for some cases. Say, default Python in system is Python 3.3, and it gets picked up. But Boost 1.53 python library could not work with it and requires Python 2.x. Without compile check you'll pick up uncompatible Python version. 2. find_package(PkgConfig) moved under corresponding if(...) and if(PKG_CONFIG_FOUND) is checked after. While it's spread enough, there is no guarantee you'll have pkg-config on that system. Also, PYTHON_VERSIONS moved closer to the scope where it's used to improve readability. 3. Use standard CMake find_package_handle_standard_args() and cmake_push_check_state()/cmake_pop_check_state() instead of rolling own equivalent logic. The latter logic was ever wrong, making HAVE_BOOST_SHARED_PTR_HPP check fail. 4. BoostPython_INCLUDE_DIRS and BoostPython_LIBRARIES are saved in cache, as other CMake modules do. This unbreaks the situation when CMake detects that it should be re-run (for example, some CMakeLists.txt file was modified), and runs through modules again - in this case, if BoostPython_INCLUDE_DIRS and BoostPython_LIBRARIES are not in cache, all tests will be run again, and probably fail now.

Testing

OpenBSD-CURRENT, CMake 2.8.11, KDE 4.10.4, Boost 1.53, Python 3.3 and 2.7.
Bugs: 320807

Diffs

  • cmake/modules/FindBoostPython.cmake (d6c5a34)

View Diff

_______________________________________________
kde-edu mailing list
kde-edu <at> mail.kde.org
https://mail.kde.org/mailman/listinfo/kde-edu
Vadim Zhukov | 11 Jun 2013 17:08
Picon
Gravatar

Review Request 110953: Stylistic changes to FindBoostPython.cmake and framework

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/110953/

Review request for KDE Edu and David Narváez.
By Vadim Zhukov.

Description

Polish FindBoostPython.cmake from CMake's point of view: * Use BoostPython_ prefix instead of BOOST_PYTHON_ (BOOSTPYTHON_ is also acceptable but is unreadable); * Remove extra call to find_package(BoostPython); * Replace macro_optional_find_package() with simple find_package(), CMake has CMAKE_DISABLE_FIND_PACKAGE_Foo feature for a while. This is a first patch of a bigger set, containing only minor fixes.

Testing

OpenBSD-CURRENT, CMake 2.8.11, KDE 4.10.4, Boost 1.53, Python 3.3 and 2.7.
Bugs: 320807

Diffs

  • CMakeLists.txt (3c3da29)
  • KigConfigureChecks.cmake (fed38b3)
  • cmake/modules/FindBoostPython.cmake (d6c5a34)

View Diff

_______________________________________________
kde-edu mailing list
kde-edu <at> mail.kde.org
https://mail.kde.org/mailman/listinfo/kde-edu
Punit Mehta | 8 Jun 2013 14:13
Picon

Re: kde-edu Digest, Vol 123, Issue 5

Hi Tarang.. :) 


                      Nice to see you in Kde-edu.! :)  I would suggest to upload the diff against master branch ( just use "git diff  > name.diff" ) in your working directory and then upload that file by clicking upload diff !  And just hit publish once ! :) 

Regards,
Punit Mehta

On Sat, Jun 8, 2013 at 5:30 PM, <kde-edu-request <at> mail.kde.org> wrote:
Send kde-edu mailing list submissions to
        kde-edu <at> mail.kde.org

To subscribe or unsubscribe via the World Wide Web, visit
        https://mail.kde.org/mailman/listinfo/kde-edu
or, via email, send a message with subject or body 'help' to
        kde-edu-request <at> mail.kde.org

You can reach the person managing the list at
        kde-edu-owner <at> mail.kde.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of kde-edu digest..."


Today's Topics:

   1. Review Request 110890: Asking confirmation while quitting
      parley. (Tarang Patel)
   2. Re: Review Request 110890: Asking confirmation while quitting
      parley. (Tarang Patel)
   3. Re: Review Request 110890: Asking confirmation while quitting
      parley. (Tarang Patel)
   4. Re: Review Request 110890: Asking confirmation while quitting
      parley. (Tarang Patel)


----------------------------------------------------------------------

Message: 1
Date: Sat, 08 Jun 2013 05:42:57 -0000
From: "Tarang Patel" <tarangrockr <at> gmail.com>
To: "Tarang Patel" <tarangrockr <at> gmail.com>, "KDE Edu"
        <kde-edu <at> kde.org>
Subject: Review Request 110890: Asking confirmation while quitting
        parley.
Message-ID: <20130608054257.25403.36782 <at> vidsolbach.de>
Content-Type: text/plain; charset="utf-8"


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/110890/
-----------------------------------------------------------

Review request for KDE Edu.


Description
-------

Fixed bug of asking confirmation while quitting parley.


Diffs
-----


Diff: http://git.reviewboard.kde.org/r/110890/diff/


Testing
-------

Tested and verified on Ubuntu 12.04


Thanks,

Tarang Patel

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.kde.org/pipermail/kde-edu/attachments/20130608/1c78ebbf/attachment-0001.html>

------------------------------

Message: 2
Date: Sat, 08 Jun 2013 05:52:33 -0000
From: "Tarang Patel" <tarangrockr <at> gmail.com>
To: "Tarang Patel" <tarangrockr <at> gmail.com>, "KDE Edu"
        <kde-edu <at> kde.org>
Subject: Re: Review Request 110890: Asking confirmation while quitting
        parley.
Message-ID: <20130608055233.25928.45895 <at> vidsolbach.de>
Content-Type: text/plain; charset="utf-8"


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/110890/
-----------------------------------------------------------

(Updated June 8, 2013, 5:52 a.m.)


Status
------

This change has been discarded.


Review request for KDE Edu.


Description
-------

Fixed bug of asking confirmation while quitting parley.


Diffs
-----


Diff: http://git.reviewboard.kde.org/r/110890/diff/


Testing
-------

Tested and verified on Ubuntu 12.04


Thanks,

Tarang Patel

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.kde.org/pipermail/kde-edu/attachments/20130608/663066da/attachment-0001.html>

------------------------------

Message: 3
Date: Sat, 08 Jun 2013 05:53:09 -0000
From: "Tarang Patel" <tarangrockr <at> gmail.com>
To: "Tarang Patel" <tarangrockr <at> gmail.com>, "KDE Edu"
        <kde-edu <at> kde.org>
Subject: Re: Review Request 110890: Asking confirmation while quitting
        parley.
Message-ID: <20130608055309.26022.32159 <at> vidsolbach.de>
Content-Type: text/plain; charset="utf-8"


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/110890/
-----------------------------------------------------------

(Updated June 8, 2013, 5:53 a.m.)


Review request for KDE Edu.


Description
-------

Fixed bug of asking confirmation while quitting parley.


Diffs
-----


Diff: http://git.reviewboard.kde.org/r/110890/diff/


Testing
-------

Tested and verified on Ubuntu 12.04


Thanks,

Tarang Patel

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.kde.org/pipermail/kde-edu/attachments/20130608/8691ccd4/attachment-0001.html>

------------------------------

Message: 4
Date: Sat, 08 Jun 2013 05:57:31 -0000
From: "Tarang Patel" <tarangrockr <at> gmail.com>
To: "Tarang Patel" <tarangrockr <at> gmail.com>, "KDE Edu"
        <kde-edu <at> kde.org>
Subject: Re: Review Request 110890: Asking confirmation while quitting
        parley.
Message-ID: <20130608055731.26299.50928 <at> vidsolbach.de>
Content-Type: text/plain; charset="utf-8"


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/110890/
-----------------------------------------------------------

(Updated June 8, 2013, 5:57 a.m.)


Review request for KDE Edu.


Description
-------

Fixed bug of asking confirmation while quitting parley.


Diffs
-----


Diff: http://git.reviewboard.kde.org/r/110890/diff/


Testing
-------

Tested and verified on Ubuntu 12.04


File Attachments (updated)
----------------


  http://git.reviewboard.kde.org/media/uploaded/files/2013/06/08/patch.diff


Thanks,

Tarang Patel

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.kde.org/pipermail/kde-edu/attachments/20130608/db38c078/attachment-0001.html>

------------------------------

_______________________________________________
kde-edu mailing list
kde-edu <at> mail.kde.org
https://mail.kde.org/mailman/listinfo/kde-edu


End of kde-edu Digest, Vol 123, Issue 5
***************************************

_______________________________________________
kde-edu mailing list
kde-edu <at> mail.kde.org
https://mail.kde.org/mailman/listinfo/kde-edu
Tarang Patel | 8 Jun 2013 07:42
Picon

Review Request 110890: Asking confirmation while quitting parley.

This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/110890/

Review request for KDE Edu.
By Tarang Patel.

Description

Fixed bug of asking confirmation while quitting parley.

Testing

Tested and verified on Ubuntu 12.04

Diffs

    View Diff

    _______________________________________________
    kde-edu mailing list
    kde-edu <at> mail.kde.org
    https://mail.kde.org/mailman/listinfo/kde-edu
    
    Babulnath Kulkarni | 4 Jun 2013 13:57
    Picon

    Tools in Rocs

    Hi
    I have installed the Graph Theory IDE Rocs  and am struggling to get the tools going. However the tools from the top menu do not appear to be installed. What could be the reason? I could not find any forum so I am posting the question here. I need it for the Graph Theory research.
    Thanks,



    --
    K.M.Kulkarni
    Goregaon Mumbai
    _______________________________________________
    kde-edu mailing list
    kde-edu <at> mail.kde.org
    https://mail.kde.org/mailman/listinfo/kde-edu
    
    Punit Mehta | 29 May 2013 17:16
    Picon

    Review Request 110712: Removed the space description entry from the khipu-specific file.

    This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/110712/

    Review request for KDE Edu, Aleix Pol Gonzalez and Percy Camilo Triveño Aucahuasi.
    By Punit Mehta.

    Description

    As discussed with Aliex , I have removed the code from the open and save action that deals with the space-description. If we want , then we can even add it in the future !

    Testing

    done.

    Diffs

    • CMakeLists.txt (f7dc583)
    • src/CMakeLists.txt (0a50c54)
    • src/dashboard.h (a2a9c46)
    • src/dashboard.cpp (688a49d)
    • src/datastore.h (a1276a7)
    • src/datastore.cpp (616e0cc)
    • src/mainwindow.h (1f059f8)
    • src/mainwindow.cpp (9d6e010)
    • src/plotseditor.h (47304c6)
    • src/plotseditor.cpp (106cdf5)

    View Diff

    _______________________________________________
    kde-edu mailing list
    kde-edu <at> mail.kde.org
    https://mail.kde.org/mailman/listinfo/kde-edu
    
    Anne-Marie Mahfouf | 27 May 2013 13:49
    Picon
    Favicon

    Review Request 110667: Change wording of random colors setting

    This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/110667/

    Review request for KDE Edu and Albert Astals Cid.
    By Anne-Marie Mahfouf.

    Description

    In the configuration dialog, you can choose to keep current colors for the divisions or have random colors. The wording was not easily translatable and lead to confusion. This patch hopes to make it better. I talked with a few translators about this.

    Testing

    Built and ran it.

    Diffs

    • src/kgeographyoptions.ui (b03052b)

    View Diff

    _______________________________________________
    kde-edu mailing list
    kde-edu <at> mail.kde.org
    https://mail.kde.org/mailman/listinfo/kde-edu
    

    Gmane