From 09c4eba0f679640ddddfd5315edbb72e4d7d8447 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sat, 22 Nov 2014 16:22:49 +0200 Subject: [PATCH] Rename woff2 to src --- README.md | 2 +- {woff2 => src}/Makefile | 0 {woff2 => src}/buffer.h | 0 {woff2 => src}/file.h | 0 {woff2 => src}/font.cc | 0 {woff2 => src}/font.h | 0 {woff2 => src}/glyph.cc | 0 {woff2 => src}/glyph.h | 0 {woff2 => src}/normalize.cc | 0 {woff2 => src}/normalize.h | 0 {woff2 => src}/port.h | 0 {woff2 => src}/round.h | 0 {woff2 => src}/store_bytes.h | 0 {woff2 => src}/table_tags.cc | 0 {woff2 => src}/table_tags.h | 0 {woff2 => src}/transform.cc | 0 {woff2 => src}/transform.h | 0 {woff2 => src}/woff2_common.h | 0 {woff2 => src}/woff2_compress.cc | 0 {woff2 => src}/woff2_dec.cc | 0 {woff2 => src}/woff2_dec.h | 0 {woff2 => src}/woff2_decompress.cc | 0 {woff2 => src}/woff2_enc.cc | 0 {woff2 => src}/woff2_enc.h | 0 24 files changed, 1 insertion(+), 1 deletion(-) rename {woff2 => src}/Makefile (100%) rename {woff2 => src}/buffer.h (100%) rename {woff2 => src}/file.h (100%) rename {woff2 => src}/font.cc (100%) rename {woff2 => src}/font.h (100%) rename {woff2 => src}/glyph.cc (100%) rename {woff2 => src}/glyph.h (100%) rename {woff2 => src}/normalize.cc (100%) rename {woff2 => src}/normalize.h (100%) rename {woff2 => src}/port.h (100%) rename {woff2 => src}/round.h (100%) rename {woff2 => src}/store_bytes.h (100%) rename {woff2 => src}/table_tags.cc (100%) rename {woff2 => src}/table_tags.h (100%) rename {woff2 => src}/transform.cc (100%) rename {woff2 => src}/transform.h (100%) rename {woff2 => src}/woff2_common.h (100%) rename {woff2 => src}/woff2_compress.cc (100%) rename {woff2 => src}/woff2_dec.cc (100%) rename {woff2 => src}/woff2_dec.h (100%) rename {woff2 => src}/woff2_decompress.cc (100%) rename {woff2 => src}/woff2_enc.cc (100%) rename {woff2 => src}/woff2_enc.h (100%) diff --git a/README.md b/README.md index fb1dea8..8de39b0 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ compression related modules in this repository. brotli/ contains reference code for the Brotli byte-level compression algorithm. Note that it is licensed under an Apache 2 license. -woff2/ contains the C++ code for compressing and decompressing fonts. +src/ contains the C++ code for compressing and decompressing fonts. # Build & Run diff --git a/woff2/Makefile b/src/Makefile similarity index 100% rename from woff2/Makefile rename to src/Makefile diff --git a/woff2/buffer.h b/src/buffer.h similarity index 100% rename from woff2/buffer.h rename to src/buffer.h diff --git a/woff2/file.h b/src/file.h similarity index 100% rename from woff2/file.h rename to src/file.h diff --git a/woff2/font.cc b/src/font.cc similarity index 100% rename from woff2/font.cc rename to src/font.cc diff --git a/woff2/font.h b/src/font.h similarity index 100% rename from woff2/font.h rename to src/font.h diff --git a/woff2/glyph.cc b/src/glyph.cc similarity index 100% rename from woff2/glyph.cc rename to src/glyph.cc diff --git a/woff2/glyph.h b/src/glyph.h similarity index 100% rename from woff2/glyph.h rename to src/glyph.h diff --git a/woff2/normalize.cc b/src/normalize.cc similarity index 100% rename from woff2/normalize.cc rename to src/normalize.cc diff --git a/woff2/normalize.h b/src/normalize.h similarity index 100% rename from woff2/normalize.h rename to src/normalize.h diff --git a/woff2/port.h b/src/port.h similarity index 100% rename from woff2/port.h rename to src/port.h diff --git a/woff2/round.h b/src/round.h similarity index 100% rename from woff2/round.h rename to src/round.h diff --git a/woff2/store_bytes.h b/src/store_bytes.h similarity index 100% rename from woff2/store_bytes.h rename to src/store_bytes.h diff --git a/woff2/table_tags.cc b/src/table_tags.cc similarity index 100% rename from woff2/table_tags.cc rename to src/table_tags.cc diff --git a/woff2/table_tags.h b/src/table_tags.h similarity index 100% rename from woff2/table_tags.h rename to src/table_tags.h diff --git a/woff2/transform.cc b/src/transform.cc similarity index 100% rename from woff2/transform.cc rename to src/transform.cc diff --git a/woff2/transform.h b/src/transform.h similarity index 100% rename from woff2/transform.h rename to src/transform.h diff --git a/woff2/woff2_common.h b/src/woff2_common.h similarity index 100% rename from woff2/woff2_common.h rename to src/woff2_common.h diff --git a/woff2/woff2_compress.cc b/src/woff2_compress.cc similarity index 100% rename from woff2/woff2_compress.cc rename to src/woff2_compress.cc diff --git a/woff2/woff2_dec.cc b/src/woff2_dec.cc similarity index 100% rename from woff2/woff2_dec.cc rename to src/woff2_dec.cc diff --git a/woff2/woff2_dec.h b/src/woff2_dec.h similarity index 100% rename from woff2/woff2_dec.h rename to src/woff2_dec.h diff --git a/woff2/woff2_decompress.cc b/src/woff2_decompress.cc similarity index 100% rename from woff2/woff2_decompress.cc rename to src/woff2_decompress.cc diff --git a/woff2/woff2_enc.cc b/src/woff2_enc.cc similarity index 100% rename from woff2/woff2_enc.cc rename to src/woff2_enc.cc diff --git a/woff2/woff2_enc.h b/src/woff2_enc.h similarity index 100% rename from woff2/woff2_enc.h rename to src/woff2_enc.h