public
Description: BasKet Note Pads - an system for organizing information in KDE.
Homepage: http://basket.kde.org
Clone URL: git://github.com/kelvie/basket.git
basket /
name age message
file AUTHORS Sat Jun 21 18:06:20 -0700 2008 Make all files UTF-8. This was done by searchi... [kelvie]
file AdditionalInfo.txt Fri Mar 21 14:49:03 -0700 2008 Ran am2cmake. [kelvie]
file CMakeLists.txt Sat Aug 09 21:45:38 -0700 2008 Install icons, backgrounds, welcome baskets, an... [kelvie]
file COPYING Sun Jun 04 08:13:52 -0700 2006 Initial import.\nSince 0.6.0 Alpha 2b, 40 bugs,... [seb]
file ConvenienceLibs.cmake Fri Mar 21 14:49:03 -0700 2008 Ran am2cmake. [kelvie]
file INSTALL Sun Aug 03 18:20:35 -0700 2008 Updated the INSTALL document and the installer.... [kelvie]
file README Thu May 22 12:34:37 -0700 2008 Spelled Sébastien's name wrong in the README. ... [kelvie]
file TODO Sun Jun 04 08:36:14 -0700 2006 Commit works, removing changes. git-svn-id: ht... [seb]
directory backgrounds-previews/ Wed Aug 06 21:58:23 -0700 2008 Clean up the CMake files This just brought to ... [Laurent Montel]
directory backgrounds/ Wed Aug 06 21:58:23 -0700 2008 Clean up the CMake files This just brought to ... [Laurent Montel]
file basket.qrc Sat Aug 09 21:20:46 -0700 2008 Replaced ugly Q3MimeSourceFactory stuff with Qt... [atomopawn]
file config.h.cmake Fri May 30 16:20:09 -0700 2008 SoundContent: Define WITHOUT_ARTS (since we don... [kelvie]
directory doc/ Sun Jun 29 23:14:10 -0700 2008 Remove the versioning scripts and related files... [kelvie]
directory file-integration/ Wed Aug 06 21:58:23 -0700 2008 Clean up the CMake files This just brought to ... [Laurent Montel]
directory images/ Wed Aug 06 21:58:23 -0700 2008 Clean up the CMake files This just brought to ... [Laurent Montel]
file installer Wed Aug 06 21:35:51 -0700 2008 Fix quoting inside prefix_cmd in the installer. [kelvie]
directory kontact_plugin/ Wed Aug 06 21:58:23 -0700 2008 Clean up the CMake files This just brought to ... [Laurent Montel]
file links.sh Sat Feb 03 08:27:43 -0800 2007 On the last commit I forgot to say that I remov... [seb]
directory po/ Wed Aug 06 21:58:23 -0700 2008 Clean up the CMake files This just brought to ... [Laurent Montel]
directory src/ Thu Sep 25 16:13:08 -0700 2008 Added the new likeback dialog from Valerio Pilo... [kelvie]
directory tags/ Sat Aug 09 21:45:38 -0700 2008 Install icons, backgrounds, welcome baskets, an... [kelvie]
directory welcome/ Wed Aug 06 21:58:23 -0700 2008 Clean up the CMake files This just brought to ... [Laurent Montel]
README
BasKet Note Pads
================
Kelvie Wong <kelvie@ieee.org>

////
Run this document through asciidoc to read it nicely-formatted in HTML.
////

Purpose
-------
(From the original README by Sébastien)

This application provides as many baskets as you wish, and you can drag and drop
various objects (text, URLs, images, sounds...)  into its.

Objects can be edited, copied, dragged... So, you can arrange them as you want !

It's a DropDrawers clone (http://www.sigsoftware.com/dropdrawers/index.html) for
KDE 3 (soon to be 4, hopefully).

Project Status
--------------
Currently, porting to KDE 4 is under way.  The KDE 3 version remains unmaintained.

Developers
-----------
As you may or may not have noticed, there isn't a user's section currently.
If you are reading this, chances are, you are a developer (if I'm wrong email me
;), so most of the developers documentation will go here until we can finalize a
user README after we're done porting.

Git
~~~
The porting effort will use Git.  The main reason for this is that right now, we
don't have much contact with the main developers, and a bunch of us do not have
SVN access.  There are other people who wish to contribute and are in a similar
situation, and so the easiest way to coordinate these efforts is through a
distributed source management system -- Git fills this void nicely, is under
very active development, and is quickly gaining popularity.

Using Git
~~~~~~~~~
I'm sure not everyone is familiar with Git.  There's plenty of resources about
what commands do what, so here's a just a quick rundown of some Git conventions.

Don't work on the master branch
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Your published `master` branch is the branch other people will be pulling, so
only merge what you are confident with sharing.  I generally keep a branch
called `work` in my repository for the main work, and `next` as a branch that's
waiting to be merged into master.

Basically, keep your `master` clean.  Don't try to rewrite history on master
(with git rebase) after it has been published -- if anyone else has pulled from
you, they are going to be in heaps of trouble the next time they try to.
Instead, just add things like revert commits (via `git revert`), or other
amending commits on top of your current `master`.

Commit messages
^^^^^^^^^^^^^^^
Feel free to write whatever you want in your own branches, but try to have the
messages that you merge into master follow a specific convention

It is important to follow this convention because many git tools (such as Github
and the gitweb web interfaces, as well as `git format-patch`, and even `git
log`!)  rely on this convention when parsing commit messages.

In short, the first line of your commit message should be a _very_ short (no
longer than 80 characters) summary of your commit.  When creating a patch, it
becomes the subject of the email (in Git, patches are emails).

Separate it then with two lines (this part's important!), and a detailed
description of the commit.  Do not be afraid to write really detailed commit
message (in fact, I'd encourage it! People who want the short version can just
read the first line).

For example (this is commit `688ab72c`):
----
    Removed all of the whitespace changes from kde4port-svn. (<-- subject line)

    The process to get rid of the whitespace changes was this: (full descrip.)
    1. First ask git to create a diff without whitespace changes
    2. Run a script to go in and reject hunks with non-trivial whitespace
       changes (such as multiline whitespace changes and adding whitespace
       where there were none before).
    3. Apply the new patch.
    4. Apply the changes between this new HEAD and kde4port-svn onto kde4port-svn

    ...
----

Also, good commit messages means we don't have to write changelogs (try it! type
`git shortlog`)

////
TODO: More to come..
////

Contributing
~~~~~~~~~~~~
The first step to contribute is to clone a source repository:

  git clone git://github.com/kelvie/basket.git

Now you can hack away at it to your hearts content.  When you have a series of
patches ready to be merged with my changes, first make sure your master is up to
date with mine:

  git pull git://github.com/kelvie/basket.git master

(or if you cloned from my repository, just `git pull` will suffice), and ask me
to pull your changes, if you have published them, or use `git format-patch` to
create a series of patches and post them to the mailing list.

If you want to continue contributing, feel free to fork the main repository on
Github (http://github.com/kelvie/basket/tree/) or repo.or.cz and send pull
requests there.

Contact
-------
If you have any questions, or would like to contribute (always welcome!) please
send me an email at kelvie@ieee.org, or through the development mailing list at
basket-devel@lists.sourceforge.net.

I'm usually idle on #basket-devel @ freenode on IRC, but you may catch me on
there.  Due to timezone differences, however, it's generally better to email me.

The BasKet web site (again, unmaintained right now) is at:
http://basket.kde.org/


Building/Installation
----------------------
It will be a while before the master branch is able to be built without errors,
but to try and do so, follow these steps (this assumes you have the relevant
kde4 development libraries and CMake):

----
mkdir build
cd build
cmake ..
make
----