History log of /haiku/src/apps/aboutsystem/AboutSystem.cpp
Revision Date Author Comments
# e523bfeb 04-Feb-2024 Emir SARI <bitigchi@me.com>

NumberFormat: add floating-point precision support

- Simplify code in AboutSystem
- Make error string translatable in Locale preflet

Change-Id: I3b967ee04d764ec1bcf0fa40e40dae8da4a35c20
Reviewed-on: https://review.haiku-os.org/c/haiku/+/7373
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 0aede635 20-Feb-2024 Humdinger <humdinger@mailbox.org>

AboutSystem, Installer: show light/dark logos

* Use B_DOCUMENT_TEXT_COLOR and B_DOCUMENT_BACKGROUND_COLOR instead
of black on white in text views.

* Depending on HAIKU_DISTRO_COMPATIBILITY_OFFICIAL build flag, either
show the official Haiku logo or the Walter logo.

* If the official Haiku logo is used, show a version with black letters
if B_DOCUMENT_BACKGROUND_COLOR is light, and white letters if it's not.

* Remove the "installer" versions of the black-on-white Haiku logo.
Instead introduce "black|white-on-transparent" logos with a
transparent background.

* Fixed the leave shadows in logo Wonderbrush files. Especially the
yellow leave's shadow appeared too large and blurry.

Change-Id: I6d3ac384d2c96d91d35e6d6e85025c9e2064d59e
Reviewed-on: https://review.haiku-os.org/c/haiku/+/7419
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 9931e8ee 09-Feb-2024 nep <nep-git@packageloss.eu>

rgb_color: Add new APIs: Contrast(), IsLight(), IsDark()

- Remove perceptual_brightness
- Change implementation of rgb_color::Brightness() to the previous BPrivate::perceptual_brightness()
- Introduce convenience methods Contrast(rgb_color), IsLight() and IsDark()

Change-Id: Id677d4a32ce43d73bffecf9baf8cffaafb01a16d
Reviewed-on: https://review.haiku-os.org/c/haiku/+/7399
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 6a13b1d8 04-Feb-2024 Emir SARI <emir_sari@icloud.com>

AboutSystem: add donation link

Change-Id: Iae14e28b9ba5436c8eab106d3413ad1dfae8ecbb
Reviewed-on: https://review.haiku-os.org/c/haiku/+/7372
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: Emir SARI <bitigchi@me.com>
Haiku-Format: Haiku-format Bot <no-reply+haikuformatbot@haiku-os.org>
Reviewed-by: humdinger humdinger <humdinger@mailbox.org>


# 9d660c77 11-Dec-2023 John Scipione <jscipione@gmail.com>

AboutSystem: "Show replicants" hide border fixup

Change-Id: I5926bbacae54238f2e399e28ae0ccbc7841e7c1a


# fc786a2f 08-Dec-2023 John Scipione <jscipione@gmail.com>

AboutSystem: Hide border when "Show replicants" is turned off

Create SysInfoDragger class and override its MessageReceived() method
to redraw the target view when draggers are shown or hidden.

Check that fDragger->AreDraggersDrawn() is turned on before drawing
the border in the SysInfoView::Draw() method.

Change-Id: I8de1acafe52319ae0f4ed1d91eec2e9c0ad2cb9f
Reviewed-on: https://review.haiku-os.org/c/haiku/+/7191
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 1395769e 06-Dec-2023 John Scipione <jscipione@gmail.com>

AboutSystem: Fix up layout issues with old replicants

... you have lying around on your Desktop that did not get updated
correctly based on changes that have been made since the replicant
feature was introduced.

Do not archive class members in Archive(). Remove SysInfoView
archive constructor. Recreate replicants fresh. No saving to lists
and restoring.

Maintain bottom right corner whenever replicant is resized by
creating _ResizeBy() and _ResizeTo() methods. Since we're starting
over with replicants, this only happens when the uptime wraps.

Fix box height issues, was a bit too tall.

Change-Id: I464fc09a6f86bc88dc09007c9356d2faac340e77
Reviewed-on: https://review.haiku-os.org/c/haiku/+/7189
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: John Scipione <jscipione@gmail.com>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 2e1f37d6 03-Dec-2023 Oscar Lesta <oscar.lesta@gmail.com>

AboutSystem: update RAM size on replicant instantiation.

Fixes #18696

Change-Id: If56670a756b4512732edd6846c8055a89d8e3a4f
Reviewed-on: https://review.haiku-os.org/c/haiku/+/7174
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 0d85e8fb 25-Nov-2023 John Scipione <jscipione@gmail.com>

AboutSystem: Consolidate info, remove inaccessible memory

Change-Id: I0a5c0cb61f8c2b01caf12a907ad1c7938c519cf9
Reviewed-on: https://review.haiku-os.org/c/haiku/+/7152
Reviewed-by: nephele nephele <nep-git@packageloss.eu>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 8561b2c8 28-Apr-2023 Oscar Lesta <oscar.lesta@gmail.com>

AboutSystem: update CPU info on replicant constructor.

This is similar to changes made in hrev56526 and hrev56815,
but for CPU related info this time.

Extracted some new _Get*() methods for the code that will get
called from both the normal and the replicant constructors
of SysInfoView.

Re-arranged the code a bit so the BStringViews get created /
updated in the order they appear on the GUI.

Change-Id: I2a371ec623e0b4d7497056fae6d5346b98d07ee2
Reviewed-on: https://review.haiku-os.org/c/haiku/+/6396
Reviewed-by: John Scipione <jscipione@gmail.com>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 4a0a64d4 06-Mar-2023 Emir SARI <bitigchi@me.com>

AboutSystem: Use BNumberFormat for percentage value

This provides automatic percentage formatting according
to the locale setting

Change-Id: I571d2bd9ffc53425c9633de3504d04f41acf0017
Reviewed-on: https://review.haiku-os.org/c/haiku/+/6157
Tested-by: Automation <automation@haiku-os.org>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# fa39528c 06-Mar-2023 Oscar Lesta <oscar.lesta@gmail.com>

AboutSystem: update kernel date from the replicant constructor.

Extracted a _GetKernelDateTime() function, and used that to get the value
for the kernel date/time text, and to update it at replicant's instantiation
time.

Fixes #18149.

Also: changed the _Get*() methods to return BString instead of const char*.

Change-Id: I908fe25f39355b3d46f504bd0d8a5fdef1af67f1
Reviewed-on: https://review.haiku-os.org/c/haiku/+/6158
Tested-by: Automation <automation@haiku-os.org>
Reviewed-by: Adrien Destugues <pulkomandy@pulkomandy.tk>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 48776daf 16-Oct-2022 PulkoMandy <pulkomandy@pulkomandy.tk>

AboutSystem: restore previous size constraints

The window was changed to be larger and completely fill he screen at
640x480, this does not look right. Restore the previous 500x300 size
constraint.

Fixes #17952.

Change-Id: I7d60253b7304ede788e064adf2bad20168393a33


# b2a47f1f 07-Oct-2022 Oscar Lesta <oscar.lesta@gmail.com>

AboutSystem: update hrev from the replicant constructor.

Extracted a _GetOSVersion() function, and used that to get the value
for version text, and to update it at replicant instantiation time.

Should fix #17957.

Change-Id: Ifc964c3646743a503fd756c902d102977e35e73d
Reviewed-on: https://review.haiku-os.org/c/haiku/+/5724
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: John Scipione <jscipione@gmail.com>
Reviewed-by: Jérôme Duval <jerome.duval@gmail.com>


# 7c7357f0 07-Oct-2022 Oscar Lesta <oscar.lesta@gmail.com>

AboutSystem: make static constants out of some member variables.

This avoids using them while uninitialized (as could happen when
using the archive constructor.

Fixes #17955.

Change-Id: If75354216b9731b3273d79aec787cd0140a6175e
Reviewed-on: https://review.haiku-os.org/c/haiku/+/5723
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: Jérôme Duval <jerome.duval@gmail.com>


# b4d0fd91 30-Jul-2022 John Scipione <jscipione@gmail.com>

AboutSystem: Update replicant colors on workspace activated

Change-Id: I23bc998df8c9cc8894accc475cab8eec69db7c21
Reviewed-on: https://review.haiku-os.org/c/haiku/+/5514
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: Fredrik Holmqvist <fredrik.holmqvist@gmail.com>


# 074aebe3 30-Aug-2020 John Scipione <jscipione@gmail.com>

AboutSystem: Add system information replicant

Fixes #16130 (incidentally)

Change-Id: I764d143a0e6b9ebf8679149edd2aca463cb8ebfb
Reviewed-on: https://review.haiku-os.org/c/haiku/+/5511
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: John Scipione <jscipione@gmail.com>
Reviewed-by: Jérôme Duval <jerome.duval@gmail.com>


# 81e5700a 29-Jul-2022 John Scipione <jscipione@gmail.com>

AboutSystem: Style updates

No functional change intended.

Change-Id: I0e5f0160f9caacd0e27161ac2c1450ea4d2f16e1
Reviewed-on: https://review.haiku-os.org/c/haiku/+/5510
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: nephele <nep@packageloss.eu>
Reviewed-by: Adrien Destugues <pulkomandy@pulkomandy.tk>


# 730f5df3 23-Jul-2022 Pascal Abresch <nep@packageloss.eu>

aboutSystem: remove spleen font credits

hrev55108 imported the spleen font into the tree and added credits.

hrev56196 removed the spleen font from the tree again, but left the credits.

this commit removes the credits.

Change-Id: I44b7ca1f6100eb86559b48c96db2b3590ee1b9b9
Reviewed-on: https://review.haiku-os.org/c/haiku/+/5492
Reviewed-by: Adrien Destugues <pulkomandy@pulkomandy.tk>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>


# fce7f3a7 09-Dec-2020 X512 <danger_mail@list.ru>

integrate AutoDeleter's into pointers

Change-Id: I6c3925a7aec4d0647c76c2a03aad7b08985d7166
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3490
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 1d5de1d8 26-Oct-2021 Augustin Cavalier <waddlesplash@gmail.com>

Remove firmware licenses that now are in their own packages.


# 147b47e0 16-Jul-2020 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>

Translators: Add an AVIF translator

This translator only supports still images for now, and supports both
decoding and encoding.

Encoding support has been tested only with aom, rav1e doesn’t build on
Haiku yet, see https://github.com/haikuports/haikuports/pull/5534 for
one of the missing dependencies.

Change-Id: I716f4b862ed316b89b227bfed38072d72074201f
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3040
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
Reviewed-by: Jérôme Duval <jerome.duval@gmail.com>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>


# 8c232f16 10-Jun-2021 Niels Sascha Reedijk <niels.reedijk@gmail.com>

AboutSystem: remove duplicate 'Copyright'

Reported by translator loic. Thanks!

Change-Id: I2491a02388321338d8ffe3031fa4670877a77a66


# 29a109bd 20-Mar-2021 Pascal Abresch <nep@packageloss.eu>

Framebuffer console: Add spleen font (12x24)

Use this larger font when the screen resolution is large (more than
1920x1080 in both directions). The usual font is too small and not easy
to read on such high resolution displays.

Change-Id: I14a40ecf6917d0c6c64ab5a8abe1affcb3839a74
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3818
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>


# cdccd323 09-Dec-2020 X512 <danger_mail@list.ru>

use common AutoDeleter types

Change-Id: I115e14b76f3ff049c5f7d9471efd3619a0038fcf
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3483
Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>
Reviewed-by: Axel Dörfler <axeld@pinc-software.de>


# 36aafa56 04-Dec-2020 X512 <danger_mail@list.ru>

fix build after CObjectDeleter interface change

Change-Id: I76e217abcd13c22c4d68170e07333cdde4d7a891
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3461
Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>


# b8bd451e 18-Sep-2020 Pascal Abresch <nep@packageloss.eu>

AboutSystem: Respect system colors

Change-Id: I2fac8c2a7ab9033cc730db373710a856a8827eb8
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3262
Reviewed-by: John Scipione <jscipione@gmail.com>


# 9094f0c2 16-May-2020 Niels Sascha Reedijk <niels.reedijk@gmail.com>

AboutSystem: localize copyright string

Change-Id: Ia43004bbe56bebdb32bcfd3394135ffb9b9914af
Reviewed-on: https://review.haiku-os.org/c/haiku/+/2711
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 566914fa 09-May-2020 Adrien Destugues <pulkomandy@pulkomandy.tk>

AboutSystem: some updates to the contributors list

- Move Kyle Ambroff-Kao to the maintainers
- Add Diver, Vidrep and Luroh as bug triaging and testing team (your
work deserves more credit, thanks a lot!)
- Move Koki back into "past website/marketing team"

Change-Id: I3f198277804aaa2dedf0551ced65e5f94393f3ea
Reviewed-on: https://review.haiku-os.org/c/haiku/+/2624
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 388c78ed 11-Jan-2020 Adrien Destugues <pulkomandy@pulkomandy.tk>

AboutSystem: make hyperlinks blue

and remove silly "click on license name to read it" hint, now that they
are more obviously hyperlinks


# 639bb827 05-Aug-2019 Adrien Destugues <pulkomandy@pulkomandy.tk>

AboutSystem: remove NetBSD credits

We don't ship ftp anymore, and our tput comes from ncurses now.

Change-Id: I80e99b72f5bb16147a234d6d72a277a5035b6e00
Reviewed-on: https://review.haiku-os.org/c/1680
Reviewed-by: Rene Gollent <rene@gollent.com>


# 5ffbe7d7 30-Mar-2019 Augustin Cavalier <waddlesplash@gmail.com>

Change all references to "__INTEL__" to "__i386__".

They are functionally identical, but the former is a BeOS/Haiku-specfic
macro that we include in the compiler specs, and the latter is defined
by GCC.


# db578bfa 20-Jan-2019 Rob Gill <rrobgill@protonmail.com>

apps/AboutSystem NetBSD licences and xfree86 url

* Adds licence information for the NetBSD contributions
* ftp - 4 clause BSD (retained in ftp.c)
* tput - Berkeley
(http://cvsweb.netbsd.org/bsdweb.cgi/src/usr.bin/tput/tput.c?rev=1.26)

* Berkeley licence text added to licences

* xfree86.org url added

These were previously marked TODOs

Change-Id: I01bf0bb6055b3b45ca80c6cddabdb093cb043408
Reviewed-on: https://review.haiku-os.org/c/887
Reviewed-by: Stephan Aßmus <superstippi@gmx.de>


# d9863ca8 13-May-2018 Murai Takashi <tmurai01@gmail.com>

Replace strncpy with strlcpy

Replace strncpy with strlcpy, since destination size equals
maximum number of characters to copy.
Pointed by gcc8 [-Werror=stringop-truncation]

Change-Id: I528a35bd071b1d13f16dcec2e8c2007b5bb072b2
Reviewed-on: https://review.haiku-os.org/473
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 7457ccb4 13-Aug-2018 Augustin Cavalier <waddlesplash@gmail.com>

BMessageFormat: Rename to BStringFormat.

The ICU class is named MessageFormat, but on Haiku, it sounds too much
like something related to BMessage (which it isn't in the slightest)
and not part of the Locale system. It works almost entirely with BStrings,
so naming it BStringFormat makes much more sense.

OK'ed by PulkoMandy and Humdinger.


# e4bc0a96 30-Jun-2018 Augustin Cavalier <waddlesplash@gmail.com>

AboutSystem: ACPICA is "Component Architecture" not "Common Architecture".

That's what I get for committing with my brain off...


# 69d3ef82 26-Jun-2018 Augustin Cavalier <waddlesplash@gmail.com>

AboutSystem: kPublicDomain is not presently used, #if 0 it out.

Fixes the build (sure, GCC, a static unused global constant is worth
throwing a warning over.)


# 5807f298 26-Jun-2018 Augustin Cavalier <waddlesplash@gmail.com>

AboutSystem: Copyright cleanups.

* netcat is now provided via a package and is not required by the
'haiku' package
* Display the full name of ACPICA and update copyright year
* Update copyrights for libpng.


# 5ec8aa42 26-Jun-2018 Augustin Cavalier <waddlesplash@gmail.com>

AboutSystem: Combine Intel Wi-Fi firmware credits.

The first two have the same license and are also now covered by
intellinuxwireless.org. The second two also share a license among
themselves, and also with following (not-yet-imported) firmware,
e.g. from idualwifi3160.


# a7999984 26-Jun-2018 Augustin Cavalier <waddlesplash@gmail.com>

Remove last references to tcpdump.

It hasn't been in the Haiku repository or provided by the Haiku package
for over a year.


# 57313774 28-Feb-2018 Kacper Kasper <kacperkasper@gmail.com>

AboutSystem: don't add licenses twice.


# b875d6d4 17-Dec-2017 Kacper Kasper <kacperkasper@gmail.com>

Outsource OpenEXR.

* Style fixes in EXRTranslator.


# c7258f02 01-Jul-2017 Augustin Cavalier <waddlesplash@gmail.com>

PDF Writer & PDFlib: Remove from tree.

Now supplied via HaikuPorts packages.

I *think* this was the last component in the tree with a
non-OSI license.


# ec407447 30-Apr-2017 Adrien Destugues <pulkomandy@pulkomandy.tk>

Build fix.

SetCopyright != SetCopyrights.


# a09b074d 03-Jan-2015 luroh <lurohh@gmail.com>

Cleanup app_server built-in fonts

We bundle bitstream charter as a default font to use when nothing else
is available. We also used to bundle a Courier font, but it does not
work properly.

- Fix the license for Bitstream Charter, to include just the license and
no extra text.
- Add said license to AboutSystem
- Remove the Courier font from the package and from the source tree.

Fixes #11696.


# ad05d1f0 18-Mar-2017 Augustin Cavalier <waddlesplash@gmail.com>

libs/agg: Remove GPC.

It was licensed with a "no commercial usage allowed" license, which if
we were using it would be a gray area at best. We weren't using it at all,
and AGG seems to have disabled building it by default, so just remove it
from the tree entirely.

Briefly discussed on IRC.


# 34fbc56b 04-Mar-2017 Adrien Destugues <pulkomandy@pulkomandy.tk>

Complete the transition to Noto as the default font.

- Both Noto and Noto Sans CJK JP are now used as font fallbacks,
allowing to cover a rather large range of characters. This also makes
it possible to mix the two fonts easily.
- Remove VL-Gothic from packages and from AboutSystem
- Add Noto fonts to the dependencies of the Haiku package.

This provides a similar look for all languages as discussed on the
mailing list.


# f31b1a2f 17-Jan-2017 Andrew Aldridge <i80and@foxquill.com>

Implement scrypt-based password hashing

Signed-off-by: Axel Dörfler <axeld@pinc-software.de>


# bf628b47 29-Jul-2016 Augustin Cavalier <waddlesplash@gmail.com>

LibHTTPd: Remove license, it's just the BSD 2-Clause.

Also fix reference to now-removed MkDepend license and replace it with MIT.


# 241ac545 29-Jul-2016 Augustin Cavalier <waddlesplash@gmail.com>

Bullet: Remove license file and AboutSystem credit.

We aren't really using Bullet itself; there are only two classes
(Quaternion and Vector3) which are from Bullet, and even they were
heavily modified. Furthermore, the Bullet license is really just the Zlib
license, which the Bullet source repository confirms (and you can see
by looking at its text.) It does not require attribution in documentation,
but only in the source code, and we aren't even using a substantial part
of it.


# 4f117b77 29-Jul-2016 Augustin Cavalier <waddlesplash@gmail.com>

Haiku's GLUT has been licensed under the MIT license since 2012...

... as we obtained permission from Mark Kilgard to do so (see commit
c3eddfc0682b99f28ddbe33a14dadc40dc5b5f71.) So update AboutSystem and
the licenses directory to reflect that.


# fa19dd44 10-Dec-2015 looncraz <looncraz@looncraz.net>

apps: Convert to using Set*UIColor.

Signed-off-by: Augustin Cavalier <waddlesplash@gmail.com>
Patches 0045-0075, 0077-0087 from looncraz, unmodified.


# 268bbb1f 11-Apr-2015 Michael Lotz <mmlr@mlotz.ch>

AboutSystem: Fix leak of package credits.


# a6693759 01-Mar-2015 Augustin Cavalier <waddlesplash@gmail.com>

AboutSystem credits: split "website & marketing" into a "current" and "past".

No sense having a "website team" with half its members no longer active...


# 56d52e34 27-Feb-2015 Augustin Cavalier <waddlesplash@gmail.com>

AboutSystem software credits: updates & cleanup.

All the packages I delete from here are not included in the tree
and not included in the "default packages" list.

* Use HTTPS rather than HTTP for sites that support it
* GDB was removed in hrev48791
* FFmpeg is spelled as "FFmpeg", not "FFMpeg"
* atftp was removed from the tree in the previous commit
* acipca was updated to a version from 2014 recently
* CannaIM was removed in hrev48034 & hrev48035
* libxml2 & friends were removed in hrev48798
* Cleaned up ifdef __INTEL__ lines -- no need to have more than one


# 6e197770 08-Jan-2015 Adrien Destugues <pulkomandy@gmail.com>

AboutSystem: Activate() window on B_SILENT_RELAUNCH

Fixes #9094.


# 1d5b36ce 03-Jan-2015 luroh <lurohh@gmail.com>

Clean up FreeType outsourcing leftovers

- Remove obsolete FreeType docs
- Remove obsolete FreeType license
- Update FreeType license and copyrights in AboutSystem

Signed-off-by: Adrien Destugues <pulkomandy@gmail.com>

Fixes #11697


# 73b2a864 03-Jan-2015 luroh <lurohh@gmail.com>

Fix atftp copyright typo in AboutSystem

Fixes #11699

Signed-off-by: Adrien Destugues <pulkomandy@gmail.com>


# 83cd4530 23-Dec-2014 Adrien Destugues <pulkomandy@gmail.com>

Remove unrar and lp_solve from AboutSystem.

These were outsourced and are not Haiku dependencies anymore.
This list may need some more cleanup: I'm not sure why we credit Bullet
Physics, for example.


# 10838953 18-Dec-2014 Adrien Destugues <pulkomandy@gmail.com>

AboutSuste: Remove cal from freeBSD-provided list.

We now provide GNU cal in HaikuDepot instead.


# c6e1228c 07-Nov-2014 Adrien Destugues <pulkomandy@gmail.com>

Fix unresolved catalog access.

The B_TRANSLATE_MARK macro was used before a translation context was
set.


# 961fdd8c 08-Oct-2014 Adrien Destugues <pulkomandy@gmail.com>

BMessageFormat: parse the pattern at construction

* Instead of parsing the pattern everytime Format() is called, parse it
only once when the object is created.
* Adjust all callers to make use of the feature and reuse the instance
as much as possible. This also allows calling B_TRANSLATE only once
instead of everytime the formatting needs to be done. We use either a
static instance (when the message pattern is constant) or a field (when
it is not known to be constant).
* Since the BMessageFormat instances are now reused, add locking to
avoid race conditions (ICU itself is thread safe, but the format pattern
is recreated when the locale is changed)


# 7fb90215 07-Oct-2014 Adrien Destugues <pulkomandy@gmail.com>

Fix singular for Processor count.


# 53382a8a 07-Oct-2014 Adrien Destugues <pulkomandy@gmail.com>

Start making use of BMessageFormat.


# e3857211 02-Oct-2014 Adrien Destugues <pulkomandy@gmail.com>

Move DateTimeFormat and NumberFormat out of BLocale

* ... and adjust all callers
* Remove NumberFormatImpl: we rely on ICU to provide this and it can be
fully wrapped into the C++ file. The class was a stub anyway.
* "Monetary" format is included in NumberFormat for now. There may be a
more generic solution to handle monetary and BTimeUnitFormat (and other
arbitrary units)


# 03b2550e 01-Oct-2014 Adrien Destugues <pulkomandy@gmail.com>

Move time formatting to BTimeformat.

* Harmonize API for all B*Format to take an output BString by reference
as the first parameter,
* Move the FormatTime methods from BLocale to BTimeFormat
* Adjust all callers for BTimeFormat, BTimeUnitFormat and
BDurationFormat.


# 5ccde6d3 08-Jul-2014 Augustin Cavalier <waddlesplash@gmail.com>

AboutSystem: move authors and translators info to Credits.h

Signed-off-by: Axel Dörfler <axeld@pinc-software.de>


# 0427af0c 03-May-2014 Jessica Hamilton <jessica.l.hamilton@gmail.com>

AboutSystem: fix the build when firmware not included.


# c545f253 03-May-2014 Jessica Hamilton <jessica.l.hamilton@gmail.com>

AboutSystem: Only translate hyperlink text. Fixes #7491.


# 94febdfe 19-Apr-2014 Jessica Hamilton <jessica.l.hamilton@gmail.com>

AboutSystem: use BPathFinder correctly


# 07fae11e 19-Apr-2014 Jessica Hamilton <jessica.l.hamilton@gmail.com>

AboutSystem: use BPathFinder instead of find_directory.


# 8173945d 19-Apr-2014 Jessica Hamilton <jessica.l.hamilton@gmail.com>

AboutSystem: license hyperlinks were missing due to incorrect count


# 57fc26c1 19-Apr-2014 Jessica Hamilton <jessica.l.hamilton@gmail.com>

Moved myself to current maintainers list.


# 97ab2b9b 13-Feb-2014 Jonathan Schleifer <js@webkeks.org>

AboutSystem: Add myself to current maintainers


# 490f2380 09-Feb-2014 Alexander von Gluck IV <kallisti5@unixzen.com>

AboutSystem: Remove Jonas from current maintainers

* As per his own request on haiku-commits.
* Sorry to see you go!


# 5115f7c6 28-Dec-2013 François Revol <revol@free.fr>

Revert "Mention getconf in FreeBSD sections in the credits."

This reverts commit d86dbc8a89dca0156b483e6643f3652055e6f01e.


# d86dbc8a 27-Dec-2013 François Revol <revol@free.fr>

Mention getconf in FreeBSD sections in the credits.


# 1bc7045f 15-Dec-2013 Pawel Dziepak <pdziepak@quarnos.org>

kernel, libroot: Introduce new API for obtaining system info


# 38fa81bf 03-Oct-2013 Ingo Weinhold <ingo_weinhold@gmx.de>

Remove B_COMMON*_DIRECTORY and kCommon*Directory constants

* This does intentionally break source compatibility, so that a review
of concerned code is forced.
* Binary compatibility should be maintained in most cases. The values
of the constants for the writable directories are now used for the
writable system directories. The values for the non-writable
directories are mapped to "/boot/system/data/empty/...", an empty or
non-existent directory, so that they will simply be skipped in search
paths. Only code that explicitly expects to find something in a
B_COMMON_* directory, will fail.


# 1f67610d 02-Aug-2013 Rene Gollent <anevilyak@gmail.com>

Move Alex Smith to active maintainers list.


# 055118de 01-Aug-2013 Rene Gollent <anevilyak@gmail.com>

AboutSystem: Move Pawel Dziepak to active maintainers list.


# e5de7e21 23-Jan-2013 John Scipione <jscipione@gmail.com>

Added Landon Fuller to the contributors list.

He has made several contributions including hrev45148 and hrev44909.


# 2ede1751 02-Dec-2012 Siarzhuk Zharski <zharik@gmx.li>

Small refactoring of Expander and AboutSystem GCI patches.

* Fix excessive snprintf in SystemAbout kernel build date/time;
* Create destination folder message adjusted with HIG requirements;

Thanks for pointing out, Landon Fuller and Pulkomandy.


# 2b754fc1 02-Dec-2012 Przemysław Buczkowski <przemub@yahoo.pl>

Localize Kernel build date/time. Fixes #9230.

This task was completed during GCI 2012

Signed-off-by: Siarzhuk Zharski <zharik@gmx.li>


# 9815f07d 12-Oct-2012 Matt Madia <mattmadia@gmail.com>

Added jprostko as a maintainer.


# df840270 03-Oct-2012 Ryan Leavengood <leavengood@gmail.com>

Add Prasad Joshi to the contributors list.


# 9af3b835 02-Oct-2012 Humdinger <humdingerb@gmail.com>

Added Hungarian translators Róbert Dancsó and Zsolt Bicsk.
Thanks guys!
+alpha4


# e8c6eee0 29-Sep-2012 Humdinger <humdingerb@gmail.com>

Added Brazilian translators. Thanks guys!
(+alpha4)


# f6d33da6 05-Sep-2012 Humdinger <humdingerb@gmail.com>

Small corrections to AboutSystem.

Thanks Rene.


# ae7bcbaa 05-Sep-2012 Humdinger <humdingerb@gmail.com>

Updated the list of contributers.

Added people to the list contributers.
Moved people to the list of past maintainers.
Added GCI to our Google thanks.


# 5084d0d4 10-Aug-2012 Alex Smith <alex@alex-smith.me.uk>

Added more things to x86_64 image.

Some preference apps, mount_server and AboutSystem. Removed the check
for x86_64 in the boot script, the normal path through the script will
work now. Also removed a temporary hack to workaround AboutSystem not
being there in build_haiku_image.


# db744fca 30-Jun-2012 Michael Lotz <mmlr@mlotz.ch>

Add libqrencode credits to AboutSystem.


# 546208a5 16-Apr-2012 Oliver Tappe <zooey@hirschkaefer.de>

More catalog-related cleanup.

* rename B_TRANSLATE_CONTEXT to B_TRANSLATION_CONTEXT and
B_TRANSLATE_WITH_CONTEXT to B_TRANSLATE_CONTEXT, squashing a TODO
* adjust all uses of both macros in Haiku's source tree
* use correct header guard for collecting/Catalog.h

The renamed macros require adjustments to all external applications
using catalogs.


# 541ff51a 15-Apr-2012 Oliver Tappe <zooey@hirschkaefer.de>

Cleanup BCatalogAddOn.

* rename BCatalogAddOn to BCatalogData, since it doesn't represent an
add-on, but rather the catalog data provided by an add-on
* move BCatalogData out of Catalog.{h,cpp} into its own header and
implementation file
* drop BCatalogData::MarkForTranslation() methods, they're not needed
* drop BCatalog::GetNoAutoCollectString() methods, they're not being
used anywhere
* cleanup the B_TRANSLATE_... macros somewhat
* add versions of the B_TRANSLATE_MARK_... macros that are meant to be
used in void context (when the string isn't being used by the program,
just meant to be picked up by collectcatkeys).
* adjust several apps to use B_TRANSLATE_MARK_..._VOID where needed
* adjust users of BCatalogAddOn accordingly


# c2060a1f 28-Feb-2012 Humdinger <humdingerb@gmail.com>

Added more translators, mostly GCI students.


# bfb639d9 01-Feb-2012 Humdinger <humdingerb@gmail.com>

Added GCI students that worked on Japanese translations.


# 9d214eb1 30-Jan-2012 Matt Madia <mattmadia@gmail.com>

Fixed a typo in the copyright. Spotted by Rene. Thanks!


# db65804d 30-Jan-2012 Matt Madia <mattmadia@gmail.com>

Updated VLGothic fonts to version 20120130. Fixes #7598.


# 414dacd2 15-Jan-2012 Siarzhuk Zharski <zharik@gmx.li>

Some GCI2011 Students added into the Credits

* Aleksas Pantechovskis added into contributors list for his work on
setmime and writembr tools, and many patches provided for Mail
application during completing about 12 GCI tasks;
* Peter Poláčik added into contributors list for his work on adding
localization support into Jamfile engine and documenting
using of makefile/jamfile engines;
* Mariya Pilipchuk added into translators list for her work on Ukrainian
translation;

Thank you for the contribution!


# dc6929d8 14-Jan-2012 Humdinger <humdingerb@gmail.com>

Sorted language blocks, re-formatted names, added translators.

* Sorted translation language blocks alphabetically

* Re-formatted peoples names as discussed in thread
http://www.freelists.org/post/haiku-development/Nonlatin-names-in-AboutSystem
-> "localized name (transliterated name) - optional nickname"

* Added Giannis Konstantinidis, Vaggelis Mamalakis and Alex-P. Natsios
as Greek translators


# 286ffc48 07-Jan-2012 Humdinger <humdingerb@gmail.com>

Added Hungarian translators Kálmán Kéménczy and Bence Nagy


# feaa1474 29-Dec-2011 Humdinger <humdingerb@gmail.com>

Added GCI student Harsh Vardhan as French translator.


# e0821f1d 22-Dec-2011 Alex Wilson <yourpalal2@gmail.com>

Add Hannah Boneß to the AboutSystem contributors list.


# 4ff849cd 16-Dec-2011 Humdinger <humdingerb@gmail.com>

Added Dragos Serban as Romanian translator.


# 0a1ac2bf 07-Dec-2011 Humdinger <humdingerb@gmail.com>

Added Nikola Miljković as Serbian translator.


# f9903999 03-Dec-2011 Humdinger <humdingerb@gmail.com>

Added Rimas and Simonas as Lithuanian translators. Thanks guys.


# 087f8961 29-Nov-2011 Humdinger <humdingerb@gmail.com>

Added Croatian translators Zlatko Sehanović and Ivica Koli


# 1f92d747 25-Nov-2011 Humdinger <humdingerb@gmail.com>

Removed duplicate license for GLU. Thanks Rimas.


# d64437e6 30-Oct-2011 Matt Madia <mattmadia@gmail.com>

Removed some TODO for licenses and url's.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@43008 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7bc85684 30-Oct-2011 Fredrik Holmqvist <fredrik.holmqvist@gmail.com>

John Scipione has moved from a contributor to a maintainer.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42992 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a481c815 29-Oct-2011 Rene Gollent <anevilyak@gmail.com>

Apply patch by Taos which adds hyperlink for LGPL license (#7907). Thanks!



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42956 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b6ac45af 09-Aug-2011 Matt Madia <mattmadia@gmail.com>

Updated (TM) to (R). No functional change.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42614 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 01123cf9 01-Aug-2011 Joachim Seemer <humdingerb@googlemail.com>

Switched to a B_TRANSLATE_COMMENT because it's nt obvious that %MIT license% isn't a variable and has to be translated.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42531 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f148b5ee 30-Jul-2011 Joachim Seemer <humdingerb@googlemail.com>

Applied taos patch to fix the MIT license link. We'll see if it finally nailed the bugger when the translated catkeys arrive. Preliminarily fixes #7697. Thanks a lot.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42514 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 42a6ef88 29-Jul-2011 Jérôme Duval <korli@users.berlios.de>

Add Jian Jiang to the contributors list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42512 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3dfd9cb9 16-Jun-2011 Oliver Tappe <zooey@hirschkaefer.de>

Flat commit of all changes from package-management branch in svn


# 95009aee 13-Jul-2011 Axel Dörfler <axeld@pinc-software.de>

* Imported Andy Ritger's GTF code in compute_display_timing.cpp, and mangled it
into a usable function - this has some coding style issues I did not care to
fix.
* _AddBaseMode() now computes the mode in case it is not present in the list
yet.
* This should help with bug #7787.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42420 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a4dcbd00 02-Jul-2011 Rene Gollent <anevilyak@gmail.com>

Add Brian Luft to the contributors list.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42364 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4bcb62ee 11-Jun-2011 anevilyak <anevilyak@a95241bf-73f2-0310-859d-f6bbb57e9c96>

Applied patch by Jean-Loïc Charroud that reworks the anyboot MBR to fix boot
problems on various systems. Resolves #3441. Thanks!

+alpha3



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42104 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 22a7fe96 15-May-2011 Oliver Tappe <zooey@hirschkaefer.de>

Cleanup system-revision stuff.
* move system_revision.h to headers/private/libroot
* unify libroot's get_system_revision() (the one I introduced recently) with kernel's
get_haiku_revision(), the function is now called get_haiku_revision() in the kernel
and __get_haiku_revision() in libroot
* system_revision.c is now being built as part of libroot and as part of the kernel
* adjusted all callers of get_system_revision() accordingly


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41516 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b113e735 14-May-2011 Alexander von Gluck IV <kallisti5@unixzen.com>

place myself in proper section, thanks for letting me know AnEvilYak

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41495 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ffea7c6e 14-May-2011 Alexander von Gluck IV <kallisti5@unixzen.com>

adding myself to about window contributors section before A3, if this is the wrong section please let me know via the ML

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41494 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 9160cdc2 13-May-2011 Oliver Tappe <zooey@hirschkaefer.de>

* adjust AboutSystem to fetch the system revision via
get_system_revision() instead of parsing it from utsname

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41480 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 082f2abc 04-May-2011 Joachim Seemer <humdingerb@googlemail.com>

User taos found another unneeded comma and enforced 80 chars/line on two occasions. Thanks.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41317 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8d9e29a5 29-Apr-2011 Joachim Seemer <humdingerb@googlemail.com>

User taos made the copyrights entries a bit more consistent, e.g. endings with full stops, using single spaces, removing unneeded spaces, shortening year ranges. That sort of thing. Thanks taos.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41293 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3c613df4 12-Apr-2011 Matt Madia <mattmadia@gmail.com>

Updated (R) to be B_UTF8_.* Added (TM) as well. thanks phoudoin!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41245 a95241bf-73f2-0310-859d-f6bbb57e9c96


# cfbbba08 11-Apr-2011 Matt Madia <mattmadia@gmail.com>

Another update relating to the USPTO registration of the HAIKU logo.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41241 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 329daa44 04-Apr-2011 Joachim Seemer <humdingerb@googlemail.com>

Changed a few strings as discussed on the i18n mailing list. Added localization of license descriptions in AboutSystem.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41184 a95241bf-73f2-0310-859d-f6bbb57e9c96


# d05e1481 26-Mar-2011 François Revol <revol@free.fr>

Colorize "BeOS" in the credits, oh, nostalgia... (shouldn't it say "the BeOS" btw?)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41110 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b552b728 25-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Crediting Takashi Murai and Kazuho Okui as contributors, for MuTerminal, from which the present Terminal was developed.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41107 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 560ff447 25-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Use resource definition files instead of DoCatalogs rule. Rename B_TRANSLATE_APP_NAME and related macros to the more generic B_TRANSLATE_SYSTEM_NAME, to also fits add-ons, folders, etc, and make 'System name' its standard context. Change CodyCam and PoorMan's app signatures to match the overall x-vnd.Haiku-App pattern. Some clean-up. Make SlideShowSaver build again.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41103 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 6e5ffd78 24-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Farewell, Be logo, and thanks for all the bits! Credit Be Inc in AboutSystem.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41096 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 47798a10 13-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Localization changes. Stop using AddCatalogEntryAttribute rule in Jamfiles.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40945 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 463c0d1e 08-Mar-2011 Philippe Houdoin <philippe.houdoin@gmail.com>

Upgrade to latest libwebp.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40868 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 10444a43 26-Feb-2011 Jonas Sundström <jonas@kirilla.com>

CID 8952 STRING_OVERFLOW
CID 6753 SECURE_CODING
CID 3299 MISSING_BREAK

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40716 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 19b0b281 26-Feb-2011 Jonas Sundström <jonas@kirilla.com>

Crediting also myself and Patrik Gissberg for translation to Swedish.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40715 a95241bf-73f2-0310-859d-f6bbb57e9c96


# aea362af 21-Feb-2011 Jonas Sundström <jonas@kirilla.com>

Crediting Michael Davidson, Mikael Eiman and Pier Luigi Fiorini for the notification server.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40608 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b6d49092 12-Feb-2011 Joachim Seemer <humdingerb@googlemail.com>

Committing all German catalogs. Thanks to all translators, esp. Mirko Israel who helped filling in the gaps and making everything as consistent as possible. Any mistakes or improvements are very welcome at the haiku-i18n-de mailing list.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40458 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 90a81ace 21-Jan-2011 Philippe Houdoin <philippe.houdoin@gmail.com>

Add Sean "jalopeura" Healy to contributors list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40260 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b5a719f0 10-Jan-2011 Joachim Seemer <humdingerb@googlemail.com>

Added even more translators.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40191 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 27997edc 09-Jan-2011 Siarzhuk Zharski <zharik@gmx.li>

1) Add Google Code-In student Michael Bulash into:
- list of translators for his work on complete Belarusian translation;
- list of contributors for his work on internationalization of LaunchBox,
PowerStatus and ProcessController applications and following preflets:
DataTranslations, E-Mail, Notifications, Screen, ScreenSaver, Time.
2) Corrected the name of Russian translator Rodastahm Islamov on his request.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40185 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 89c389eb 05-Jan-2011 Joachim Seemer <humdingerb@googlemail.com>

Added more translators, mostly GCI students, to Haiku's About window.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40124 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 6186bb44 03-Jan-2011 Ryan Leavengood <leavengood@gmail.com>

Add Geoffry Song and Deyan Genovski to the Contributors in AboutSystem.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40099 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3a0ecaab 01-Jan-2011 Ryan Leavengood <leavengood@gmail.com>

Add Hamish Morrison to the Contributors list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40063 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0c58e90c 01-Jan-2011 Joachim Seemer <humdingerb@googlemail.com>

Apparently I have to relearn the alphabet... hi before hu... Sorry.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40050 a95241bf-73f2-0310-859d-f6bbb57e9c96


# c6216628 01-Jan-2011 Joachim Seemer <humdingerb@googlemail.com>

Added GCI students/mentor Abhishek Arora, Jayneil Dalal, Atharva Lath for Hindi localization.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40049 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 25dc253d 22-Nov-2010 Ingo Weinhold <ingo_weinhold@gmx.de>

* Merged weak-symbols branch.
* Fixed trivial merge conflict in src/system/libroot/posix/locale/nl_langinfo.cpp
* Fixed gcc 2 compilation of src/system/glue/init_term_dyn.c.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39571 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5a2f51f2 19-Nov-2010 Philippe Houdoin <philippe.houdoin@gmail.com>

Added WebPTranslator to Haiku image, with due credits in AboutSystem.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39516 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f316c817 02-Nov-2010 Matt Madia <mattmadia@gmail.com>

Moved it to the "Contributors" section, which also lists all the former
contributors.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39272 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 6e268ab2 01-Nov-2010 Matt Madia <mattmadia@gmail.com>

Jorge G. Mare aka Koki is no longer a contributing member.
See http://www.freelists.org/post/haiku-development/Banning-Jorge-G-Mare
for more information.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39270 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 88a3ad40 01-Nov-2010 Matt Madia <mattmadia@gmail.com>

Tweaked Gutenprint's PackageCredit to list GNU GPL v2
Note: .SetLicense() needs a filename from HAIKU_TOP data system data licenses.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39265 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 018242de 01-Nov-2010 Michael Pfeiffer <michael.w.pfeiffer@gmail.com>

* Added preliminary credits for Gutenprint.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39257 a95241bf-73f2-0310-859d-f6bbb57e9c96


# bea74c09 31-Oct-2010 François Revol <revol@free.fr>

Cleanup test code. Use a message and run the easter egg from MessageReceived(). USe find_directory() to find the fortune file.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39241 a95241bf-73f2-0310-859d-f6bbb57e9c96


# d1d8fda6 19-Oct-2010 Oliver Tappe <zooey@hirschkaefer.de>

Next step of Locale Kit refactoring:
* BLocale now keeps language and country completely separate and
mixes the formatting conventions into the current language's locale
when formatting dates and times (needs to be done for number- and
currency-formatting, too, since the digits may not be in the
preferred language)
* optimized fetching of the flag icons such that they are all loaded
in one go (by the locale roster) - this alone speeds up the Locale
preflet considerably
* worked on fixing the language confusion in the Locale preflet
* fixed a couple of bugs in the Locale preflet that would lead to
illegal characters being displayed in the date-subpart menus


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39013 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7e169844 18-Sep-2010 Matt Madia <mattmadia@gmail.com>

Removed extra blank line in the 'Special thanks to:' section


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38713 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 19b7ba00 17-Sep-2010 Matt Madia <mattmadia@gmail.com>

Added the University of Auckland and Christof Lutteroth to the 'Special thanks'
section of AboutSystem, for their efforts in developing and bringing Stack and
Tile to Haiku. Thank you!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38693 a95241bf-73f2-0310-859d-f6bbb57e9c96


# da81ea91 04-Sep-2010 Alex Wilson <yourpalal2@gmail.com>

patch by 'jstreessman' fixing regressions in AboutSystem and InstallerWindow from r38512, thanks!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38526 a95241bf-73f2-0310-859d-f6bbb57e9c96


# eb55a19a 03-Sep-2010 Alex Wilson <yourpalal2@gmail.com>

Fix regression in AboutSystem from r38512, expected spacing to be 0, so this is now requested explicitly.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38520 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b7f60965 30-Aug-2010 Oliver Tappe <zooey@hirschkaefer.de>

* removed all BLocale-related getters from BLocaleRoster - they're available
in BLocale (which is accessible via be_locale)
* adjusted all users accordingly


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38459 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 303269dc 25-Aug-2010 Axel Dörfler <axeld@pinc-software.de>

* Hide the "GCC 2 Hybrid" string since this is the default - only deviations
from the default are shown now.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38367 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1d6c7b6c 17-Aug-2010 Alex Wilson <yourpalal2@gmail.com>

Big change deriving BLayout from BLayoutItem, and allowing viewless BLayouts.
a few highlights:
* BLayout now derives publicly from BLayoutItem
* Added BAbstractLayout class, which our layouts now derive from
* updated layout builders to avoid creating views when they don't need to
* updated layout classes
* updated AboutSystem to fix a little regression
* more details on #6407
* please tell me about any regressions, I've tried to find them all, but some
may have slipped by.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38207 a95241bf-73f2-0310-859d-f6bbb57e9c96


# def864c0 15-Aug-2010 François Revol <revol@free.fr>

Fix some blatantly missing uses of ui_color(), but there is a lot of work to do here... BControlLook itself doesn't even respect those correctly either...


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38121 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 80c8ad4b 11-Aug-2010 Joachim Seemer <humdingerb@googlemail.com>

Added Michael Vinícius de Oliveira (michaelvo) as contributer to Portuguese localization. Thanks.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38030 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3cf37a1a 11-Aug-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

CID 2001 : be_locale_roster->GetLanguage may fail.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38027 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 456d57af 07-Aug-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* be_locale_roster->GetLanguage may fail. Fixes CID 2002.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37952 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5c3a3034 04-Aug-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* Move the locale-related stuff away from BCountry to BLocale.
* Remove the be_locale global object and go through the be_locale_roster instead
* Rework the storage of data for the be_locale_roster, since BLocale already holds a BCountry and a BLanguage.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37907 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 38ac8def 01-Aug-2010 Oliver Tappe <zooey@hirschkaefer.de>

Largish cleanup sweep concerning the Locale Kit (sorry it got so big):
* refactored private/mutable stuff out of LocaleRoster into MutableLocaleRoster
* moved management of Locale/Time settings file and broadcasting of any changes
out of preflets and into MutableLocaleRoster
* added proper sorting to the listviews of the Locale preflet
* the Time preflet no longer overlaps long timezone names into the actual time
* several fixes with respect to leaking ICU objects, esp. in BCountry
* the locale roster no longer passes out references to its own BCountry object,
but uses copies, instead - this makes locking superfluous, as the clients'
BCountry objects can no longer be changed by the setting a new default
country in the locale roster
* removed pretty useless POSIX-style symbol fetching from BCountry - if we
need that at all, it should live in the dedicated formatter classes
* adjusted readonlybootprompt, dstcheck and Deskbar to the changed Locale API
* refactored existing Time-formatter into TimeUnitFormat and DurationFormat
(the latter of which is now used by AboutSystem)
* added stubs for Date, DateTime and Time formatters
* lots of coding style fixes throughout the Locale Kit and the Locale and Time
preflets
This will probably break most external apps making use of the Locale Kit - it
does break WebPositive.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37831 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8a87043c 27-Jul-2010 Philippe Houdoin <philippe.houdoin@gmail.com>

Fixed a typo spotted by dru345 on #haiku

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37774 a95241bf-73f2-0310-859d-f6bbb57e9c96


# d66fde12 25-Jul-2010 Rene Gollent <anevilyak@gmail.com>

Moved Alex Wilson to current maintainers list.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37749 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 2873f50a 25-Jul-2010 Matt Madia <mattmadia@gmail.com>

Utilize HAIKU_DISTRO_COMPATIBILITY and HAIKU_OFFICIAL_RELEASE for choosing
which graphic to display in AboutSystem and Installer.

When 'official' and 'HAIKU_OFFICIAL_RELEASE', the 'release' logo -- eg, alpha 2
will be used. When 'HAIKU_OFFICIAL_RELEASE' is not defined, the 'development'
logo will be used.

When 'default' or 'compatible', no graphic will display. Their appearance
does degrade somewhat gracefully, though InstallerWindow.cpp may need an
adjustment to better set fStatusView->SetExplicitMinSize()

Relates to #6183.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37741 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b198a5f2 22-Jul-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* Fix unpractical translation string in AboutSystem.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37693 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 74baa1d7 21-Jul-2010 Joachim Seemer <humdingerb@googlemail.com>

Added Pengfei Han (kurain) for the Chinese translation. Thanks.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37665 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 403859d7 21-Jul-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* Fix a string that was unpractical and confusing for translations.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37657 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ce0077c3 20-Jul-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* Following the outsourcing ofICU as an optional package, it was listed twice in AboutSystem. Thanks to RQ for noticing !


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37618 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0462f585 20-Jul-2010 Joachim Seemer <humdingerb@googlemail.com>

Added Vasco Costa (gluon) to our list of translators (Portuguese). Thanks gluon.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37611 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b37fa18b 08-Jul-2010 Philippe Houdoin <philippe.houdoin@gmail.com>

Fixed Size() and BytesRemaining() semantics, which was broken.
Revert r33437, which was missing the root cause.
Spotted by Christophe Huriaux, thanks.
And welcome in contributors list!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37437 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 05b7485e 04-Jul-2010 Rene Gollent <anevilyak@gmail.com>

Moved Wim to the active maintainer list.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37397 a95241bf-73f2-0310-859d-f6bbb57e9c96


# be8fa2fb 02-Jul-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* Update all applications in tree to use the new localizing system
* Remove the old one from the locale librairy, with some cleanup
Known regressions :
* readonlybootprompt will no longer update the locale settings : the
method used messed with internal undocumented things
* external localized apps (webpositive for example) will not run
anymore.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37336 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 16023f51 19-Jun-2010 Wim van der Meer <wpjvandermeer@gmail.com>

* Report inaccessible memory
* Use IEC binary prefixes


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37182 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 46f84134 11-Jun-2010 Wim van der Meer <wpjvandermeer@gmail.com>

Use B_PAGE_SIZE for calculating memory size in the AboutSystem app.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37097 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 80fa1a19 18-May-2010 Joachim Seemer <humdingerb@googlemail.com>

Corrected Hironori Ichimiya's name and reordered contributers alphabetically.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36857 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8cbf8a52 08-May-2010 Joachim Seemer <humdingerb@googlemail.com>

Added Brian Matzon as our Danish Dynamite translator. Thanks luroh for testing. +alpha2

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36736 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4eb0cbb0 07-May-2010 Matt Madia <mattmadia@gmail.com>

Updated TR_CONTEXT to be B_TRANSLATE_CONTEXT, relating to #5408.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36733 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b588e644 07-May-2010 Axel Dörfler <axeld@pinc-software.de>

* Changed AboutSystem to only show the translated language names.
* Added the same hack to ReadOnlyBootPrompt that I put into Locale to
work-around the missing font overlays in the app_server; IOW we use some
heuristics to decide which language to show.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36730 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 9cafc5db 07-May-2010 Ithamar R. Adema <ithamar.adema@team-embedded.nl>

* Fix build after Axel commited his locale changes in r36727

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36728 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 48e6f7c0 07-May-2010 Joachim Seemer <humdingerb@googlemail.com>

Added Satoshi Eguchi, the Japanese translation manager. +alpha2

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36724 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4e689749 06-May-2010 Matt Madia <mattmadia@gmail.com>

Updated to use B_TRANSLATE* macros. relates to #5408.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36662 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f60438de 01-May-2010 Joachim Seemer <humdingerb@googlemail.com>

Spanish translator César Ortiz Pantoja (ccortiz). +alpha2

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36566 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 09552695 30-Apr-2010 Matt Madia <mattmadia@gmail.com>

Added "Haiku and the Haiku logo are trademarks of Haiku, Inc."


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36563 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5cbd53f6 30-Apr-2010 Matt Madia <mattmadia@gmail.com>

Unified the spelling of licence/license.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36562 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 55538d28 25-Apr-2010 Stephan Aßmus <superstippi@gmx.de>

Added a few people to the contributors list who's patches have recently been
landed. Thanks a bunch! If I have forgotten anyone, please do bring it to my
attention! :-)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36467 a95241bf-73f2-0310-859d-f6bbb57e9c96


# c966de06 22-Apr-2010 Matt Madia <mattmadia@gmail.com>

Changed the behavior to always display the GCC. Extended it to report "Hybrid"
as needed. "Hybrid" is a new string for localization.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36419 a95241bf-73f2-0310-859d-f6bbb57e9c96


# de202917 12-Apr-2010 Matt Madia <mattmadia@gmail.com>

moved myself to the active contributors list.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36194 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ef38ad68 11-Apr-2010 Matt Madia <mattmadia@gmail.com>

Adding Jorma Karvonen (Karvjorm) for his Finnish translations.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36143 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 26d79d37 11-Apr-2010 Matt Madia <mattmadia@gmail.com>

Renamed the variant MIT license & updated AboutSystem accordingly.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36141 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 6e83f0ed 09-Apr-2010 Matt Madia <mattmadia@gmail.com>

Added licenses & updated AboutSystem for BRegion backend.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36101 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a7547a1c 09-Apr-2010 Matt Madia <mattmadia@gmail.com>

Added a new license: MIT with an advertising clause. This is mentioned on
http://en.wikipedia.org/wiki/MIT_License#Modified_versions_of_the_license
Updated AboutSystem to utilize them for libxml2, libxslt, & libexslt.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36100 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 61fd0c7f 08-Apr-2010 Matt Madia <mattmadia@gmail.com>

slight rewording.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36086 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 444b1d4e 08-Apr-2010 Matt Madia <mattmadia@gmail.com>

Acknowledge Google & their Google Summer of Code program. Thank you!
Fixes #5663.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36085 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ba8573cc 31-Mar-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Update japanese translation credits.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36015 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3fed6ef6 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Added plain text version of PDFlib-Lite-license.pdf
* Updated AboutSystem to utilize it


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36004 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0a38fb8d 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Added FTL aka FreeType Project License & updated AboutSystem to use it
* Fixed the note for pdflib, we are indeed using PDFlib-Lite
* Set atftp to GPL v2


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36003 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 063bb805 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Added LibJPEG license file, updated AboutSystem
* Added a note for BRegion backend's license
* These are the last planned license related commits
* There's a few notes for ones that are uncertain


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36001 a95241bf-73f2-0310-859d-f6bbb57e9c96


# bf2e2371 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Added UnRAR, Intel (ACPICA), & LibPNG licenses
* Updated AboutSystem to utilize them
* Added a note, netcat allows us to choose the license


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36000 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 9e1eee90 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Added license files for Bullet, Info-ZIP
* Updated AboutSytem for Bullet, Info-ZIP, bzip2, & OpenEXR
* VIM was removed in r35848, updated AboutSystem to reflect this


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35998 a95241bf-73f2-0310-859d-f6bbb57e9c96


# bbf48291 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

Added licenses for expat, zlib. Updated AboutSystem for Mesa, expat, & zlib.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35997 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 58aaef72 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Added license files for GLU & GLUT
* Updated AboutSystem to reference new licenses
* information based on http://www.mesa3d.org/license.html


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35996 a95241bf-73f2-0310-859d-f6bbb57e9c96


# c98bab29 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

Fixed some licensing mistakes from over the weekend. Mistakenly grouped cortex,
xiph, and tcpdump with mkdepend's license.
* Re-added MkDepend as a license
* Removed BSD (Alternate 3-clause)
* Modified BSD licenses to match http://en.wikipedia.org/wiki/BSD_license


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35995 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 880a657a 28-Mar-2010 Matt Madia <mattmadia@gmail.com>

Updated some more licenses. Added a note about Freetype, which allows us to
choose either the FTL or GPL. Added a note about PDFLib, whose license file
is a pdf and lists some additional requirements for binary redistribution.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35984 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0ba335bc 27-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Replaced MkDepend license file with a more generic BSD (Alternate 3-clause)
* Updated several program's license & URL
* Added a note about libxml2, libxslt, libexslt


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35980 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b5489c54 27-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Added licenses for CQuantizer, MAPM.
* Updated AboutSystem to use them
* Removed trailing '/' from MkDepend's .SetURL


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35975 a95241bf-73f2-0310-859d-f6bbb57e9c96


# c0d9055b 27-Mar-2010 Matt Madia <mattmadia@gmail.com>

Changed the URL for MkDepend to not display the .html, similar to MAPM.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35973 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3118ddd8 27-Mar-2010 Matt Madia <mattmadia@gmail.com>

Added license for MkDepend

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35972 a95241bf-73f2-0310-859d-f6bbb57e9c96


# fed5b83c 27-Mar-2010 Michael Pfeiffer <michael.w.pfeiffer@gmail.com>

Sort languages alphabetically using collators.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35969 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 103376b3 27-Mar-2010 Michael Pfeiffer <michael.w.pfeiffer@gmail.com>

Moved translators into a table. Avoids code duplication and should make
the implementation of the open TODO (sort languages alphabetically using
collators) easy.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35968 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 9ba3482a 22-Mar-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Add credits for the japanese translation in AboutSystem.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35933 a95241bf-73f2-0310-859d-f6bbb57e9c96


# e702f590 22-Mar-2010 Matt Madia <mattmadia@gmail.com>

Removed the comments regarding wifi copyrights. Now that the information is
recorded as part of the revision history, they can be removed.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35931 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f237e418 15-Mar-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* Fix a small bug in BLanguage::GetName
* Use BLanguage in AboutSystem to get the names of the languages in the credit list, no need to add useless work for the translators
* Add some contributors to the credits for japanese translation


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35864 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 14f88b34 13-Mar-2010 Joachim Seemer <humdingerb@googlemail.com>

Added a few more translators to AboutSystem. Thanks, guys.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35838 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a28171ff 11-Mar-2010 Joachim Seemer <humdingerb@googlemail.com>

Added all translators (as far as they mailed me their consent) of the user guide to the translation section of AboutSystem. Removed the second newline after every language heading.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35810 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 2eb71b4e 28-Feb-2010 Colin Günther <coling@gmx.de>

Indent the comments to line up with the _AddPackageCredit() method. Should have
been part of r35691, where I applied a patch by mmadia taken from ticket #5457
(which was previously closed by bonefish), with some modifications by me.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35692 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 6f144451 28-Feb-2010 Colin Günther <coling@gmx.de>

Adding copyright information of WiFi firmwares to AboutSystem.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35691 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 561d4cb9 26-Feb-2010 Ingo Weinhold <ingo_weinhold@gmx.de>

Sort the package credits case-insensitively. Fixes #5185.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35624 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 73cb8df0 19-Feb-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Fix credits for hungarian localization


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35518 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 33eead33 17-Feb-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* Improve the test for TimeFormat (style and error checking)
* Fix the TimeFormat API, there was a double free. Make it work as expected : you send it a number of seconds and it will format it properly in days, hours, minutes, seconds with proper plural.
* Cleanup other parts of the Format API from useless things. They may get reintroduced later if we feel the need to do so.
* AboutSystem now use TimeFormat to display the uptime in properly localized way.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35506 a95241bf-73f2-0310-859d-f6bbb57e9c96


# be8e9d5e 10-Feb-2010 Artur Wyszynski <aljen-mlists@o2.pl>

Reverted style changes pointed by stippi


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35445 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 03828629 09-Feb-2010 Rene Gollent <anevilyak@gmail.com>

Added Romain Picard to contributors list for his FAT fixes and other previous patches. Thanks!



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35442 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 54b738a1 08-Feb-2010 Artur Wyszynski <aljen-mlists@o2.pl>

* Localized AboutSystem
* Added polish translation made by me
* Added myself & Hubert Hareńczyk to polish translators
* Corrected my last name
* Honor 80lines
* Style cleanup



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35439 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7fd58091 26-Jan-2010 Jérôme Duval <korli@users.berlios.de>

* updated libjpeg to version 8, as the previous version on trunk didn't look like version 7, the merge wasn't usable. I modified jpeglib.h to have the JPEGTranslator built.
* added libjpeg to AboutSystem
* JPEGTranslator now uses the shared library libjpeg.so


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35312 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5337f612 26-Jan-2010 Oliver Tappe <zooey@hirschkaefer.de>

* added license for ICU
* added missing ICU copyright credit to AboutSystem

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35300 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 33e5fc1c 20-Jan-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Add dutch translation for midiplayer, done by Meanwhile. Thanks !


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35208 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3cfe0175 18-Jan-2010 Ingo Weinhold <ingo_weinhold@gmx.de>

Corrected spelling of Samuel's surnames.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35150 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7974d3dc 13-Jan-2010 Stephan Aßmus <superstippi@gmx.de>

Patch by Humdinger:
Updated Haiku apps to use sentence-case. What a huge undertaking...
The files where I had to apply the patch manually (for mysterious
reasons) have also gotten a whitespace cleanup. I've proof-read
everything so hopefully there should be no problems.

This should be the final part of #5169.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35049 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f66bb081 10-Jan-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Added portuguese localisation done by Xeon3D.
I had to uptade the catkeys as Travis tool has trouble keeping up with changes in the repository (most importantly, cpufrequency fixes and mail sentance casing). I hope nothing was lost in the process.
Travis, if you read this, I had to load the catkey files in vim and save them back to get them linked correctly by the buildtools. I suspect some line ending problem or something alike. Also, your fingerprint computation seemed wrong in most cases.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34994 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8e0fba06 03-Jan-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

-Updated esperanto catalogs done by Travis again (fixed your name in AboutSystem too, sorry about that).
-Updated one lituanian catalog from Algirdas. I'm too lazy to fix the others one, sorry.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34884 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 2fdf91fe 02-Jan-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Esperanto localization by Travis D. Reed. Thanks !


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34853 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1e9ba7f2 20-Dec-2009 Ingo Weinhold <ingo_weinhold@gmx.de>

Patch by Matt Madia with small modifications by myself: Read and display the
"SourceURL" fields in optional package descriptions.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34725 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 32126677 20-Dec-2009 Ingo Weinhold <ingo_weinhold@gmx.de>

Cleanup.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34724 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 613cdfa6 20-Dec-2009 Ingo Weinhold <ingo_weinhold@gmx.de>

Added support for using email address style named URLs ("... <...>") for
package licenses and URLs.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34723 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1e752e59 03-Dec-2009 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Added translation contributors to AboutSystem. I was not sure how to present the "languages" subtitles, feel free to improve.
I hope I didn't forgot someone and got everything right. Thanks to you all :)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34478 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 70d385fb 11-Nov-2009 Rene Gollent <anevilyak@gmail.com>

VL-Gothic's copyright was missing the NULL terminator on the argument list. This caused a crash on gcc2. Fixes ticket #4939.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34006 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b258fd91 11-Nov-2009 Stefano Ceccherini <stefano.ceccherini@gmail.com>

Replaced license/copyrights for Konatu with the ones for VL-Gothic fonts.
This and r33992 fix ticket #4933.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33994 a95241bf-73f2-0310-859d-f6bbb57e9c96


# c1181914 30-Oct-2009 Philippe Houdoin <philippe.houdoin@gmail.com>

Added Pete Goodeve to contributors for his work on MIDI.
Give him credit in midi_server and fix a typo.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33841 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 823380c6 28-Oct-2009 Philippe Houdoin <philippe.houdoin@gmail.com>

Added Hong Yul Yang to contributors.
Hope "Yang" is actually your lastname!
Feel free to correct me.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33817 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7f452dbd 27-Oct-2009 Axel Dörfler <axeld@pinc-software.de>

* Moved Brecht to the current maintainers.
* Added Colin.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33798 a95241bf-73f2-0310-859d-f6bbb57e9c96


# d124b42d 27-Oct-2009 Philippe Houdoin <philippe.houdoin@gmail.com>

Move Fredrik "tqh" Holmqvist from contributors to maintainers.
Welcome onboard!

And, look, what a coincidence: you're my new upper neighbour in that list!
:-)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33796 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7d9b05f1 04-Oct-2009 Ryan Leavengood <leavengood@gmail.com>

- Move Scott McCreary to current maintainers list.
- Add Caitlin Shaw to contributors list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33429 a95241bf-73f2-0310-859d-f6bbb57e9c96


# fd09bcb0 27-Sep-2009 Rene Gollent <anevilyak@gmail.com>

Add Joshua R. Elsasser to contributors list.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33328 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a0556a1d 25-Sep-2009 Philippe Houdoin <philippe.houdoin@gmail.com>

Added Fredrik Holmqvist (tqh) to our contributors.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33296 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 904acde1 24-Sep-2009 Philippe Houdoin <philippe.houdoin@gmail.com>

Added Vincent Duvert to Contributors for his Icons screensaver.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33271 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 61992664 25-Aug-2009 Jonas Sundström <jonas@kirilla.com>

Patch by Fredrik Ekdahl, slightly modified. Added Fredrik to list of Contributors.
+alphabranch

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32677 a95241bf-73f2-0310-859d-f6bbb57e9c96


# be454e17 13-Aug-2009 Fredrik Modeen <fredrik@modeen.se>

- Added Chris Roberts OpenTerminal.
- Added him to Contributors
- Missing a icon thoug, any thoughts about how it should look?

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32334 a95241bf-73f2-0310-859d-f6bbb57e9c96


# e17680d3 07-Aug-2009 Stephan Aßmus <superstippi@gmx.de>

Another update to the credits:
* Moved a couple people up from Contributors to Maintainers, since they gained
commit acces.
* Shock! Matt Madia and Humdinger were missing!
* Added Koki back to Website team (after consulting him first).
* Added some more well deserved special thanks!

As always, please bring anyone I missed to my attention, I don't leave anyone
out intentionally!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32192 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8ae594ff 28-Jul-2009 Axel Dörfler <axeld@pinc-software.de>

* Introduced dedicated syscalls for the deprecated BeOS fs_attr API. Before,
each attribute access needed 3 syscalls, now only one as it should.
* Renamed the new Haiku call fs_open_attr() to fs_fopen_attr(), and added a new
function fs_open_attr() that takes a path (same semantics as the
fs_[f]open_attr_dir() functions already present in BeOS).
* Merged former _kern_open_attr(), and _kern_create_attr() into one syscall.
* Cleaned up vfs.h.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31881 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1915b038 25-Jul-2009 Stephan Aßmus <superstippi@gmx.de>

Added the GSoC and HCD students to the credits, who have patches already
in the tree.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31753 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ce3c3c99 25-Jul-2009 Stephan Aßmus <superstippi@gmx.de>

* Added Jeroen Oortwijn to list of contributers, I've commited a couple of patches
already...
* Moved Michele Frau to correctly sorted spot.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31752 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 18882afb 18-Jun-2009 Axel Dörfler <axeld@pinc-software.de>

* Removed accidental leftover in a GCC4 only codepath.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31106 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 99a8d301 18-Jun-2009 Axel Dörfler <axeld@pinc-software.de>

* Changed the whole thing to use the layout engine, which makes it work okay
with larger font sizes.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31099 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8e151a5d 18-May-2009 Oliver Tappe <zooey@hirschkaefer.de>

* Made the AboutSystem be selectable again. Why the credits view used to be
made non-selectable on program start and selectable after the credits have
been added escapes me.
This fixes #2497 again.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30796 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 679eee62 18-May-2009 Ingo Weinhold <ingo_weinhold@gmx.de>

* Generalized the Licenses class to StringVector.
* Added PackageCredit class that encapsulate all data for a package credit.
* Instead of adding the package credits directly to the text view, we do now
first collect them and add them afterwards. Also avoid duplicates by guessing
which package credits are newer. Fixes #3930.
* Removed the query for installed applications. Everything in core Haiku should
be hard-coded and all optional packages should have
.OptionalPackageDescriptions anyway. What the user installs afterwards is
really her business and doesn't need to appear in AboutSystem.
* Removed some commented credits that should belong to optional packages.
* Added TODOs where licenses (or links to them) are missing.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30791 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ff74dc2e 09-May-2009 Ingo Weinhold <ingo_weinhold@gmx.de>

Search the license files in the standard user/common/system licenses
directories.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30681 a95241bf-73f2-0310-859d-f6bbb57e9c96


# cb298dba 02-May-2009 Stephan Aßmus <superstippi@gmx.de>

Added Mark to list of contributors.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30560 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 000fe088 04-Apr-2009 Stephan Aßmus <superstippi@gmx.de>

Patch by Ma Jie: Basically - make Poorman (the webserver) work. Libhttpd from
Jef Poskanzer is providing the backend, but had to be adopted in some ways.
Other issues in Poorman have been resolved.

When testing the license integration, I stumbled over some AboutSystem bugs,
basically clicking licenses would not open them. I fixed those in this patch,
sorry for mixing that up.

Note to Ma Jie: I changed the encoding of the libhttpd files to UTF-8!
(This affects only the (C) glyph.) Thanks a lot for your awesome work on
Poorman, it's really appreciated!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29906 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 317bd7dd 03-Apr-2009 Axel Dörfler <axeld@pinc-software.de>

* Changed directory structure as suggested on the mailing list.
* Made the TimeZoneView less error prone, and also actually use Haiku code (the
previous check didn't work since it used #if, not #ifdef).
* Also took the liberty to rename our boot loader to haiku_loader, since I had
to update the nasm binary anyway. Updated the assembly sources to nasm 2.0.
* I haven't found where the synth location in the MIDI code is specified,
though.
* Also, NetBootArchive, and FloppyBootImage haven't been updated yet. Will do
so next.
* Some optional packages still put their license to beos/etc/licenses. I didn't
update them yet, as we'll probably do so anyway at some point. Also, I think
we might want to introduce a common/data/licenses instead for those.
* If you encounter any problems, please tell!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29876 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 432ce373 18-Mar-2009 Stephan Aßmus <superstippi@gmx.de>

* Tracked down the mkdepend tool which Ingo used in his updated makefile-engine
which auto-generates dependencies. It was written by Lars Duening for BeOS
and uses libglob, which is also part of make. To re-use libglob and since
make is already part of the Haiku tree, I added mkdepend to the bin tools.
* Added Lars Duening's copyright to AboutSystem.
* Added skeleton makefile and makefile-engine to data/develop.
* Added mkdepend and makefile-engine files to the Development optional package.
It could be argued to move the make bin command there too, from it's current
location in the HaikuImage file. However, make could be useful to always
have available.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29609 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8aafdd05 08-Dec-2008 Rene Gollent <anevilyak@gmail.com>

Make the uptime view a multiline textview. This allows it to gracefully wrap the text instead of simply cutting it off when your uptime is too long to fit into the provided space. Fixes ticket #701.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28786 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8b62d2f0 08-Nov-2008 Stephan Aßmus <superstippi@gmx.de>

That the core system code of Haiku is distributed under the terms of the MIT
license was nowhere mentioned. I added an explaination to the copyrights section
and also mentioned that clicking a license name will open the respective
license for reading.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28557 a95241bf-73f2-0310-859d-f6bbb57e9c96


# bf5a91e2 06-Nov-2008 Stephan Aßmus <superstippi@gmx.de>

Added Adrian Panasiuk for his very good bug reporting work and helpful
patches. Thanks a lot!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28540 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8443d21c 04-Nov-2008 Stephan Aßmus <superstippi@gmx.de>

Included "Mike's Arbitrary Precision Math Library" in DeskCalc (BSD style
license) and rebased the ExpressionParser from double on the MAPM data type.
Currently, the binary operators are not supported anymore, but the imprecise
calculations were getting on my nerves. I think a lot more neat functions
could now be supported, but I have not looked into it further. I also didn't
dare look closer at the C code of the library, but it seems to be well
tested. It's portable by all means, I guess even if the target platform has
8.3 char file names to hold the code... Luckily, the library inclused a C++
wrapper class for the data type (MAPM) which makes it fairly comfortable to
use and hides the ugly C stuff and messy memory management.

The result seems to be quite nice so far. Previously, I couldn't even calculate
my finances without eventually getting some rounding errors.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28506 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8b0dc5ae 01-Nov-2008 Stephan Aßmus <superstippi@gmx.de>

Added Clemens Zeidler to the list of contributors for his
Synaptics Touchpad driver patch. Thanks!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28418 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 29ac46e8 30-Oct-2008 François Revol <revol@free.fr>

- missing space between sentenses
- fix BeOS build


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28387 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5feb95a1 03-Oct-2008 Stefano Ceccherini <stefano.ceccherini@gmail.com>

Added Francesco Piccinno (and not Piccinini as I incorrectly wrote in the if_re driver commit message, sorry!) to the about box.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27848 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a2b5ecab 09-Sep-2008 Ingo Weinhold <ingo_weinhold@gmx.de>

Added Zhao Shuai to the contributors list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27394 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 47a5fa5a 07-Sep-2008 Jérôme Duval <korli@users.berlios.de>

fix typo


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27353 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5379de87 03-Sep-2008 Stephan Aßmus <superstippi@gmx.de>

Another attempt at improving the AboutSystem credits:
* The "Most influential developers" list wasn't such a good idea after all.
* Now we have "Current Maintainers" and "Past Maintainers". Some developers
who still have commit access are in the Past Maintainers list, since they
have not done a commit in a long time (more than a year at least)
* TODO: Move more people from Contributors into Past Maintainers, I don't
know many names and have not tried to match names to SVN commit log nick
names.
* Added Ralf Schuelke to the Contributors for his Pairs game contribution.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27299 a95241bf-73f2-0310-859d-f6bbb57e9c96


# af6342b8 01-Sep-2008 Stephan Aßmus <superstippi@gmx.de>

Removed Jorge again by his own request. I completely forgot why Jorge was not
in the list and thought it was an oversight. Sorry.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27280 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 737fa69d 01-Sep-2008 Stephan Aßmus <superstippi@gmx.de>

Sorry, but another fix was needed. The previous list of most influential
developers was based on the oloh results, but these go only 3 years back. The
SVN revision history is much more complete and contains also the CVS history
apart from a screw up at revision 10. However, I was able to obtain a much
more correct list now and so some resorting was due. According to these stats,
Michael Lotz would not appear in the list - however, I feel he should be
in there, since he was the first to run Haiku with app_server, the first to
run a browser on it, wrote the USB stack and so on. The other possiblity would
be to make the cut at 7 entries, which coincidentally would mean everyone in the
list has contributed more than 1000 commits.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27279 a95241bf-73f2-0310-859d-f6bbb57e9c96


# e03fa488 01-Sep-2008 Stephan Aßmus <superstippi@gmx.de>

First attempt at a more balanced Credits section:
* Changed the copyright line to say "The Haiku project", similar to the GNU
and BSD copyrights. Then a clarifying sentence as discussed on the developer
mailing list.
* Removed the outdated Team list in favor of a "Most influential developers"
list with the top contributors of the past and the present in order of
SVN commit numbers. It could be argued that Travis should be part of this
list but he is already mentioned later with a special note. I used this
wording to indicate that it could also mention no longer active, but still
"most influential" developers. "Lead developers" or "Core developers" would
not have this aspect.
* Created a new "Website, Marketing & Documentation" section which gives
hopefully all or at least most people a more prominent mention which are
contributing most in this area. Waldemar Kornewald could be moved to this
list as well. Koki was not mentioned anywhere before, which definitely needed
to be corrected! :-)
* Maurice Kalinowski and Fredrik Modeen are now commiters.
* Added Andrej Spielmann (Subpixel Anti-aliasing) to the developers list, since
he has commit access too now.
* Added David Powell to list of contributors, for his recent patch to the
boot splash generator and boot loader.
* Added Copyright for CQuantizer (part of the mentioned patch from David)

If you have suggestions for improvements, please shoot, especially if I forgot
someone!



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27262 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3a2ac557 28-Aug-2008 Michael Pfeiffer <michael.w.pfeiffer@gmail.com>

Added Mathew Hounsell to list of contributors.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27230 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4c660d94 11-Aug-2008 Stephan Aßmus <superstippi@gmx.de>

Applied patch by scottmc to fix the placement of some out of order names.
Thanks!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26928 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 29ec0f52 24-Jul-2008 François Revol <revol@free.fr>

Add copyrights for Udis86, used in the kernel debugger disasm module.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26621 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 764de92f 17-Jun-2008 François Revol <revol@free.fr>

Fix boggus ifdef. Thanks Vasilis. Parens shouldn't be needed though.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26001 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 64ee8222 17-Jun-2008 Axel Dörfler <axeld@pinc-software.de>

* Simplified compiler text - it will now only be shown in case it's not 2.95.3,
and it does fit in the line.
* Removed extraneous whitespace.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25994 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0e0d9290 10-Jun-2008 Axel Dörfler <axeld@pinc-software.de>

I can't believe Urias wasn't mentioned here yet...


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25914 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1083a4b6 29-May-2008 Stephan Aßmus <superstippi@gmx.de>

Added Andreas Faerber and Scott McCreary to the list of contributors for their
help with bugs, sending patches and the ongoing Haiku-Ports effort.

As always, if you think someone should be listed, please drop me a line!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25711 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ce2ba418 26-May-2008 Axel Dörfler <axeld@pinc-software.de>

* Added SHINTA to the list of contributors.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25669 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 05ffb70e 22-May-2008 François Revol <revol@free.fr>

Add compiler version to AboutSystem so newbs can identify if an image is built with gcc4 or gcc2.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25619 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 707cdd37 14-May-2008 Axel Dörfler <axeld@pinc-software.de>

Added Christian Fasshauer, and Marco Minutoli to the list of contributors.
Shinta, if you can give me your full name, I would like to add you too :-)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25492 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7b54413e 10-May-2008 Ingo Weinhold <ingo_weinhold@gmx.de>

Typo, spotted by Andreas Faerber.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25436 a95241bf-73f2-0310-859d-f6bbb57e9c96


# c5174c0a 04-May-2008 Ingo Weinhold <ingo_weinhold@gmx.de>

Add libMicro copyright and license to the image when the respective
optional package is installed.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25314 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7218a9b2 02-May-2008 Niels Sascha Reedijk <niels.reedijk@gmail.com>

Update copyright entries in the about window. Work done by scottmc. Thanks! This closes #1222.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25297 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b14a49c9 19-Apr-2008 Ingo Weinhold <ingo_weinhold@gmx.de>

* Added BTextView derived class HyperTextView, which allows for
associating text with an action performed when clicked. Very
bare-bones, but sufficient for our purposes.
* Turned all URLs into proper URLs (i.e. prepended "http://" where
missing).
* Added new AboutView::AddCopyrightEntry() versions. One can take an
additional licenses list, the other extracts all info from a supplied
BMessage.
* The displayed licenses and URLs are hyperlinks now. Clicking the
former opens the license file in /etc/licenses, the latter try to open
a browser (works with NetPositive at least).
* The "COPYRIGHTS" attribute of the executable can contain descriptions
of optional packages. Those are read, parsed, and added as copyright
entries.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25049 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b0b25f20 16-Apr-2008 Ingo Weinhold <ingo_weinhold@gmx.de>

Updated lp_solve copyright.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24988 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 51629616 16-Apr-2008 Michael Pfeiffer <michael.w.pfeiffer@gmail.com>

Added David Dengg to list of contributores for providing the initial version of bootman boot loader. Thank you!

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24982 a95241bf-73f2-0310-859d-f6bbb57e9c96


# e806cb51 15-Apr-2008 Stephan Aßmus <superstippi@gmx.de>

Applied patch by Scott McCreary:
* Added a whole lot of missing copyright statements, small corrections in
some existing ones.
Changes by myself:
* Fixed line breaks to honor 80 char limit.
* Removed unused function declaration to avoid warning.
* Small style fixes.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24966 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0323cae5 10-Apr-2008 Stefano Ceccherini <stefano.ceccherini@gmail.com>

Fixed warning.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24897 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5c21588c 06-Apr-2008 Stephan Aßmus <superstippi@gmx.de>

Addded various people who have contributed lately.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24843 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0ee10910 04-Apr-2008 Rene Gollent <anevilyak@gmail.com>

Forgot about this static function.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24802 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4e103cc0 04-Apr-2008 Rene Gollent <anevilyak@gmail.com>

Remove cache mem indicator from this app.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24800 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ddd25e75 03-Apr-2008 Rene Gollent <anevilyak@gmail.com>

* AboutSystem now shows cache usage together with total/available mem.
* Small cleanups.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24788 a95241bf-73f2-0310-859d-f6bbb57e9c96


# aa727f66 18-Mar-2008 Stephan Aßmus <superstippi@gmx.de>

patch by Artur Wyszynski (aljen):
* Added the feature of an animated boot screen (icons lighting up at
different boot stages).
* Added first version of new boot splash images, generated by the new
hsbg tool. (Also finally contains the "new" Haiku logo.)

changes by myself:
* Added Artur to the contributors list in About System.
* Fixed some left overs in the patch, kept tracing turned off.

TODO:
* Remove the need for hard coding the icon positions. (Maybe generate
those from hsbg and put them into images.h? Have user provide icon
spacing/offsets at the command line for hsbg?)
* Rename the stages to something meaningful.
* Use hsbg as a build system tool and generate images.h during build
from PNGs provided in the artwork folder.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24434 a95241bf-73f2-0310-859d-f6bbb57e9c96


# e6599ddb 05-Mar-2008 François Revol <revol@free.fr>

Make the text view selectable when the query is done, so one can select text, like urls to paste to a browser.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24257 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7c4e1117 05-Mar-2008 Jonas Sundström <jonas@kirilla.com>

Make text view not selectable. This fixes a problem where text is inserted not at the end of the text view but on the current page. This happens if you click the text view soon after having opened AboutSystem, to try to scroll or whatever, while it's still processing query results and calling AddCopyrightEntry() for each found application. It may not show on fast systems with few applications.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24256 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 017fb2f0 03-Mar-2008 Stephan Aßmus <superstippi@gmx.de>

I have tried to bring the developer list up to date to the best of my
knowledge. I compared it with the current commiters list on Berlios. Some
people listed there are still in the contributors list, since they have
been inactive for a long time. Any blunders are unintentional and I will
fix those ASAP once pointed out!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24233 a95241bf-73f2-0310-859d-f6bbb57e9c96


# fae347c3 03-Mar-2008 Rene Gollent <anevilyak@gmail.com>

Sorry about this, apparently my terminal kept getting confused by the UTF-8 char.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24221 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 72f25fc7 03-Mar-2008 Rene Gollent <anevilyak@gmail.com>

Argh.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24220 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b92b5592 03-Mar-2008 Rene Gollent <anevilyak@gmail.com>

Corrected accent on name and moved it where stippi said :)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24219 a95241bf-73f2-0310-859d-f6bbb57e9c96


# aba654f7 03-Mar-2008 François Revol <revol@free.fr>

Added Rene Gollent to the list of contributors, how come we forgot ?


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24217 a95241bf-73f2-0310-859d-f6bbb57e9c96


# d2dd8939 03-Mar-2008 Stephan Aßmus <superstippi@gmx.de>

Added James Urquhart to the list of contributors.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24216 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 501dd0d6 02-Mar-2008 François Revol <revol@free.fr>

Added Maurice Kalinowski to the contributors' list.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24206 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 89017c08 01-Mar-2008 Stefano Ceccherini <stefano.ceccherini@gmail.com>

Added Denis Washington to the contributors' list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24194 a95241bf-73f2-0310-859d-f6bbb57e9c96


# bb8610d0 27-Feb-2008 Alexandre Deckner <alex@zappotek.com>

* url is blue now!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24155 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7d5ff380 27-Feb-2008 Alexandre Deckner <alex@zappotek.com>

* added Bullet copyright


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24153 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 75b40264 16-Feb-2008 Jérôme Duval <korli@users.berlios.de>

added copyright for OpenEXR


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23966 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 05d8f525 06-Feb-2008 Ingo Weinhold <ingo_weinhold@gmx.de>

* Added James Kim to the list of contributors.
* Added temporary copyright entry for lp_solve as a placeholder, until I
know what it should say.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23890 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5ee2c720 20-Jan-2008 Stefano Ceccherini <stefano.ceccherini@gmail.com>

Oh yeah... I managed to screw a simple commit like this...


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23674 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f47745cc 20-Jan-2008 Stefano Ceccherini <stefano.ceccherini@gmail.com>

Added Christof Lutteroth to the contributors's list (forgot to do this
some time ago)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23672 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 669717f7 09-Jan-2008 Stephan Aßmus <superstippi@gmx.de>

* added a few recent contributors... I probably forgot a few others who
deserve to be mentioned... please speak up and I will correct it on
the spot! :-)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23297 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7b271007 27-Dec-2007 François Revol <revol@free.fr>

Bored at 4 am,
Into this cold winder,
Here comes an easter egg.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23179 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f7ef520f 27-Dec-2007 François Revol <revol@free.fr>

Any reason not to use ui_color() there ??


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23178 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7ea2bdd3 27-Dec-2007 François Revol <revol@free.fr>

Add a list of installed apps and their copyrights to the credits view, using a query.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23177 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4016bc0e 27-Dec-2007 François Revol <revol@free.fr>

Clean up and factor out adding the copyrights.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23174 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 69e65f2f 29-Oct-2007 Jérôme Duval <korli@users.berlios.de>

replaced misc values with respective constants


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22762 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0febb19c 03-Oct-2007 Ingo Weinhold <ingo_weinhold@gmx.de>

Added the students who worked on the DDM and intel partitioning system.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22424 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5d95ae00 19-Sep-2007 Jérôme Duval <korli@users.berlios.de>

added JiSheng as contributor


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22266 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 86519fe3 25-Aug-2007 Michael Pfeiffer <michael.w.pfeiffer@gmail.com>

Moved my name from Team Leads to Developers list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22054 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1255bc69 20-Jul-2007 Stephan Aßmus <superstippi@gmx.de>

* added copyright for BRegion backend implementation


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21675 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 210cbb4b 21-Jun-2007 Axel Dörfler <axeld@pinc-software.de>

* Removed the old LICENSE files of the previous S3 Savage driver as suggested by
Gerald.
* Added Gerald Zajac and Jan Kloetzke to the list of contributors.
* Added the s3savage driver and accelerant to the image.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21478 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b52415cc 02-Jun-2007 Stephan Aßmus <superstippi@gmx.de>

* added Ithamar R. Adema to the list of active developers
* moved Siarzhuk Zharski and François Revol from contributors
to the list of active developers
* moved Thomas Kurschel to the list of contributors
* added Michele aka zuMi to the list of contributors
Disclaimer:
* I might have forgotten someone who should be in active developers
* I didn't mean to discourage anyone
* I am against having three separate lists anyways... :-)
* Please take it as what this is: I wanted to put Ithamar and zuMi in there
and did some cleanup along the way...


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21293 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ae585f87 29-May-2007 Ingo Weinhold <ingo_weinhold@gmx.de>

Removed Jorge at his own urgent request.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21265 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7b20ae31 20-May-2007 Ingo Weinhold <ingo_weinhold@gmx.de>

Renamed src/apps/abouthaiku to src/apps/aboutsystem.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21180 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 268bbb1f8cae24bea1709e7fa9903baf29da318b 11-Apr-2015 Michael Lotz <mmlr@mlotz.ch>

AboutSystem: Fix leak of package credits.


# a6693759c7c8d88c441f6bbd3162761d47ba2c41 01-Mar-2015 Augustin Cavalier <waddlesplash@gmail.com>

AboutSystem credits: split "website & marketing" into a "current" and "past".

No sense having a "website team" with half its members no longer active...


# 56d52e342623bc9bc8e4f0fb6ef45bff1d7af502 27-Feb-2015 Augustin Cavalier <waddlesplash@gmail.com>

AboutSystem software credits: updates & cleanup.

All the packages I delete from here are not included in the tree
and not included in the "default packages" list.

* Use HTTPS rather than HTTP for sites that support it
* GDB was removed in hrev48791
* FFmpeg is spelled as "FFmpeg", not "FFMpeg"
* atftp was removed from the tree in the previous commit
* acipca was updated to a version from 2014 recently
* CannaIM was removed in hrev48034 & hrev48035
* libxml2 & friends were removed in hrev48798
* Cleaned up ifdef __INTEL__ lines -- no need to have more than one


# 6e1977701887cf73b09ce21182a7673844c4da89 08-Jan-2015 Adrien Destugues <pulkomandy@gmail.com>

AboutSystem: Activate() window on B_SILENT_RELAUNCH

Fixes #9094.


# 1d5b36cee22d9b2e82e6d65b31a4a976bb505781 03-Jan-2015 luroh <lurohh@gmail.com>

Clean up FreeType outsourcing leftovers

- Remove obsolete FreeType docs
- Remove obsolete FreeType license
- Update FreeType license and copyrights in AboutSystem

Signed-off-by: Adrien Destugues <pulkomandy@gmail.com>

Fixes #11697


# 73b2a864b9ccf8bb1c48de5c3a7f8718202ca485 03-Jan-2015 luroh <lurohh@gmail.com>

Fix atftp copyright typo in AboutSystem

Fixes #11699

Signed-off-by: Adrien Destugues <pulkomandy@gmail.com>


# 83cd45301927585f93f0f2f0ee9ab247b8a2eca1 23-Dec-2014 Adrien Destugues <pulkomandy@gmail.com>

Remove unrar and lp_solve from AboutSystem.

These were outsourced and are not Haiku dependencies anymore.
This list may need some more cleanup: I'm not sure why we credit Bullet
Physics, for example.


# 108389531005224e586ba1b68b79e84f244968ec 18-Dec-2014 Adrien Destugues <pulkomandy@gmail.com>

AboutSuste: Remove cal from freeBSD-provided list.

We now provide GNU cal in HaikuDepot instead.


# c6e1228c8ec991b9f334777fe195c19140c32291 07-Nov-2014 Adrien Destugues <pulkomandy@gmail.com>

Fix unresolved catalog access.

The B_TRANSLATE_MARK macro was used before a translation context was
set.


# 961fdd8cc3a4f138449895445e0b4531e98b1eb2 08-Oct-2014 Adrien Destugues <pulkomandy@gmail.com>

BMessageFormat: parse the pattern at construction

* Instead of parsing the pattern everytime Format() is called, parse it
only once when the object is created.
* Adjust all callers to make use of the feature and reuse the instance
as much as possible. This also allows calling B_TRANSLATE only once
instead of everytime the formatting needs to be done. We use either a
static instance (when the message pattern is constant) or a field (when
it is not known to be constant).
* Since the BMessageFormat instances are now reused, add locking to
avoid race conditions (ICU itself is thread safe, but the format pattern
is recreated when the locale is changed)


# 7fb90215099b811a1bc9ea482f77ae29ce5a54cc 07-Oct-2014 Adrien Destugues <pulkomandy@gmail.com>

Fix singular for Processor count.


# 53382a8aa7d12cc7d72e36acd6ac7c70429eddf0 07-Oct-2014 Adrien Destugues <pulkomandy@gmail.com>

Start making use of BMessageFormat.


# e3857211d305a595c2d0b58768f25623d5967675 02-Oct-2014 Adrien Destugues <pulkomandy@gmail.com>

Move DateTimeFormat and NumberFormat out of BLocale

* ... and adjust all callers
* Remove NumberFormatImpl: we rely on ICU to provide this and it can be
fully wrapped into the C++ file. The class was a stub anyway.
* "Monetary" format is included in NumberFormat for now. There may be a
more generic solution to handle monetary and BTimeUnitFormat (and other
arbitrary units)


# 03b2550ef1fba975beb15689659a4a5f38986aa0 01-Oct-2014 Adrien Destugues <pulkomandy@gmail.com>

Move time formatting to BTimeformat.

* Harmonize API for all B*Format to take an output BString by reference
as the first parameter,
* Move the FormatTime methods from BLocale to BTimeFormat
* Adjust all callers for BTimeFormat, BTimeUnitFormat and
BDurationFormat.


# 5ccde6d3dd220bc55ff024e6bb92b68c8b41ba7e 08-Jul-2014 Augustin Cavalier <waddlesplash@gmail.com>

AboutSystem: move authors and translators info to Credits.h

Signed-off-by: Axel Dörfler <axeld@pinc-software.de>


# 0427af0c09f1aa862f1142036ffdbe16958f766d 03-May-2014 Jessica Hamilton <jessica.l.hamilton@gmail.com>

AboutSystem: fix the build when firmware not included.


# c545f253e1032459958d58a23d735f352ea2f872 03-May-2014 Jessica Hamilton <jessica.l.hamilton@gmail.com>

AboutSystem: Only translate hyperlink text. Fixes #7491.


# 94febdfe8758216bf5b16197dac8dd1b34e06d6d 19-Apr-2014 Jessica Hamilton <jessica.l.hamilton@gmail.com>

AboutSystem: use BPathFinder correctly


# 07fae11ef898713d80462312addd8136df9ec081 19-Apr-2014 Jessica Hamilton <jessica.l.hamilton@gmail.com>

AboutSystem: use BPathFinder instead of find_directory.


# 8173945dc4cd8ca64848096d6f2219dba7f95bcd 19-Apr-2014 Jessica Hamilton <jessica.l.hamilton@gmail.com>

AboutSystem: license hyperlinks were missing due to incorrect count


# 57fc26c16b0289e45f35f88640b908158f5497f3 19-Apr-2014 Jessica Hamilton <jessica.l.hamilton@gmail.com>

Moved myself to current maintainers list.


# 97ab2b9b2fdb0945cb5995cff332dd7a42fdc199 13-Feb-2014 Jonathan Schleifer <js@webkeks.org>

AboutSystem: Add myself to current maintainers


# 490f23801afa978a212ab3bc5526ce8b213b2f61 09-Feb-2014 Alexander von Gluck IV <kallisti5@unixzen.com>

AboutSystem: Remove Jonas from current maintainers

* As per his own request on haiku-commits.
* Sorry to see you go!


# 5115f7c63239728efa80bfc3b7f5a89dbc15bbb7 28-Dec-2013 François Revol <revol@free.fr>

Revert "Mention getconf in FreeBSD sections in the credits."

This reverts commit d86dbc8a89dca0156b483e6643f3652055e6f01e.


# d86dbc8a89dca0156b483e6643f3652055e6f01e 27-Dec-2013 François Revol <revol@free.fr>

Mention getconf in FreeBSD sections in the credits.


# 1bc7045fdfb85e6151d01c73669be19627c4783b 15-Dec-2013 Pawel Dziepak <pdziepak@quarnos.org>

kernel, libroot: Introduce new API for obtaining system info


# 38fa81bf8f0ccc37a615a9f5bd333f9b781322b3 03-Oct-2013 Ingo Weinhold <ingo_weinhold@gmx.de>

Remove B_COMMON*_DIRECTORY and kCommon*Directory constants

* This does intentionally break source compatibility, so that a review
of concerned code is forced.
* Binary compatibility should be maintained in most cases. The values
of the constants for the writable directories are now used for the
writable system directories. The values for the non-writable
directories are mapped to "/boot/system/data/empty/...", an empty or
non-existent directory, so that they will simply be skipped in search
paths. Only code that explicitly expects to find something in a
B_COMMON_* directory, will fail.


# 1f67610d5a36910a65ece3eb4ae4091e7a8ffd37 02-Aug-2013 Rene Gollent <anevilyak@gmail.com>

Move Alex Smith to active maintainers list.


# 055118de8852bba94c28c5398348a35bdf8313b3 01-Aug-2013 Rene Gollent <anevilyak@gmail.com>

AboutSystem: Move Pawel Dziepak to active maintainers list.


# e5de7e2102c59d0f6464378522d46dab0bb3f5b2 23-Jan-2013 John Scipione <jscipione@gmail.com>

Added Landon Fuller to the contributors list.

He has made several contributions including hrev45148 and hrev44909.


# 2ede175119bbd0fd38bf8268781a9a4be192c5c6 02-Dec-2012 Siarzhuk Zharski <zharik@gmx.li>

Small refactoring of Expander and AboutSystem GCI patches.

* Fix excessive snprintf in SystemAbout kernel build date/time;
* Create destination folder message adjusted with HIG requirements;

Thanks for pointing out, Landon Fuller and Pulkomandy.


# 2b754fc1fabdb3dd09a5ad9ca04dfcdfe892b3d8 02-Dec-2012 Przemysław Buczkowski <przemub@yahoo.pl>

Localize Kernel build date/time. Fixes #9230.

This task was completed during GCI 2012

Signed-off-by: Siarzhuk Zharski <zharik@gmx.li>


# 9815f07dce9ca0d0ec087dde46af7dbe6853b1dc 12-Oct-2012 Matt Madia <mattmadia@gmail.com>

Added jprostko as a maintainer.


# df840270bd4cb1ade4c272d7fe0c4c77661e87e8 03-Oct-2012 Ryan Leavengood <leavengood@gmail.com>

Add Prasad Joshi to the contributors list.


# 9af3b8357592d97fbe2b01f6f0cbee8d4eade538 02-Oct-2012 Humdinger <humdingerb@gmail.com>

Added Hungarian translators Róbert Dancsó and Zsolt Bicsk.
Thanks guys!
+alpha4


# e8c6eee0ca397be5c4315d95d383835773a60106 29-Sep-2012 Humdinger <humdingerb@gmail.com>

Added Brazilian translators. Thanks guys!
(+alpha4)


# f6d33da6a43734cfd70760d9de9c74e02016cb96 05-Sep-2012 Humdinger <humdingerb@gmail.com>

Small corrections to AboutSystem.

Thanks Rene.


# ae7bcbaa122ab5f299b42b137720f73ec1d54a7a 05-Sep-2012 Humdinger <humdingerb@gmail.com>

Updated the list of contributers.

Added people to the list contributers.
Moved people to the list of past maintainers.
Added GCI to our Google thanks.


# 5084d0d451501f3c026d593dc109cbb76d7688fc 10-Aug-2012 Alex Smith <alex@alex-smith.me.uk>

Added more things to x86_64 image.

Some preference apps, mount_server and AboutSystem. Removed the check
for x86_64 in the boot script, the normal path through the script will
work now. Also removed a temporary hack to workaround AboutSystem not
being there in build_haiku_image.


# db744fca35a90986d1c3d061a5b81a803ffa7170 30-Jun-2012 Michael Lotz <mmlr@mlotz.ch>

Add libqrencode credits to AboutSystem.


# 546208a53940a26c6379c48a7854ade1a8250fc5 16-Apr-2012 Oliver Tappe <zooey@hirschkaefer.de>

More catalog-related cleanup.

* rename B_TRANSLATE_CONTEXT to B_TRANSLATION_CONTEXT and
B_TRANSLATE_WITH_CONTEXT to B_TRANSLATE_CONTEXT, squashing a TODO
* adjust all uses of both macros in Haiku's source tree
* use correct header guard for collecting/Catalog.h

The renamed macros require adjustments to all external applications
using catalogs.


# 541ff51a6ef4c47f8ab105ba6ff895cdbba83aca 15-Apr-2012 Oliver Tappe <zooey@hirschkaefer.de>

Cleanup BCatalogAddOn.

* rename BCatalogAddOn to BCatalogData, since it doesn't represent an
add-on, but rather the catalog data provided by an add-on
* move BCatalogData out of Catalog.{h,cpp} into its own header and
implementation file
* drop BCatalogData::MarkForTranslation() methods, they're not needed
* drop BCatalog::GetNoAutoCollectString() methods, they're not being
used anywhere
* cleanup the B_TRANSLATE_... macros somewhat
* add versions of the B_TRANSLATE_MARK_... macros that are meant to be
used in void context (when the string isn't being used by the program,
just meant to be picked up by collectcatkeys).
* adjust several apps to use B_TRANSLATE_MARK_..._VOID where needed
* adjust users of BCatalogAddOn accordingly


# c2060a1f34940c8fe5296330bf0f0442dd8d1f20 28-Feb-2012 Humdinger <humdingerb@gmail.com>

Added more translators, mostly GCI students.


# bfb639d98a0863e82217233fafbd53cac55132db 01-Feb-2012 Humdinger <humdingerb@gmail.com>

Added GCI students that worked on Japanese translations.


# 9d214eb1844679b582df4dec45007695597b17ac 30-Jan-2012 Matt Madia <mattmadia@gmail.com>

Fixed a typo in the copyright. Spotted by Rene. Thanks!


# db65804d14a68917814c37f016fe41471a0f17ba 30-Jan-2012 Matt Madia <mattmadia@gmail.com>

Updated VLGothic fonts to version 20120130. Fixes #7598.


# 414dacd2f549e4bf22423be152d385e7b524deb9 15-Jan-2012 Siarzhuk Zharski <zharik@gmx.li>

Some GCI2011 Students added into the Credits

* Aleksas Pantechovskis added into contributors list for his work on
setmime and writembr tools, and many patches provided for Mail
application during completing about 12 GCI tasks;
* Peter Poláčik added into contributors list for his work on adding
localization support into Jamfile engine and documenting
using of makefile/jamfile engines;
* Mariya Pilipchuk added into translators list for her work on Ukrainian
translation;

Thank you for the contribution!


# dc6929d81771ed7a65f7c1f03f35a0eb0ab15a47 14-Jan-2012 Humdinger <humdingerb@gmail.com>

Sorted language blocks, re-formatted names, added translators.

* Sorted translation language blocks alphabetically

* Re-formatted peoples names as discussed in thread
http://www.freelists.org/post/haiku-development/Nonlatin-names-in-AboutSystem
-> "localized name (transliterated name) - optional nickname"

* Added Giannis Konstantinidis, Vaggelis Mamalakis and Alex-P. Natsios
as Greek translators


# 286ffc48c3572d8b6956679512c61cfae1d6a6fe 07-Jan-2012 Humdinger <humdingerb@gmail.com>

Added Hungarian translators Kálmán Kéménczy and Bence Nagy


# feaa1474427be4c0c6f9be68d8b5882a0046d137 29-Dec-2011 Humdinger <humdingerb@gmail.com>

Added GCI student Harsh Vardhan as French translator.


# e0821f1d7313c5116bf23bb8d2d03fad330a6b97 22-Dec-2011 Alex Wilson <yourpalal2@gmail.com>

Add Hannah Boneß to the AboutSystem contributors list.


# 4ff849cdbd9396a9a185b669febc17d33047753d 16-Dec-2011 Humdinger <humdingerb@gmail.com>

Added Dragos Serban as Romanian translator.


# 0a1ac2bfd8e3e66ddd39982a997174245638348e 07-Dec-2011 Humdinger <humdingerb@gmail.com>

Added Nikola Miljković as Serbian translator.


# f990399943b372ab46f4d9623ec0808d4e2ed8ea 03-Dec-2011 Humdinger <humdingerb@gmail.com>

Added Rimas and Simonas as Lithuanian translators. Thanks guys.


# 087f8961c03870caf67981b3107f58fcf803c983 29-Nov-2011 Humdinger <humdingerb@gmail.com>

Added Croatian translators Zlatko Sehanović and Ivica Koli


# 1f92d747ef5cf73a75661413b06529f9c5570da9 25-Nov-2011 Humdinger <humdingerb@gmail.com>

Removed duplicate license for GLU. Thanks Rimas.


# d64437e6a9fa87011f246e4ae9f4e6ababc3affa 30-Oct-2011 Matt Madia <mattmadia@gmail.com>

Removed some TODO for licenses and url's.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@43008 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7bc85684918f9cdfeaf53d3d2f26ef8c79954b3a 30-Oct-2011 Fredrik Holmqvist <fredrik.holmqvist@gmail.com>

John Scipione has moved from a contributor to a maintainer.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42992 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a481c815c1af2589b15d2a1e378c49ccd8e967d4 29-Oct-2011 Rene Gollent <anevilyak@gmail.com>

Apply patch by Taos which adds hyperlink for LGPL license (#7907). Thanks!



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42956 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b6ac45afd279c2148c46c66da6766a8807d9c6e8 09-Aug-2011 Matt Madia <mattmadia@gmail.com>

Updated (TM) to (R). No functional change.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42614 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 01123cf9ed2cdd931e7d5210cbe58692874acfd8 01-Aug-2011 Joachim Seemer <humdingerb@googlemail.com>

Switched to a B_TRANSLATE_COMMENT because it's nt obvious that %MIT license% isn't a variable and has to be translated.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42531 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f148b5ee0415b48a855f64c2a24cd4741c4358f2 30-Jul-2011 Joachim Seemer <humdingerb@googlemail.com>

Applied taos patch to fix the MIT license link. We'll see if it finally nailed the bugger when the translated catkeys arrive. Preliminarily fixes #7697. Thanks a lot.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42514 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 42a6ef881dce6c1713878d8b5f25f552bdb1a63b 29-Jul-2011 Jérôme Duval <korli@users.berlios.de>

Add Jian Jiang to the contributors list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42512 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3dfd9cb95ce45f59160d50975210bc55e3fc0709 16-Jun-2011 Oliver Tappe <zooey@hirschkaefer.de>

Flat commit of all changes from package-management branch in svn


# 95009aeeb07fa52326b41fb61963185a1d1f6042 13-Jul-2011 Axel Dörfler <axeld@pinc-software.de>

* Imported Andy Ritger's GTF code in compute_display_timing.cpp, and mangled it
into a usable function - this has some coding style issues I did not care to
fix.
* _AddBaseMode() now computes the mode in case it is not present in the list
yet.
* This should help with bug #7787.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42420 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a4dcbd0004350559f7b4dc65e2bfd00bc90db56b 02-Jul-2011 Rene Gollent <anevilyak@gmail.com>

Add Brian Luft to the contributors list.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42364 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4bcb62ee96db4dcb5a18fb66d9ab2b055dea6aeb 11-Jun-2011 anevilyak <anevilyak@a95241bf-73f2-0310-859d-f6bbb57e9c96>

Applied patch by Jean-Loïc Charroud that reworks the anyboot MBR to fix boot
problems on various systems. Resolves #3441. Thanks!

+alpha3



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42104 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 22a7fe9695a6685994f516857f10a3e0efaf15c7 15-May-2011 Oliver Tappe <zooey@hirschkaefer.de>

Cleanup system-revision stuff.
* move system_revision.h to headers/private/libroot
* unify libroot's get_system_revision() (the one I introduced recently) with kernel's
get_haiku_revision(), the function is now called get_haiku_revision() in the kernel
and __get_haiku_revision() in libroot
* system_revision.c is now being built as part of libroot and as part of the kernel
* adjusted all callers of get_system_revision() accordingly


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41516 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b113e735bb99909a8332ba750a1cab53b0c2966d 14-May-2011 Alexander von Gluck IV <kallisti5@unixzen.com>

place myself in proper section, thanks for letting me know AnEvilYak

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41495 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ffea7c6e23e75e7a2994d2e0910b6c8cfc722621 14-May-2011 Alexander von Gluck IV <kallisti5@unixzen.com>

adding myself to about window contributors section before A3, if this is the wrong section please let me know via the ML

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41494 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 9160cdc2976adcdee872ccaaaf437dc3c706b88e 13-May-2011 Oliver Tappe <zooey@hirschkaefer.de>

* adjust AboutSystem to fetch the system revision via
get_system_revision() instead of parsing it from utsname

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41480 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 082f2abce15611d2437d73b0cd04657d06bc3ffb 04-May-2011 Joachim Seemer <humdingerb@googlemail.com>

User taos found another unneeded comma and enforced 80 chars/line on two occasions. Thanks.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41317 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8d9e29a558550c954543508d6e1d061724a99992 29-Apr-2011 Joachim Seemer <humdingerb@googlemail.com>

User taos made the copyrights entries a bit more consistent, e.g. endings with full stops, using single spaces, removing unneeded spaces, shortening year ranges. That sort of thing. Thanks taos.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41293 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3c613df4ef3c2918826940605c07eb2e08a4f455 12-Apr-2011 Matt Madia <mattmadia@gmail.com>

Updated (R) to be B_UTF8_.* Added (TM) as well. thanks phoudoin!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41245 a95241bf-73f2-0310-859d-f6bbb57e9c96


# cfbbba0820278ee27ffaca8deb862ecc62805b29 11-Apr-2011 Matt Madia <mattmadia@gmail.com>

Another update relating to the USPTO registration of the HAIKU logo.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41241 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 329daa448d02cf0f291a45f61a2e16c1b87834ea 04-Apr-2011 Joachim Seemer <humdingerb@googlemail.com>

Changed a few strings as discussed on the i18n mailing list. Added localization of license descriptions in AboutSystem.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41184 a95241bf-73f2-0310-859d-f6bbb57e9c96


# d05e1481da78ab349ce9760d2b9b465da7b0bb92 26-Mar-2011 François Revol <revol@free.fr>

Colorize "BeOS" in the credits, oh, nostalgia... (shouldn't it say "the BeOS" btw?)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41110 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b552b728d8b37f0f316cbaddbc46ffe1fd99c6d9 25-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Crediting Takashi Murai and Kazuho Okui as contributors, for MuTerminal, from which the present Terminal was developed.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41107 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 560ff4478d5c85455ea3e5ed5e392ef93132d545 25-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Use resource definition files instead of DoCatalogs rule. Rename B_TRANSLATE_APP_NAME and related macros to the more generic B_TRANSLATE_SYSTEM_NAME, to also fits add-ons, folders, etc, and make 'System name' its standard context. Change CodyCam and PoorMan's app signatures to match the overall x-vnd.Haiku-App pattern. Some clean-up. Make SlideShowSaver build again.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41103 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 6e5ffd78c68528474e748c33ec73e14b8af70d20 24-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Farewell, Be logo, and thanks for all the bits! Credit Be Inc in AboutSystem.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41096 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 47798a10f7838631d031aabb0078bf66d011cfbd 13-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Localization changes. Stop using AddCatalogEntryAttribute rule in Jamfiles.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40945 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 463c0d1e8defb061b95922191baa8a26ddee0810 08-Mar-2011 Philippe Houdoin <philippe.houdoin@gmail.com>

Upgrade to latest libwebp.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40868 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 10444a436482ab1bfbe62ec05f131e855c6e829b 26-Feb-2011 Jonas Sundström <jonas@kirilla.com>

CID 8952 STRING_OVERFLOW
CID 6753 SECURE_CODING
CID 3299 MISSING_BREAK

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40716 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 19b0b28182f84edeacc0a4900c19030050f21e8d 26-Feb-2011 Jonas Sundström <jonas@kirilla.com>

Crediting also myself and Patrik Gissberg for translation to Swedish.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40715 a95241bf-73f2-0310-859d-f6bbb57e9c96


# aea362af0c9b13a16cb38d9f4bdbffb7424503fe 21-Feb-2011 Jonas Sundström <jonas@kirilla.com>

Crediting Michael Davidson, Mikael Eiman and Pier Luigi Fiorini for the notification server.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40608 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b6d49092c714593e70937056ae767e1fd165a2b0 12-Feb-2011 Joachim Seemer <humdingerb@googlemail.com>

Committing all German catalogs. Thanks to all translators, esp. Mirko Israel who helped filling in the gaps and making everything as consistent as possible. Any mistakes or improvements are very welcome at the haiku-i18n-de mailing list.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40458 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 90a81ace916b10779ad1f7709db35bd0e90cdf15 21-Jan-2011 Philippe Houdoin <philippe.houdoin@gmail.com>

Add Sean "jalopeura" Healy to contributors list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40260 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b5a719f08e0973c88731df5a49e97cdd7109c6bf 10-Jan-2011 Joachim Seemer <humdingerb@googlemail.com>

Added even more translators.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40191 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 27997edca9d48b3d65037f8d672d86ec1564fed2 09-Jan-2011 Siarzhuk Zharski <zharik@gmx.li>

1) Add Google Code-In student Michael Bulash into:
- list of translators for his work on complete Belarusian translation;
- list of contributors for his work on internationalization of LaunchBox,
PowerStatus and ProcessController applications and following preflets:
DataTranslations, E-Mail, Notifications, Screen, ScreenSaver, Time.
2) Corrected the name of Russian translator Rodastahm Islamov on his request.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40185 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 89c389ebcb1ba743fd5238df8b9365c57320a98e 05-Jan-2011 Joachim Seemer <humdingerb@googlemail.com>

Added more translators, mostly GCI students, to Haiku's About window.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40124 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 6186bb446403ab9ae50a1a8b8ebb60722bcd0ad9 03-Jan-2011 Ryan Leavengood <leavengood@gmail.com>

Add Geoffry Song and Deyan Genovski to the Contributors in AboutSystem.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40099 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3a0ecaabad8c6f9e2b0d8e83f12a1a3418eda1ad 01-Jan-2011 Ryan Leavengood <leavengood@gmail.com>

Add Hamish Morrison to the Contributors list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40063 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0c58e90caae70372a1244dd985184c5f099ae61c 01-Jan-2011 Joachim Seemer <humdingerb@googlemail.com>

Apparently I have to relearn the alphabet... hi before hu... Sorry.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40050 a95241bf-73f2-0310-859d-f6bbb57e9c96


# c621662845c2a885101a5fd7bdd8b07902e342d7 01-Jan-2011 Joachim Seemer <humdingerb@googlemail.com>

Added GCI students/mentor Abhishek Arora, Jayneil Dalal, Atharva Lath for Hindi localization.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40049 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 25dc253d6ab28ce204fa4de2d3e7a27d167fc817 22-Nov-2010 Ingo Weinhold <ingo_weinhold@gmx.de>

* Merged weak-symbols branch.
* Fixed trivial merge conflict in src/system/libroot/posix/locale/nl_langinfo.cpp
* Fixed gcc 2 compilation of src/system/glue/init_term_dyn.c.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39571 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5a2f51f20e29d34bd6e96bca4c0752875675e8db 19-Nov-2010 Philippe Houdoin <philippe.houdoin@gmail.com>

Added WebPTranslator to Haiku image, with due credits in AboutSystem.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39516 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f316c81731f0970f5756ad732553785c2d87d431 02-Nov-2010 Matt Madia <mattmadia@gmail.com>

Moved it to the "Contributors" section, which also lists all the former
contributors.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39272 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 6e268ab2d3432eecb0ef1093ebb25cd18fcf3249 01-Nov-2010 Matt Madia <mattmadia@gmail.com>

Jorge G. Mare aka Koki is no longer a contributing member.
See http://www.freelists.org/post/haiku-development/Banning-Jorge-G-Mare
for more information.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39270 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 88a3ad40f8c5b50696e1f4b6b9ddc766c57e9418 01-Nov-2010 Matt Madia <mattmadia@gmail.com>

Tweaked Gutenprint's PackageCredit to list GNU GPL v2
Note: .SetLicense() needs a filename from HAIKU_TOP data system data licenses.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39265 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 018242ded4341a3b370f2566931465213d48c306 01-Nov-2010 Michael Pfeiffer <michael.w.pfeiffer@gmail.com>

* Added preliminary credits for Gutenprint.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39257 a95241bf-73f2-0310-859d-f6bbb57e9c96


# bea74c09118ef602d8c316c7d25ce69967f69ab5 31-Oct-2010 François Revol <revol@free.fr>

Cleanup test code. Use a message and run the easter egg from MessageReceived(). USe find_directory() to find the fortune file.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39241 a95241bf-73f2-0310-859d-f6bbb57e9c96


# d1d8fda63745350804d76b4ed160732086fa9655 19-Oct-2010 Oliver Tappe <zooey@hirschkaefer.de>

Next step of Locale Kit refactoring:
* BLocale now keeps language and country completely separate and
mixes the formatting conventions into the current language's locale
when formatting dates and times (needs to be done for number- and
currency-formatting, too, since the digits may not be in the
preferred language)
* optimized fetching of the flag icons such that they are all loaded
in one go (by the locale roster) - this alone speeds up the Locale
preflet considerably
* worked on fixing the language confusion in the Locale preflet
* fixed a couple of bugs in the Locale preflet that would lead to
illegal characters being displayed in the date-subpart menus


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39013 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7e169844fcd6299acd3d819860b97b7df57ff421 18-Sep-2010 Matt Madia <mattmadia@gmail.com>

Removed extra blank line in the 'Special thanks to:' section


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38713 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 19b7ba00f639984af6c04d4a928d406e08d415f0 17-Sep-2010 Matt Madia <mattmadia@gmail.com>

Added the University of Auckland and Christof Lutteroth to the 'Special thanks'
section of AboutSystem, for their efforts in developing and bringing Stack and
Tile to Haiku. Thank you!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38693 a95241bf-73f2-0310-859d-f6bbb57e9c96


# da81ea91d70295d54a8f983bc9ce2730b60c3dfd 04-Sep-2010 Alex Wilson <yourpalal2@gmail.com>

patch by 'jstreessman' fixing regressions in AboutSystem and InstallerWindow from r38512, thanks!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38526 a95241bf-73f2-0310-859d-f6bbb57e9c96


# eb55a19acfbdea2a44ba42596e7f9aae709d0e20 03-Sep-2010 Alex Wilson <yourpalal2@gmail.com>

Fix regression in AboutSystem from r38512, expected spacing to be 0, so this is now requested explicitly.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38520 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b7f609650b9864f5f93ee235c1a095970f9df525 30-Aug-2010 Oliver Tappe <zooey@hirschkaefer.de>

* removed all BLocale-related getters from BLocaleRoster - they're available
in BLocale (which is accessible via be_locale)
* adjusted all users accordingly


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38459 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 303269dc2280ca25750b877cfc9947476aa26d01 25-Aug-2010 Axel Dörfler <axeld@pinc-software.de>

* Hide the "GCC 2 Hybrid" string since this is the default - only deviations
from the default are shown now.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38367 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1d6c7b6cb6f46c2672074ff137a18833d4dd3041 17-Aug-2010 Alex Wilson <yourpalal2@gmail.com>

Big change deriving BLayout from BLayoutItem, and allowing viewless BLayouts.
a few highlights:
* BLayout now derives publicly from BLayoutItem
* Added BAbstractLayout class, which our layouts now derive from
* updated layout builders to avoid creating views when they don't need to
* updated layout classes
* updated AboutSystem to fix a little regression
* more details on #6407
* please tell me about any regressions, I've tried to find them all, but some
may have slipped by.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38207 a95241bf-73f2-0310-859d-f6bbb57e9c96


# def864c05dd5518c1c13e7d9e0da5e04d696b4aa 15-Aug-2010 François Revol <revol@free.fr>

Fix some blatantly missing uses of ui_color(), but there is a lot of work to do here... BControlLook itself doesn't even respect those correctly either...


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38121 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 80c8ad4b4926ddf77cf73c8f8b228a9bdf0c60a1 11-Aug-2010 Joachim Seemer <humdingerb@googlemail.com>

Added Michael Vinícius de Oliveira (michaelvo) as contributer to Portuguese localization. Thanks.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38030 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3cf37a1a0973417839ac8e561fc7b81bddaddbb5 11-Aug-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

CID 2001 : be_locale_roster->GetLanguage may fail.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38027 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 456d57afb2714310b5507fd3d02b3c5cfc302276 07-Aug-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* be_locale_roster->GetLanguage may fail. Fixes CID 2002.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37952 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5c3a30348613821de032e50f1633e47dc732651f 04-Aug-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* Move the locale-related stuff away from BCountry to BLocale.
* Remove the be_locale global object and go through the be_locale_roster instead
* Rework the storage of data for the be_locale_roster, since BLocale already holds a BCountry and a BLanguage.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37907 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 38ac8def5a72de58d6ae4e82d8c4a6be1021e67e 01-Aug-2010 Oliver Tappe <zooey@hirschkaefer.de>

Largish cleanup sweep concerning the Locale Kit (sorry it got so big):
* refactored private/mutable stuff out of LocaleRoster into MutableLocaleRoster
* moved management of Locale/Time settings file and broadcasting of any changes
out of preflets and into MutableLocaleRoster
* added proper sorting to the listviews of the Locale preflet
* the Time preflet no longer overlaps long timezone names into the actual time
* several fixes with respect to leaking ICU objects, esp. in BCountry
* the locale roster no longer passes out references to its own BCountry object,
but uses copies, instead - this makes locking superfluous, as the clients'
BCountry objects can no longer be changed by the setting a new default
country in the locale roster
* removed pretty useless POSIX-style symbol fetching from BCountry - if we
need that at all, it should live in the dedicated formatter classes
* adjusted readonlybootprompt, dstcheck and Deskbar to the changed Locale API
* refactored existing Time-formatter into TimeUnitFormat and DurationFormat
(the latter of which is now used by AboutSystem)
* added stubs for Date, DateTime and Time formatters
* lots of coding style fixes throughout the Locale Kit and the Locale and Time
preflets
This will probably break most external apps making use of the Locale Kit - it
does break WebPositive.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37831 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8a87043c4bddd1510ed3e6688d5e6383a5e2e8c9 27-Jul-2010 Philippe Houdoin <philippe.houdoin@gmail.com>

Fixed a typo spotted by dru345 on #haiku

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37774 a95241bf-73f2-0310-859d-f6bbb57e9c96


# d66fde128b38604c014b36d571a765accdbc0697 25-Jul-2010 Rene Gollent <anevilyak@gmail.com>

Moved Alex Wilson to current maintainers list.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37749 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 2873f50a4088276d22802ea6b8070fa6a9603a50 25-Jul-2010 Matt Madia <mattmadia@gmail.com>

Utilize HAIKU_DISTRO_COMPATIBILITY and HAIKU_OFFICIAL_RELEASE for choosing
which graphic to display in AboutSystem and Installer.

When 'official' and 'HAIKU_OFFICIAL_RELEASE', the 'release' logo -- eg, alpha 2
will be used. When 'HAIKU_OFFICIAL_RELEASE' is not defined, the 'development'
logo will be used.

When 'default' or 'compatible', no graphic will display. Their appearance
does degrade somewhat gracefully, though InstallerWindow.cpp may need an
adjustment to better set fStatusView->SetExplicitMinSize()

Relates to #6183.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37741 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b198a5f210fb0253e5a80276d2e94564a5cfc177 22-Jul-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* Fix unpractical translation string in AboutSystem.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37693 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 74baa1d7f18b426b6d6b43a7b7a16a37b769a366 21-Jul-2010 Joachim Seemer <humdingerb@googlemail.com>

Added Pengfei Han (kurain) for the Chinese translation. Thanks.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37665 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 403859d79f9555b3a140390947ec15618a3a5092 21-Jul-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* Fix a string that was unpractical and confusing for translations.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37657 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ce0077c3cbb0b2544bbbe488f325100e39c5b019 20-Jul-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* Following the outsourcing ofICU as an optional package, it was listed twice in AboutSystem. Thanks to RQ for noticing !


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37618 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0462f585c2e84b5c10ef076d2bf82328e37e7bc5 20-Jul-2010 Joachim Seemer <humdingerb@googlemail.com>

Added Vasco Costa (gluon) to our list of translators (Portuguese). Thanks gluon.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37611 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b37fa18bdb610c1ce142106448ba0b5378a446d2 08-Jul-2010 Philippe Houdoin <philippe.houdoin@gmail.com>

Fixed Size() and BytesRemaining() semantics, which was broken.
Revert r33437, which was missing the root cause.
Spotted by Christophe Huriaux, thanks.
And welcome in contributors list!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37437 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 05b7485e36985324586929be32ba9c5c10521574 04-Jul-2010 Rene Gollent <anevilyak@gmail.com>

Moved Wim to the active maintainer list.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37397 a95241bf-73f2-0310-859d-f6bbb57e9c96


# be8fa2fb3088ab1921612b60f352dd9334b40b3d 02-Jul-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* Update all applications in tree to use the new localizing system
* Remove the old one from the locale librairy, with some cleanup
Known regressions :
* readonlybootprompt will no longer update the locale settings : the
method used messed with internal undocumented things
* external localized apps (webpositive for example) will not run
anymore.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37336 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 16023f51f8e21c29b1ae2d0ef416446833a24d1c 19-Jun-2010 Wim van der Meer <wpjvandermeer@gmail.com>

* Report inaccessible memory
* Use IEC binary prefixes


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37182 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 46f84134a9f118a131af9fc1aadc293f8312aa86 11-Jun-2010 Wim van der Meer <wpjvandermeer@gmail.com>

Use B_PAGE_SIZE for calculating memory size in the AboutSystem app.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37097 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 80fa1a19535b4a2f2f7693ef4f681e254a3102a9 18-May-2010 Joachim Seemer <humdingerb@googlemail.com>

Corrected Hironori Ichimiya's name and reordered contributers alphabetically.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36857 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8cbf8a521beea9769fbf9e4f6a0338d591be1425 08-May-2010 Joachim Seemer <humdingerb@googlemail.com>

Added Brian Matzon as our Danish Dynamite translator. Thanks luroh for testing. +alpha2

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36736 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4eb0cbb044cf538f18c0d252934a5bcaa33bfd34 07-May-2010 Matt Madia <mattmadia@gmail.com>

Updated TR_CONTEXT to be B_TRANSLATE_CONTEXT, relating to #5408.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36733 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b588e644eefae6512f148f79d2e932b3ab204e69 07-May-2010 Axel Dörfler <axeld@pinc-software.de>

* Changed AboutSystem to only show the translated language names.
* Added the same hack to ReadOnlyBootPrompt that I put into Locale to
work-around the missing font overlays in the app_server; IOW we use some
heuristics to decide which language to show.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36730 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 9cafc5db2ba8bf04be41be5b37f7a8b682f12ed4 07-May-2010 Ithamar R. Adema <ithamar.adema@team-embedded.nl>

* Fix build after Axel commited his locale changes in r36727

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36728 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 48e6f7c0382bac14df702a35a56b54446f3c5094 07-May-2010 Joachim Seemer <humdingerb@googlemail.com>

Added Satoshi Eguchi, the Japanese translation manager. +alpha2

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36724 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4e689749d8d62e6a58a85f609ab27f437ca81b86 06-May-2010 Matt Madia <mattmadia@gmail.com>

Updated to use B_TRANSLATE* macros. relates to #5408.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36662 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f60438dea7925747dfe355a50c9093a3d34d8892 01-May-2010 Joachim Seemer <humdingerb@googlemail.com>

Spanish translator César Ortiz Pantoja (ccortiz). +alpha2

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36566 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 09552695d715f8bb594509d3d4723c590a042fb0 30-Apr-2010 Matt Madia <mattmadia@gmail.com>

Added "Haiku and the Haiku logo are trademarks of Haiku, Inc."


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36563 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5cbd53f648f3375590162406ba8ba9964f0eed60 30-Apr-2010 Matt Madia <mattmadia@gmail.com>

Unified the spelling of licence/license.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36562 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 55538d2844637358908a731e9d3cbb62c32bd595 25-Apr-2010 Stephan Aßmus <superstippi@gmx.de>

Added a few people to the contributors list who's patches have recently been
landed. Thanks a bunch! If I have forgotten anyone, please do bring it to my
attention! :-)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36467 a95241bf-73f2-0310-859d-f6bbb57e9c96


# c966de06461b328dc67d43be1535cc20acf836f7 22-Apr-2010 Matt Madia <mattmadia@gmail.com>

Changed the behavior to always display the GCC. Extended it to report "Hybrid"
as needed. "Hybrid" is a new string for localization.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36419 a95241bf-73f2-0310-859d-f6bbb57e9c96


# de202917dc2a31c009c3d8920a279b2864b3d078 12-Apr-2010 Matt Madia <mattmadia@gmail.com>

moved myself to the active contributors list.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36194 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ef38ad68219f59ef6fa52da631e7c0d713d4b5e7 11-Apr-2010 Matt Madia <mattmadia@gmail.com>

Adding Jorma Karvonen (Karvjorm) for his Finnish translations.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36143 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 26d79d37f95c73c119ab0a7653bb12f69698f2c0 11-Apr-2010 Matt Madia <mattmadia@gmail.com>

Renamed the variant MIT license & updated AboutSystem accordingly.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36141 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 6e83f0eda4275603c2760375453dcc7ecb24e46c 09-Apr-2010 Matt Madia <mattmadia@gmail.com>

Added licenses & updated AboutSystem for BRegion backend.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36101 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a7547a1c303cea807159159b3b50c1773e84871d 09-Apr-2010 Matt Madia <mattmadia@gmail.com>

Added a new license: MIT with an advertising clause. This is mentioned on
http://en.wikipedia.org/wiki/MIT_License#Modified_versions_of_the_license
Updated AboutSystem to utilize them for libxml2, libxslt, & libexslt.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36100 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 61fd0c7f9732bce430f070a0b685af711366a457 08-Apr-2010 Matt Madia <mattmadia@gmail.com>

slight rewording.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36086 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 444b1d4e985a5e1cb0ba88bf5500f17b094eb082 08-Apr-2010 Matt Madia <mattmadia@gmail.com>

Acknowledge Google & their Google Summer of Code program. Thank you!
Fixes #5663.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36085 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ba8573cc3f5ea9f8b6f71a8db9612f8286b94083 31-Mar-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Update japanese translation credits.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36015 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3fed6ef6ccc760312f227aec1bd5f1c0d67f6df8 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Added plain text version of PDFlib-Lite-license.pdf
* Updated AboutSystem to utilize it


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36004 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0a38fb8dfcdd11ddc75a18c2ceda61a935735b5f 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Added FTL aka FreeType Project License & updated AboutSystem to use it
* Fixed the note for pdflib, we are indeed using PDFlib-Lite
* Set atftp to GPL v2


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36003 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 063bb8051e50d0fe0b74574db5de19d1a9ce9698 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Added LibJPEG license file, updated AboutSystem
* Added a note for BRegion backend's license
* These are the last planned license related commits
* There's a few notes for ones that are uncertain


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36001 a95241bf-73f2-0310-859d-f6bbb57e9c96


# bf2e237144b82aff08f9dc5c7c0d45362ec84272 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Added UnRAR, Intel (ACPICA), & LibPNG licenses
* Updated AboutSystem to utilize them
* Added a note, netcat allows us to choose the license


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36000 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 9e1eee901e21168fb008d2206bb16ffffb0f9a44 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Added license files for Bullet, Info-ZIP
* Updated AboutSytem for Bullet, Info-ZIP, bzip2, & OpenEXR
* VIM was removed in r35848, updated AboutSystem to reflect this


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35998 a95241bf-73f2-0310-859d-f6bbb57e9c96


# bbf48291afdbf331f957b174348f5255e21721dd 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

Added licenses for expat, zlib. Updated AboutSystem for Mesa, expat, & zlib.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35997 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 58aaef72e0a58a0c989ecda512ce918188c396f5 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Added license files for GLU & GLUT
* Updated AboutSystem to reference new licenses
* information based on http://www.mesa3d.org/license.html


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35996 a95241bf-73f2-0310-859d-f6bbb57e9c96


# c98bab29e9b39d78a5b8f47613cfbf6bb4075523 29-Mar-2010 Matt Madia <mattmadia@gmail.com>

Fixed some licensing mistakes from over the weekend. Mistakenly grouped cortex,
xiph, and tcpdump with mkdepend's license.
* Re-added MkDepend as a license
* Removed BSD (Alternate 3-clause)
* Modified BSD licenses to match http://en.wikipedia.org/wiki/BSD_license


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35995 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 880a657a4e20f926d07a463a69fd7bbeab33ee85 28-Mar-2010 Matt Madia <mattmadia@gmail.com>

Updated some more licenses. Added a note about Freetype, which allows us to
choose either the FTL or GPL. Added a note about PDFLib, whose license file
is a pdf and lists some additional requirements for binary redistribution.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35984 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0ba335bc999195073023068b8a2dab0336af6826 27-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Replaced MkDepend license file with a more generic BSD (Alternate 3-clause)
* Updated several program's license & URL
* Added a note about libxml2, libxslt, libexslt


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35980 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b5489c54b0e76aaaa46cdaa81be28e9bab6b4cb7 27-Mar-2010 Matt Madia <mattmadia@gmail.com>

* Added licenses for CQuantizer, MAPM.
* Updated AboutSystem to use them
* Removed trailing '/' from MkDepend's .SetURL


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35975 a95241bf-73f2-0310-859d-f6bbb57e9c96


# c0d9055b31014fffcef5cce2964b170b2ef4a34d 27-Mar-2010 Matt Madia <mattmadia@gmail.com>

Changed the URL for MkDepend to not display the .html, similar to MAPM.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35973 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3118ddd887c430ec6632a30cf99a6b40616eb02d 27-Mar-2010 Matt Madia <mattmadia@gmail.com>

Added license for MkDepend

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35972 a95241bf-73f2-0310-859d-f6bbb57e9c96


# fed5b83cfb3963fe13f7871f672db978396612df 27-Mar-2010 Michael Pfeiffer <michael.w.pfeiffer@gmail.com>

Sort languages alphabetically using collators.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35969 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 103376b374b4ea8b01a2bce00f2955bbda825f0f 27-Mar-2010 Michael Pfeiffer <michael.w.pfeiffer@gmail.com>

Moved translators into a table. Avoids code duplication and should make
the implementation of the open TODO (sort languages alphabetically using
collators) easy.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35968 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 9ba3482a1d395f43ef960ba85f4012787a3618c3 22-Mar-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Add credits for the japanese translation in AboutSystem.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35933 a95241bf-73f2-0310-859d-f6bbb57e9c96


# e702f59016e4efef805bcd5345f69a109699fa92 22-Mar-2010 Matt Madia <mattmadia@gmail.com>

Removed the comments regarding wifi copyrights. Now that the information is
recorded as part of the revision history, they can be removed.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35931 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f237e4182b933878d74a6cff693fb4229f99c404 15-Mar-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* Fix a small bug in BLanguage::GetName
* Use BLanguage in AboutSystem to get the names of the languages in the credit list, no need to add useless work for the translators
* Add some contributors to the credits for japanese translation


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35864 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 14f88b34125d74a2e24be67c3a26d0ea37079459 13-Mar-2010 Joachim Seemer <humdingerb@googlemail.com>

Added a few more translators to AboutSystem. Thanks, guys.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35838 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a28171ff5303f52634edbad542ca63176b998f99 11-Mar-2010 Joachim Seemer <humdingerb@googlemail.com>

Added all translators (as far as they mailed me their consent) of the user guide to the translation section of AboutSystem. Removed the second newline after every language heading.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35810 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 2eb71b4eaac8682106c4c153024615dd9430c75e 28-Feb-2010 Colin Günther <coling@gmx.de>

Indent the comments to line up with the _AddPackageCredit() method. Should have
been part of r35691, where I applied a patch by mmadia taken from ticket #5457
(which was previously closed by bonefish), with some modifications by me.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35692 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 6f144451ab7bb0d4a558ffc9a9ef9b0f2463b353 28-Feb-2010 Colin Günther <coling@gmx.de>

Adding copyright information of WiFi firmwares to AboutSystem.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35691 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 561d4cb9ebb65e5dff964759459a25f5be56b2e2 26-Feb-2010 Ingo Weinhold <ingo_weinhold@gmx.de>

Sort the package credits case-insensitively. Fixes #5185.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35624 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 73cb8df07e72a6bb94b97d55b4cfa44119be10be 19-Feb-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Fix credits for hungarian localization


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35518 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 33eead339b2cf4b27f271e3f7fdae433b02bef6a 17-Feb-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

* Improve the test for TimeFormat (style and error checking)
* Fix the TimeFormat API, there was a double free. Make it work as expected : you send it a number of seconds and it will format it properly in days, hours, minutes, seconds with proper plural.
* Cleanup other parts of the Format API from useless things. They may get reintroduced later if we feel the need to do so.
* AboutSystem now use TimeFormat to display the uptime in properly localized way.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35506 a95241bf-73f2-0310-859d-f6bbb57e9c96


# be8e9d5e21aaf8c794d0dcc91fd4b46de4d13393 10-Feb-2010 Artur Wyszynski <aljen-mlists@o2.pl>

Reverted style changes pointed by stippi


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35445 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 03828629c7a29d7a4268ed3896eba2dfdc139437 09-Feb-2010 Rene Gollent <anevilyak@gmail.com>

Added Romain Picard to contributors list for his FAT fixes and other previous patches. Thanks!



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35442 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 54b738a10a62a23116ddd7fea0f5e8c7fb35cb25 08-Feb-2010 Artur Wyszynski <aljen-mlists@o2.pl>

* Localized AboutSystem
* Added polish translation made by me
* Added myself & Hubert Hareńczyk to polish translators
* Corrected my last name
* Honor 80lines
* Style cleanup



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35439 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7fd580914a683b887b592cd7b052b963897354a9 26-Jan-2010 Jérôme Duval <korli@users.berlios.de>

* updated libjpeg to version 8, as the previous version on trunk didn't look like version 7, the merge wasn't usable. I modified jpeglib.h to have the JPEGTranslator built.
* added libjpeg to AboutSystem
* JPEGTranslator now uses the shared library libjpeg.so


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35312 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5337f612fe70f071c1da5b51ba566542c7cafc4e 26-Jan-2010 Oliver Tappe <zooey@hirschkaefer.de>

* added license for ICU
* added missing ICU copyright credit to AboutSystem

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35300 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 33e5fc1cb2917b4986ebe148ac85d02de0ac9bd1 20-Jan-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Add dutch translation for midiplayer, done by Meanwhile. Thanks !


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35208 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3cfe017578c3486797a032a433796dbc74087916 18-Jan-2010 Ingo Weinhold <ingo_weinhold@gmx.de>

Corrected spelling of Samuel's surnames.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35150 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7974d3dcf39ce78e5885b481eee12e561ad6e096 13-Jan-2010 Stephan Aßmus <superstippi@gmx.de>

Patch by Humdinger:
Updated Haiku apps to use sentence-case. What a huge undertaking...
The files where I had to apply the patch manually (for mysterious
reasons) have also gotten a whitespace cleanup. I've proof-read
everything so hopefully there should be no problems.

This should be the final part of #5169.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35049 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f66bb08155921863bcb4d6d85689151dd027758e 10-Jan-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Added portuguese localisation done by Xeon3D.
I had to uptade the catkeys as Travis tool has trouble keeping up with changes in the repository (most importantly, cpufrequency fixes and mail sentance casing). I hope nothing was lost in the process.
Travis, if you read this, I had to load the catkey files in vim and save them back to get them linked correctly by the buildtools. I suspect some line ending problem or something alike. Also, your fingerprint computation seemed wrong in most cases.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34994 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8e0fba06cf5684ba471f454b0882cd892a6ab0a7 03-Jan-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

-Updated esperanto catalogs done by Travis again (fixed your name in AboutSystem too, sorry about that).
-Updated one lituanian catalog from Algirdas. I'm too lazy to fix the others one, sorry.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34884 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 2fdf91fe74a3f6edb3346770047c4e585d352a95 02-Jan-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Esperanto localization by Travis D. Reed. Thanks !


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34853 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1e9ba7f26caddfcee753422bea618fe3eac85ab7 20-Dec-2009 Ingo Weinhold <ingo_weinhold@gmx.de>

Patch by Matt Madia with small modifications by myself: Read and display the
"SourceURL" fields in optional package descriptions.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34725 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3212667705cdf34bd47c53240073e04478cff3e2 20-Dec-2009 Ingo Weinhold <ingo_weinhold@gmx.de>

Cleanup.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34724 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 613cdfa6968b3e9a39bb35e7ff2922cc40474eb8 20-Dec-2009 Ingo Weinhold <ingo_weinhold@gmx.de>

Added support for using email address style named URLs ("... <...>") for
package licenses and URLs.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34723 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1e752e59df73f9ec4a36509796835d6168af0955 03-Dec-2009 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Added translation contributors to AboutSystem. I was not sure how to present the "languages" subtitles, feel free to improve.
I hope I didn't forgot someone and got everything right. Thanks to you all :)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34478 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 70d385fb2fcbfc045779a4931face474dc8294b9 11-Nov-2009 Rene Gollent <anevilyak@gmail.com>

VL-Gothic's copyright was missing the NULL terminator on the argument list. This caused a crash on gcc2. Fixes ticket #4939.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34006 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b258fd9105b9b2e958d1a6444b793f46bba54dbc 11-Nov-2009 Stefano Ceccherini <stefano.ceccherini@gmail.com>

Replaced license/copyrights for Konatu with the ones for VL-Gothic fonts.
This and r33992 fix ticket #4933.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33994 a95241bf-73f2-0310-859d-f6bbb57e9c96


# c1181914cbd201a1b814be68611ccd6d357386c7 30-Oct-2009 Philippe Houdoin <philippe.houdoin@gmail.com>

Added Pete Goodeve to contributors for his work on MIDI.
Give him credit in midi_server and fix a typo.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33841 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 823380c6660af345954782ca0c6a69e8c7fda09e 28-Oct-2009 Philippe Houdoin <philippe.houdoin@gmail.com>

Added Hong Yul Yang to contributors.
Hope "Yang" is actually your lastname!
Feel free to correct me.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33817 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7f452dbd1e0779ebaf6976e1140bd96e1ffc901b 27-Oct-2009 Axel Dörfler <axeld@pinc-software.de>

* Moved Brecht to the current maintainers.
* Added Colin.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33798 a95241bf-73f2-0310-859d-f6bbb57e9c96


# d124b42d8b97ac40087957af3a6853b6853e030d 27-Oct-2009 Philippe Houdoin <philippe.houdoin@gmail.com>

Move Fredrik "tqh" Holmqvist from contributors to maintainers.
Welcome onboard!

And, look, what a coincidence: you're my new upper neighbour in that list!
:-)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33796 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7d9b05f10de6304ac9877d6367b8b207c028935f 04-Oct-2009 Ryan Leavengood <leavengood@gmail.com>

- Move Scott McCreary to current maintainers list.
- Add Caitlin Shaw to contributors list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33429 a95241bf-73f2-0310-859d-f6bbb57e9c96


# fd09bcb070ad8ee5daf165dfa42eca9c0a748eb6 27-Sep-2009 Rene Gollent <anevilyak@gmail.com>

Add Joshua R. Elsasser to contributors list.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33328 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a0556a1df2c90da3e105d9d1bae25b90658d2a2e 25-Sep-2009 Philippe Houdoin <philippe.houdoin@gmail.com>

Added Fredrik Holmqvist (tqh) to our contributors.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33296 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 904acde1c2110a0e2f5515831fe3fa1c081864b6 24-Sep-2009 Philippe Houdoin <philippe.houdoin@gmail.com>

Added Vincent Duvert to Contributors for his Icons screensaver.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33271 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 619926647605b809f6443a271d0c65c3ae8ba48d 25-Aug-2009 Jonas Sundström <jonas@kirilla.com>

Patch by Fredrik Ekdahl, slightly modified. Added Fredrik to list of Contributors.
+alphabranch

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32677 a95241bf-73f2-0310-859d-f6bbb57e9c96


# be454e17a13002e64ee4a034062462b489277579 13-Aug-2009 Fredrik Modeen <fredrik@modeen.se>

- Added Chris Roberts OpenTerminal.
- Added him to Contributors
- Missing a icon thoug, any thoughts about how it should look?

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32334 a95241bf-73f2-0310-859d-f6bbb57e9c96


# e17680d33233f51618a668c13fb1281e5a2efea7 07-Aug-2009 Stephan Aßmus <superstippi@gmx.de>

Another update to the credits:
* Moved a couple people up from Contributors to Maintainers, since they gained
commit acces.
* Shock! Matt Madia and Humdinger were missing!
* Added Koki back to Website team (after consulting him first).
* Added some more well deserved special thanks!

As always, please bring anyone I missed to my attention, I don't leave anyone
out intentionally!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32192 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8ae594ffd47d73edb1c9b9e1240a1ee667197472 28-Jul-2009 Axel Dörfler <axeld@pinc-software.de>

* Introduced dedicated syscalls for the deprecated BeOS fs_attr API. Before,
each attribute access needed 3 syscalls, now only one as it should.
* Renamed the new Haiku call fs_open_attr() to fs_fopen_attr(), and added a new
function fs_open_attr() that takes a path (same semantics as the
fs_[f]open_attr_dir() functions already present in BeOS).
* Merged former _kern_open_attr(), and _kern_create_attr() into one syscall.
* Cleaned up vfs.h.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31881 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1915b0384cc9527ea12b02af8388654bfb0630a8 25-Jul-2009 Stephan Aßmus <superstippi@gmx.de>

Added the GSoC and HCD students to the credits, who have patches already
in the tree.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31753 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ce3c3c99376406c86bd115a5cc3ec8e3c88916cd 25-Jul-2009 Stephan Aßmus <superstippi@gmx.de>

* Added Jeroen Oortwijn to list of contributers, I've commited a couple of patches
already...
* Moved Michele Frau to correctly sorted spot.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31752 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 18882afba229350049c0fc092b46e5518508b593 18-Jun-2009 Axel Dörfler <axeld@pinc-software.de>

* Removed accidental leftover in a GCC4 only codepath.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31106 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 99a8d30156784bc3f71366eb2f4d0cacb3f4433e 18-Jun-2009 Axel Dörfler <axeld@pinc-software.de>

* Changed the whole thing to use the layout engine, which makes it work okay
with larger font sizes.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31099 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8e151a5da566d92b9b3cc84061125ee855f3caf0 18-May-2009 Oliver Tappe <zooey@hirschkaefer.de>

* Made the AboutSystem be selectable again. Why the credits view used to be
made non-selectable on program start and selectable after the credits have
been added escapes me.
This fixes #2497 again.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30796 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 679eee62a19b8454dcd269cfaa7afa90422a2428 18-May-2009 Ingo Weinhold <ingo_weinhold@gmx.de>

* Generalized the Licenses class to StringVector.
* Added PackageCredit class that encapsulate all data for a package credit.
* Instead of adding the package credits directly to the text view, we do now
first collect them and add them afterwards. Also avoid duplicates by guessing
which package credits are newer. Fixes #3930.
* Removed the query for installed applications. Everything in core Haiku should
be hard-coded and all optional packages should have
.OptionalPackageDescriptions anyway. What the user installs afterwards is
really her business and doesn't need to appear in AboutSystem.
* Removed some commented credits that should belong to optional packages.
* Added TODOs where licenses (or links to them) are missing.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30791 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ff74dc2e8bef2a77eaaa375f91d78d3b2093b3c3 09-May-2009 Ingo Weinhold <ingo_weinhold@gmx.de>

Search the license files in the standard user/common/system licenses
directories.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30681 a95241bf-73f2-0310-859d-f6bbb57e9c96


# cb298dba1541e10b9c3d3c243c8c0c88a398b427 02-May-2009 Stephan Aßmus <superstippi@gmx.de>

Added Mark to list of contributors.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30560 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 000fe088a79bbd17ce42078273c04b306967827f 04-Apr-2009 Stephan Aßmus <superstippi@gmx.de>

Patch by Ma Jie: Basically - make Poorman (the webserver) work. Libhttpd from
Jef Poskanzer is providing the backend, but had to be adopted in some ways.
Other issues in Poorman have been resolved.

When testing the license integration, I stumbled over some AboutSystem bugs,
basically clicking licenses would not open them. I fixed those in this patch,
sorry for mixing that up.

Note to Ma Jie: I changed the encoding of the libhttpd files to UTF-8!
(This affects only the (C) glyph.) Thanks a lot for your awesome work on
Poorman, it's really appreciated!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29906 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 317bd7dda3eb26d4d24ba5b0a831461119f70d34 03-Apr-2009 Axel Dörfler <axeld@pinc-software.de>

* Changed directory structure as suggested on the mailing list.
* Made the TimeZoneView less error prone, and also actually use Haiku code (the
previous check didn't work since it used #if, not #ifdef).
* Also took the liberty to rename our boot loader to haiku_loader, since I had
to update the nasm binary anyway. Updated the assembly sources to nasm 2.0.
* I haven't found where the synth location in the MIDI code is specified,
though.
* Also, NetBootArchive, and FloppyBootImage haven't been updated yet. Will do
so next.
* Some optional packages still put their license to beos/etc/licenses. I didn't
update them yet, as we'll probably do so anyway at some point. Also, I think
we might want to introduce a common/data/licenses instead for those.
* If you encounter any problems, please tell!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29876 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 432ce3738dcbf41a0849e3fec7b6fde6808f468f 18-Mar-2009 Stephan Aßmus <superstippi@gmx.de>

* Tracked down the mkdepend tool which Ingo used in his updated makefile-engine
which auto-generates dependencies. It was written by Lars Duening for BeOS
and uses libglob, which is also part of make. To re-use libglob and since
make is already part of the Haiku tree, I added mkdepend to the bin tools.
* Added Lars Duening's copyright to AboutSystem.
* Added skeleton makefile and makefile-engine to data/develop.
* Added mkdepend and makefile-engine files to the Development optional package.
It could be argued to move the make bin command there too, from it's current
location in the HaikuImage file. However, make could be useful to always
have available.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29609 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8aafdd05fc4dd270c096eb432135b818cca86163 08-Dec-2008 Rene Gollent <anevilyak@gmail.com>

Make the uptime view a multiline textview. This allows it to gracefully wrap the text instead of simply cutting it off when your uptime is too long to fit into the provided space. Fixes ticket #701.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28786 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8b62d2f0e53f9a0c3396a8c01324b60c0b6dd9d0 08-Nov-2008 Stephan Aßmus <superstippi@gmx.de>

That the core system code of Haiku is distributed under the terms of the MIT
license was nowhere mentioned. I added an explaination to the copyrights section
and also mentioned that clicking a license name will open the respective
license for reading.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28557 a95241bf-73f2-0310-859d-f6bbb57e9c96


# bf5a91e2ff6aaa7bf5d357f8af3b2ee8ce06ef3c 06-Nov-2008 Stephan Aßmus <superstippi@gmx.de>

Added Adrian Panasiuk for his very good bug reporting work and helpful
patches. Thanks a lot!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28540 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8443d21cf88820cea85176a2ac7bb97c7eda56e2 04-Nov-2008 Stephan Aßmus <superstippi@gmx.de>

Included "Mike's Arbitrary Precision Math Library" in DeskCalc (BSD style
license) and rebased the ExpressionParser from double on the MAPM data type.
Currently, the binary operators are not supported anymore, but the imprecise
calculations were getting on my nerves. I think a lot more neat functions
could now be supported, but I have not looked into it further. I also didn't
dare look closer at the C code of the library, but it seems to be well
tested. It's portable by all means, I guess even if the target platform has
8.3 char file names to hold the code... Luckily, the library inclused a C++
wrapper class for the data type (MAPM) which makes it fairly comfortable to
use and hides the ugly C stuff and messy memory management.

The result seems to be quite nice so far. Previously, I couldn't even calculate
my finances without eventually getting some rounding errors.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28506 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 8b0dc5ae13ede250df9b59428e76a3e087d1c010 01-Nov-2008 Stephan Aßmus <superstippi@gmx.de>

Added Clemens Zeidler to the list of contributors for his
Synaptics Touchpad driver patch. Thanks!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28418 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 29ac46e843652476c015f2e16208bc08677056d3 30-Oct-2008 François Revol <revol@free.fr>

- missing space between sentenses
- fix BeOS build


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28387 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5feb95a185ab4198324cb7f8c9692c62557a3359 03-Oct-2008 Stefano Ceccherini <stefano.ceccherini@gmail.com>

Added Francesco Piccinno (and not Piccinini as I incorrectly wrote in the if_re driver commit message, sorry!) to the about box.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27848 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a2b5ecab7adec51b585608c1ecde6d68c9c52dcc 09-Sep-2008 Ingo Weinhold <ingo_weinhold@gmx.de>

Added Zhao Shuai to the contributors list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27394 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 47a5fa5a3214e3723421e8be18100dcae680fc89 07-Sep-2008 Jérôme Duval <korli@users.berlios.de>

fix typo


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27353 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5379de87bfea771857152d8d0223d1b609d24dd2 03-Sep-2008 Stephan Aßmus <superstippi@gmx.de>

Another attempt at improving the AboutSystem credits:
* The "Most influential developers" list wasn't such a good idea after all.
* Now we have "Current Maintainers" and "Past Maintainers". Some developers
who still have commit access are in the Past Maintainers list, since they
have not done a commit in a long time (more than a year at least)
* TODO: Move more people from Contributors into Past Maintainers, I don't
know many names and have not tried to match names to SVN commit log nick
names.
* Added Ralf Schuelke to the Contributors for his Pairs game contribution.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27299 a95241bf-73f2-0310-859d-f6bbb57e9c96


# af6342b8c74ec6eb0339d25fbdabcc43b15a68c8 01-Sep-2008 Stephan Aßmus <superstippi@gmx.de>

Removed Jorge again by his own request. I completely forgot why Jorge was not
in the list and thought it was an oversight. Sorry.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27280 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 737fa69d599628178e2e4eb6258f12d6831dec05 01-Sep-2008 Stephan Aßmus <superstippi@gmx.de>

Sorry, but another fix was needed. The previous list of most influential
developers was based on the oloh results, but these go only 3 years back. The
SVN revision history is much more complete and contains also the CVS history
apart from a screw up at revision 10. However, I was able to obtain a much
more correct list now and so some resorting was due. According to these stats,
Michael Lotz would not appear in the list - however, I feel he should be
in there, since he was the first to run Haiku with app_server, the first to
run a browser on it, wrote the USB stack and so on. The other possiblity would
be to make the cut at 7 entries, which coincidentally would mean everyone in the
list has contributed more than 1000 commits.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27279 a95241bf-73f2-0310-859d-f6bbb57e9c96


# e03fa4888ef754684503cd3cf4ed7c4ab2b0de5c 01-Sep-2008 Stephan Aßmus <superstippi@gmx.de>

First attempt at a more balanced Credits section:
* Changed the copyright line to say "The Haiku project", similar to the GNU
and BSD copyrights. Then a clarifying sentence as discussed on the developer
mailing list.
* Removed the outdated Team list in favor of a "Most influential developers"
list with the top contributors of the past and the present in order of
SVN commit numbers. It could be argued that Travis should be part of this
list but he is already mentioned later with a special note. I used this
wording to indicate that it could also mention no longer active, but still
"most influential" developers. "Lead developers" or "Core developers" would
not have this aspect.
* Created a new "Website, Marketing & Documentation" section which gives
hopefully all or at least most people a more prominent mention which are
contributing most in this area. Waldemar Kornewald could be moved to this
list as well. Koki was not mentioned anywhere before, which definitely needed
to be corrected! :-)
* Maurice Kalinowski and Fredrik Modeen are now commiters.
* Added Andrej Spielmann (Subpixel Anti-aliasing) to the developers list, since
he has commit access too now.
* Added David Powell to list of contributors, for his recent patch to the
boot splash generator and boot loader.
* Added Copyright for CQuantizer (part of the mentioned patch from David)

If you have suggestions for improvements, please shoot, especially if I forgot
someone!



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27262 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 3a2ac557f2c34e0f231b1f4f22a1226e4a7de271 28-Aug-2008 Michael Pfeiffer <michael.w.pfeiffer@gmail.com>

Added Mathew Hounsell to list of contributors.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27230 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4c660d948dfb06c0177a3f709a6ca7e4285ce576 11-Aug-2008 Stephan Aßmus <superstippi@gmx.de>

Applied patch by scottmc to fix the placement of some out of order names.
Thanks!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26928 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 29ec0f52d205f00c2df7e2070280dabd93d2ef47 24-Jul-2008 François Revol <revol@free.fr>

Add copyrights for Udis86, used in the kernel debugger disasm module.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26621 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 764de92f59135a4040fcfde02b56378717ebed5f 17-Jun-2008 François Revol <revol@free.fr>

Fix boggus ifdef. Thanks Vasilis. Parens shouldn't be needed though.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26001 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 64ee822252661747b06f41c38c5dc149f66ad5d9 17-Jun-2008 Axel Dörfler <axeld@pinc-software.de>

* Simplified compiler text - it will now only be shown in case it's not 2.95.3,
and it does fit in the line.
* Removed extraneous whitespace.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25994 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0e0d9290e07fd427939c1c961cbb27dcbb038986 10-Jun-2008 Axel Dörfler <axeld@pinc-software.de>

I can't believe Urias wasn't mentioned here yet...


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25914 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1083a4b6d26b9899461b8de21cf28a3eef056bdc 29-May-2008 Stephan Aßmus <superstippi@gmx.de>

Added Andreas Faerber and Scott McCreary to the list of contributors for their
help with bugs, sending patches and the ongoing Haiku-Ports effort.

As always, if you think someone should be listed, please drop me a line!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25711 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ce2ba4187b875cd69184864b665657f83e19c6c6 26-May-2008 Axel Dörfler <axeld@pinc-software.de>

* Added SHINTA to the list of contributors.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25669 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 05ffb70e8f0c6923aaff8c12dbc14066bd0895e9 22-May-2008 François Revol <revol@free.fr>

Add compiler version to AboutSystem so newbs can identify if an image is built with gcc4 or gcc2.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25619 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 707cdd371926f277c4cc5d53f73884d6d978c81c 14-May-2008 Axel Dörfler <axeld@pinc-software.de>

Added Christian Fasshauer, and Marco Minutoli to the list of contributors.
Shinta, if you can give me your full name, I would like to add you too :-)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25492 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7b54413e91cd7281c472149e9df0d6382a894198 10-May-2008 Ingo Weinhold <ingo_weinhold@gmx.de>

Typo, spotted by Andreas Faerber.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25436 a95241bf-73f2-0310-859d-f6bbb57e9c96


# c5174c0a7e3464ea68ac533b9551a2c8df7fb091 04-May-2008 Ingo Weinhold <ingo_weinhold@gmx.de>

Add libMicro copyright and license to the image when the respective
optional package is installed.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25314 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7218a9b2eafc9171590455fd06723147a8115c15 02-May-2008 Niels Sascha Reedijk <niels.reedijk@gmail.com>

Update copyright entries in the about window. Work done by scottmc. Thanks! This closes #1222.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25297 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b14a49c9bd9e716b89430bd562c06ab2d92220dc 19-Apr-2008 Ingo Weinhold <ingo_weinhold@gmx.de>

* Added BTextView derived class HyperTextView, which allows for
associating text with an action performed when clicked. Very
bare-bones, but sufficient for our purposes.
* Turned all URLs into proper URLs (i.e. prepended "http://" where
missing).
* Added new AboutView::AddCopyrightEntry() versions. One can take an
additional licenses list, the other extracts all info from a supplied
BMessage.
* The displayed licenses and URLs are hyperlinks now. Clicking the
former opens the license file in /etc/licenses, the latter try to open
a browser (works with NetPositive at least).
* The "COPYRIGHTS" attribute of the executable can contain descriptions
of optional packages. Those are read, parsed, and added as copyright
entries.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25049 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b0b25f209e2cf1a2d83a6dd1c5c7d29d22231fb3 16-Apr-2008 Ingo Weinhold <ingo_weinhold@gmx.de>

Updated lp_solve copyright.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24988 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 51629616751b5a4942a625212fcec04fbdb9654a 16-Apr-2008 Michael Pfeiffer <michael.w.pfeiffer@gmail.com>

Added David Dengg to list of contributores for providing the initial version of bootman boot loader. Thank you!

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24982 a95241bf-73f2-0310-859d-f6bbb57e9c96


# e806cb517a042a416aeac8d739c0d7e9720dbe25 15-Apr-2008 Stephan Aßmus <superstippi@gmx.de>

Applied patch by Scott McCreary:
* Added a whole lot of missing copyright statements, small corrections in
some existing ones.
Changes by myself:
* Fixed line breaks to honor 80 char limit.
* Removed unused function declaration to avoid warning.
* Small style fixes.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24966 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0323cae536c8043e5a1465818745a9280e40a520 10-Apr-2008 Stefano Ceccherini <stefano.ceccherini@gmail.com>

Fixed warning.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24897 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5c21588c29f5940d87718a4055cd59201215ff51 06-Apr-2008 Stephan Aßmus <superstippi@gmx.de>

Addded various people who have contributed lately.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24843 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0ee109102bc1b50fcda6b0b026bb4e818c60b6d2 04-Apr-2008 Rene Gollent <anevilyak@gmail.com>

Forgot about this static function.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24802 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4e103cc0e75aa1879afff1d53343a90409bc89d4 04-Apr-2008 Rene Gollent <anevilyak@gmail.com>

Remove cache mem indicator from this app.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24800 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ddd25e757ba6b6b2aaf122cafb1f92ad27d76e30 03-Apr-2008 Rene Gollent <anevilyak@gmail.com>

* AboutSystem now shows cache usage together with total/available mem.
* Small cleanups.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24788 a95241bf-73f2-0310-859d-f6bbb57e9c96


# aa727f664349524c88917974e83b6b3c40d65b24 18-Mar-2008 Stephan Aßmus <superstippi@gmx.de>

patch by Artur Wyszynski (aljen):
* Added the feature of an animated boot screen (icons lighting up at
different boot stages).
* Added first version of new boot splash images, generated by the new
hsbg tool. (Also finally contains the "new" Haiku logo.)

changes by myself:
* Added Artur to the contributors list in About System.
* Fixed some left overs in the patch, kept tracing turned off.

TODO:
* Remove the need for hard coding the icon positions. (Maybe generate
those from hsbg and put them into images.h? Have user provide icon
spacing/offsets at the command line for hsbg?)
* Rename the stages to something meaningful.
* Use hsbg as a build system tool and generate images.h during build
from PNGs provided in the artwork folder.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24434 a95241bf-73f2-0310-859d-f6bbb57e9c96


# e6599ddbdeaa3f3608df14226bed367849751963 05-Mar-2008 François Revol <revol@free.fr>

Make the text view selectable when the query is done, so one can select text, like urls to paste to a browser.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24257 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7c4e1117fe24707649646f6f3578c8626e6be204 05-Mar-2008 Jonas Sundström <jonas@kirilla.com>

Make text view not selectable. This fixes a problem where text is inserted not at the end of the text view but on the current page. This happens if you click the text view soon after having opened AboutSystem, to try to scroll or whatever, while it's still processing query results and calling AddCopyrightEntry() for each found application. It may not show on fast systems with few applications.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24256 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 017fb2f082bd7fa77096b0a1c69abbb1d6f7c56f 03-Mar-2008 Stephan Aßmus <superstippi@gmx.de>

I have tried to bring the developer list up to date to the best of my
knowledge. I compared it with the current commiters list on Berlios. Some
people listed there are still in the contributors list, since they have
been inactive for a long time. Any blunders are unintentional and I will
fix those ASAP once pointed out!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24233 a95241bf-73f2-0310-859d-f6bbb57e9c96


# fae347c3b0870ea078780ceb2c05bbf1403ba2b9 03-Mar-2008 Rene Gollent <anevilyak@gmail.com>

Sorry about this, apparently my terminal kept getting confused by the UTF-8 char.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24221 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 72f25fc7aa361e2c3de77347b8577af493c08e93 03-Mar-2008 Rene Gollent <anevilyak@gmail.com>

Argh.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24220 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b92b5592b5dc02d5b934c89ed72354e0283e8d6b 03-Mar-2008 Rene Gollent <anevilyak@gmail.com>

Corrected accent on name and moved it where stippi said :)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24219 a95241bf-73f2-0310-859d-f6bbb57e9c96


# aba654f76aaaeb22d045aa842cb896c5c7c7bfbd 03-Mar-2008 François Revol <revol@free.fr>

Added Rene Gollent to the list of contributors, how come we forgot ?


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24217 a95241bf-73f2-0310-859d-f6bbb57e9c96


# d2dd893957ea516e3681a7d1849935e62e2ecd96 03-Mar-2008 Stephan Aßmus <superstippi@gmx.de>

Added James Urquhart to the list of contributors.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24216 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 501dd0d6042d54a60f0d0cde47451da9132c08ab 02-Mar-2008 François Revol <revol@free.fr>

Added Maurice Kalinowski to the contributors' list.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24206 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 89017c088b68e0e995c841385b3d0a6d72c2c305 01-Mar-2008 Stefano Ceccherini <stefano.ceccherini@gmail.com>

Added Denis Washington to the contributors' list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24194 a95241bf-73f2-0310-859d-f6bbb57e9c96


# bb8610d004e5f0138d0d12b82a7e3245d62e58c6 27-Feb-2008 Alexandre Deckner <alex@zappotek.com>

* url is blue now!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24155 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7d5ff380e2948a8f04d53f45ba43c0dc6ac63e94 27-Feb-2008 Alexandre Deckner <alex@zappotek.com>

* added Bullet copyright


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24153 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 75b402646ba540b76a95b9604f60ae16ae7d37ea 16-Feb-2008 Jérôme Duval <korli@users.berlios.de>

added copyright for OpenEXR


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23966 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 05d8f5251b38c1e891b82177642788a8cfee315e 06-Feb-2008 Ingo Weinhold <ingo_weinhold@gmx.de>

* Added James Kim to the list of contributors.
* Added temporary copyright entry for lp_solve as a placeholder, until I
know what it should say.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23890 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5ee2c72042780805211e84c262689ef8433662da 20-Jan-2008 Stefano Ceccherini <stefano.ceccherini@gmail.com>

Oh yeah... I managed to screw a simple commit like this...


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23674 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f47745cc8c705fac3e6805b5b6367b4b235b5ffa 20-Jan-2008 Stefano Ceccherini <stefano.ceccherini@gmail.com>

Added Christof Lutteroth to the contributors's list (forgot to do this
some time ago)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23672 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 669717f74004171b120615e495e3698e580340d2 09-Jan-2008 Stephan Aßmus <superstippi@gmx.de>

* added a few recent contributors... I probably forgot a few others who
deserve to be mentioned... please speak up and I will correct it on
the spot! :-)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23297 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7b27100746da6b62c99f8bef85a92617471f9d06 27-Dec-2007 François Revol <revol@free.fr>

Bored at 4 am,
Into this cold winder,
Here comes an easter egg.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23179 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f7ef520ff54aff0aaf49f8c467f145b316f363fe 27-Dec-2007 François Revol <revol@free.fr>

Any reason not to use ui_color() there ??


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23178 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7ea2bdd3ffbd5bca2c0558ba76b9c2e54880d953 27-Dec-2007 François Revol <revol@free.fr>

Add a list of installed apps and their copyrights to the credits view, using a query.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23177 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4016bc0e475422abbca156e3b24a224178f1c2a0 27-Dec-2007 François Revol <revol@free.fr>

Clean up and factor out adding the copyrights.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23174 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 69e65f2f57747be872249e98c7a40ac0992e38a0 29-Oct-2007 Jérôme Duval <korli@users.berlios.de>

replaced misc values with respective constants


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22762 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 0febb19cafc5bd65cc457f7cfebe4f7d94967fba 03-Oct-2007 Ingo Weinhold <ingo_weinhold@gmx.de>

Added the students who worked on the DDM and intel partitioning system.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22424 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5d95ae00c87f8be9026fc346fe89f15da6d025ed 19-Sep-2007 Jérôme Duval <korli@users.berlios.de>

added JiSheng as contributor


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22266 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 86519fe39d9ee0da2e131c56f54276e60a2ee03b 25-Aug-2007 Michael Pfeiffer <michael.w.pfeiffer@gmail.com>

Moved my name from Team Leads to Developers list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22054 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1255bc6988c935d7ccdac25752a71c897af158da 20-Jul-2007 Stephan Aßmus <superstippi@gmx.de>

* added copyright for BRegion backend implementation


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21675 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 210cbb4bd19ec6005f7270da9df382b95219a6d4 21-Jun-2007 Axel Dörfler <axeld@pinc-software.de>

* Removed the old LICENSE files of the previous S3 Savage driver as suggested by
Gerald.
* Added Gerald Zajac and Jan Kloetzke to the list of contributors.
* Added the s3savage driver and accelerant to the image.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21478 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b52415cc2e8760c34dbc399fee8b315ed0dcedb9 02-Jun-2007 Stephan Aßmus <superstippi@gmx.de>

* added Ithamar R. Adema to the list of active developers
* moved Siarzhuk Zharski and François Revol from contributors
to the list of active developers
* moved Thomas Kurschel to the list of contributors
* added Michele aka zuMi to the list of contributors
Disclaimer:
* I might have forgotten someone who should be in active developers
* I didn't mean to discourage anyone
* I am against having three separate lists anyways... :-)
* Please take it as what this is: I wanted to put Ithamar and zuMi in there
and did some cleanup along the way...


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21293 a95241bf-73f2-0310-859d-f6bbb57e9c96


# ae585f87af90034ad89983e0a2e99651ddb12556 29-May-2007 Ingo Weinhold <ingo_weinhold@gmx.de>

Removed Jorge at his own urgent request.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21265 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 7b20ae3116cc313edb65f5205ffbd564a31b24cf 20-May-2007 Ingo Weinhold <ingo_weinhold@gmx.de>

Renamed src/apps/abouthaiku to src/apps/aboutsystem.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21180 a95241bf-73f2-0310-859d-f6bbb57e9c96