Feature | Trac-based | Github | Gerrit |
---|---|---|---|
1-click merge | No | Yes | Yes |
Clean history | Yes | Optional ("squash and merge") | Yes |
Line by line review | No | Yes | Yes |
Auto-merge/rebase | No | Yes | Yes |
Buildbot integration | No | ? | Yes |
Developper votes | No | ? | Yes |
Git integration | No | Some ("hub" is a wrapper to git) | Yes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Source/WebCore/rendering/RenderBlock.cpp b/Source/WebCore/rendering/RenderBlock.cpp | |
index ceacb85c0b2..63ea91232ab 100644 | |
--- a/Source/WebCore/rendering/RenderBlock.cpp | |
+++ b/Source/WebCore/rendering/RenderBlock.cpp | |
@@ -1184,7 +1184,7 @@ bool RenderBlock::paintChild(RenderBox& child, PaintInfo& paintInfo, const Layou | |
} | |
LayoutPoint childPoint = flipForWritingModeForChild(&child, paintOffset); | |
- if (!child.hasSelfPaintingLayer() && !child.isFloating()) { | |
+ if (true || !child.hasSelfPaintingLayer() && !child.isFloating()) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install dependencies | |
sudo apt-get install curl git python nasm autoconf automake texinfo flex bison gawk build-essential unzip wget zip zlib1g-dev libcurl4-openssl-dev genisoimage libtool | |
# get Haiku and compiler sources | |
git clone --depth=1 https://github.com:/haiku/buildtools | |
git clone --depth=1 https://github.com:/haiku/haiku | |
# Build jam (with Haiku changes) | |
cd ~/buildtools/ | |
make |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
css=/git/media/cgit.css | |
logo=/git/media/cgit.png | |
virtual-root=/git/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Step 1: build the cross-tools, using gcc4 as the host compiler. | |
setarch x86 | |
mkdir generated.arm4 | |
cd generated.arm4 | |
../configure --build-cross-tools arm ../../buildtools/ --use-gcc-pipe -j2 | |
exit | |
# Step 2: build Haiku bootstrap, using gcc2 as the host compiler (using gcc4 seems to confuse the runtime_loader...) |
Bugs:
- Autologin checkbox is disabled
- Preferences menu is disabled
- Main window isn't font sensitive. I use a 10pt font and there is 2 pixel space below the menu
- When selecting a contact in the roster, the view LowColor isn't set, leading to text antialias artifacts
- Double clicking a contact should open message window. Having to right-click > message is boring
- Chat window: pressing enter should send message instead of doing a newline.
Enhancements:
- Selection highlight in roster doesn't go all the way to the left of the window, there is whitespace left
This is a list of websites that have problems rendering or loading with the Haiku port of WebKit, as well as some general notes about what needs to be done.
CSS Fonts
- http://haikuports.org : use of CSS fonts. Why does this work on github and not here ? Different font rendering mode maybe ? (never works here)