Opened 14 years ago

Closed 4 years ago

Last modified 4 years ago

#6183 closed enhancement (fixed)

Removing Trademarks from non-official builds

Reported by: mmadia Owned by: mmadia
Priority: normal Milestone: R1/beta2
Component: Build System Version: R1/alpha2
Keywords: Cc:
Blocked By: #6255 Blocking:
Platform: All

Description

This ticket addresses the occurrences of the HAIKU logo and Haiku name within built images. (feel free to adjust/correct)

HAIKU Logo:

  • AboutSystem logo
  • Installer logo
  • Boot Screen
  • Desktop wallpaper
  • Haiku3d

"Haiku" name

  • AboutSystem text
  • Installer text
  • ScreenSaver : Haiku
  • Terminal "Welcome to the Haiku shell."
  • uname (though, i've no idea what to do about that)

The build system is capable of defining 3 levels of "HAIKU_DISTRO_COMPATIBILITY"

official	: HAIKU_DISTRO_COMPATIBILITY_OFFICIAL ;
compatible	: HAIKU_DISTRO_COMPATIBILITY_COMPATIBLE ;
default		: HAIKU_DISTRO_COMPATIBILITY_DEFAULT ;

In addition, official releases have "HAIKU_OFFICIAL_RELEASE" defined.

I would like to make use of these definitions and to create 2 new definitions

This code snippet for build/jam/BuildSetup, would be used as the name of the software. For non-Project builds, end-users would define these in UserBuildConfig.

ifdef HAIKU_DISTRO_COMPATIBILITY_OFFICIAL
ifdef HAIKU_OFFICIAL_RELEASE
	HAIKU_SOFTWARE_NAME ?= 'Haiku' ;
	HAIKU_SOFTWARE_HOMEPAGE ?= 'http://www.haiku-os.org' ;
else
	HAIKU_SOFTWARE_NAME ?= 'Haiku (development build)' ;
	HAIKU_SOFTWARE_HOMEPAGE ?= 'http://www.haiku-os.org' ;
endif
endif

This code snipped could be used in the various rdef files

ifdef HAIKU_DISTRO_COMPATIBILITY_OFFICIAL
ifdef HAIKU_OFFICIAL_RELEASE
	<HAIKU Logo>
else
	<HAIKU Logo greyscale> or <HAIKU Logo sans leaves>
endif
elif defined HAIKU_DISTRO_COMPATIBILITY_COMPATIBLE
	<HAIKU Leaf>
else
	<blank image>
endif

Attachments (5)

HAIKU-Leaf-in-AboutSystem_Installer.png (74.4 KB ) - added by mmadia 14 years ago.
HAIKU-logo-stripped.png (69.0 KB ) - added by mmadia 14 years ago.
HAIKU logo stripped from boot loader, AboutSystem, Installer
HAIKU-wip-logo-in-use.png (79.9 KB ) - added by mmadia 14 years ago.
draft: HAIKU-w.i.p.-logo in boot-loader, AboutSystem, Installer for non-official-releases
logos.patch (3.7 KB ) - added by mmadia 14 years ago.
WIP patch
ex-haiku-development-logos.png (131.3 KB ) - added by mmadia 14 years ago.
example HAIKU development logo for non-releases

Download all attachments as: .zip

Change History (27)

comment:1 by axeld, 14 years ago

We could introduce special "development" logos that are based on the trademarked one, and allow ourselves to use it for our nightly builds. I don't think replacing the logo with the leaf is a good idea - those are still images built by the official source.

comment:2 by pulkomandy, 14 years ago

Maybe it would make sense to replace uname output with "walter"... but it would make config.sub and config.guess from autotools get in trouble. Mac OS X says "Darwin" there, which is more or less their "free-for-use" name.

comment:3 by xeon3d, 14 years ago

+1

I love the ideas expressed here and I'm hoping for an easy way to remove the branding from the builds. Not only would it help so that people who wanted to distribute Haiku but not infringe on the trademarks, it would also help in the way that people who want to build their custom version of Haiku (for distribution purposes or not) also not infringe on it.

by mmadia, 14 years ago

Attachment: HAIKU-logo-stripped.png added

HAIKU logo stripped from boot loader, AboutSystem, Installer

by mmadia, 14 years ago

Attachment: HAIKU-wip-logo-in-use.png added

draft: HAIKU-w.i.p.-logo in boot-loader, AboutSystem, Installer for non-official-releases

by mmadia, 14 years ago

Attachment: logos.patch added

WIP patch

comment:4 by mmadia, 14 years ago

patch: 01

comment:5 by mmadia, 14 years ago

Here's some images that show how the system degrades gracefully when the trademarked logos are removed from the prominent places. Even though Installer looks funny, it remains functional.

I tried replicating the look of the 'alpha 2' text for "W.I.P.", but can't figure out how the bucket-fill erases were done. Would such a logo be acceptable to denote "built (& provided) by the Project, but is not an official release"?

The attached patch shows the direction of implementation. Oh, src/apps/installer/InstallerWindow.cpp can be ignored -- for a while, I was considering making Installer display prettier when there's no logo.

A much larger concern is "Haiku" as text -- epecially as it's in countless catkeys.

comment:6 by pulkomandy, 14 years ago

catkeys shouldn't be too much of a problem. It is possible to use the #ifdef system in the code and the translators will have to translate the string multiple times. IIRC the is already the case with some other things, for example the SSL conditional in the mail preferences. If SSL is not available at build time, the preflet uses some strings, while if it is enabled, there is other text. I think I made it work in such a way that all the catkeys are exported properly ; but I'm not sure anymore... I'll have to check.

in reply to:  5 comment:7 by Wim, 14 years ago

Replying to mmadia:

I tried replicating the look of the 'alpha 2' text for "W.I.P.", but can't figure out how the bucket-fill erases were done.

Although I have never done it myself, here is a link to a tutorial to create a rubber stamp effect using inkscape: http://howto.nicubunu.ro/rubber_stamp_inkscape/

comment:8 by axeld, 14 years ago

I think that "development" is better suited as "W.I.P.", as it's easier to understand, especially in other languages. I hope it fits on the logo, though :-)

by mmadia, 14 years ago

example HAIKU development logo for non-releases

comment:9 by mmadia, 14 years ago

Blocked By: 6255 added

comment:10 by mmadia, 14 years ago

The following changesets are involved in removing the graphcial logos: hrev37738, hrev37739, hrev37740, hrev37741, hrev37742

Issues to deal with:

  • What graphic to use for 'compatible'
  • removing textual occurrences of 'haiku'
  • possibly displaying the 'development' logo for boot splash

comment:11 by phoudoin, 14 years ago

Development logo is since hrev38891 displayed on boot splash for official but non-release build. Like nightlies.

comment:12 by phoudoin, 14 years ago

BTW, since hrev37742 Pulse app is considered a trademarked application !? IIRC, Pulse was released by Be Inc. as sample code. It can't be Haiku trademark.

comment:13 by tonestone57, 14 years ago

Pulse and Mandelbrot are from Be Inc (not Haiku Inc) - open source license. Change hrev37742 should be fixed. Below links show Be Inc. copyright & license.

http://dev.haiku-os.org/browser/haiku/trunk/src/apps/pulse/PulseWindow.cpp
http://dev.haiku-os.org/browser/haiku/trunk/src/apps/mandelbrot/Mandelbrot.cpp

Not sure who created Playground but the other apps were done by Axel, Alex & Ralf. They appear to be under MIT license so should be allowed in distros too. Only Haiku3D should be excluded because currently uses Haiku logo. Replacing with non-Haiku logo in Haiku3D would allow this application in distros too I would think.

Because of MIT license (for these applications), distro makers can always compile and include these applications in their Haiku distro. So, why exclude them from distro release? ie: developers above coded the applications but MIT license allows anyone to take and use them how and where they want to.

in reply to:  12 comment:14 by mmadia, 14 years ago

Replying to phoudoin:

BTW, since hrev37742 Pulse app is considered a trademarked application !? IIRC, Pulse was released by Be Inc. as sample code. It can't be Haiku trademark.

in the following line of build/jam/HaikuImage, only Haiku3d is marked out ... everything else on that line is included in the image when HAIKU_DISTRO_COMPATIBILITY ?= "default" ;

SYSTEM_DEMOS = BSnow Chart Clock Cortex FontDemo GLTeapot
	$(HAIKU_INCLUDE_TRADEMARKS)Haiku3d Mandelbrot Pairs Playground Pulse Sudoku
;

In other words, $(HAIKU_INCLUDE_TRADEMARKS) affects only the individual target that it prefixes.

comment:15 by tonestone57, 14 years ago

Ok, thanks for clearing it up Matt. Me & phoudoin both missed it. Should have taken a better look at the code. :-)

in reply to:  15 ; comment:16 by phoudoin, 14 years ago

Replying to tonestone57:

Should have taken a better look at the code. :-)

Yep, sorry about that mmadia. So, what default graphics to use for "compatible" distros?. The blue leaf?

in reply to:  16 comment:17 by mmadia, 14 years ago

Replying to phoudoin:

So, what default graphics to use for "compatible" distros?. The blue leaf?

#6385 has more information about this -- from the mailing list archive about the haiku compatible logos designed by Stephan some time back to screenshots of some examples.

comment:18 by mmadia, 12 years ago

patch: 10

comment:19 by mmadia, 12 years ago

The patch was been applied and never marked obsolete. Leaving the ticket open, as the name 'Haiku' is still hard coded within the source code.

comment:20 by waddlesplash, 5 years ago

Component: - GeneralBuild System

comment:21 by pulkomandy, 4 years ago

Resolution: fixed
Status: newclosed

I think we are good enough here. "uname" still says Haiku but changing that at this point would be too much trouble.

comment:22 by nielx, 4 years ago

Milestone: R1R1/beta2

Assign tickets with status=closed and resolution=fixed within the R1/beta2 development window to the R1/beta2 Milestone

Note: See TracTickets for help on using tickets.