This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-site.git
The following commit(s) were added to refs/heads/main by this push:
new 2b52db2b07d Don't generate C GLib front page (#485)
2b52db2b07d is described below
commit 2b52db2b07da750b88549b0ab4eaf672f498052a
Author: Sutou Kouhei <[email protected]>
AuthorDate: Mon Mar 18 15:21:46 2024 +0900
Don't generate C GLib front page (#485)
Because it's generated by Sphinx now.
See also: https://github.com/apache/arrow/issues/40441
---
_config.yml | 2 --
_docs/.gitignore | 1 -
_docs/c_glib/index.md | 38 --------------------------------------
scripts/sync_format_docs.sh | 24 ------------------------
4 files changed, 65 deletions(-)
diff --git a/_config.yml b/_config.yml
index d18ce96cda4..f94c29eae40 100644
--- a/_config.yml
+++ b/_config.yml
@@ -40,8 +40,6 @@ exclude:
- webpack.config.json
collections:
- docs:
- output: true
release:
output: true
diff --git a/_docs/.gitignore b/_docs/.gitignore
deleted file mode 100644
index 1e942fc5ead..00000000000
--- a/_docs/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-format/
\ No newline at end of file
diff --git a/_docs/c_glib/index.md b/_docs/c_glib/index.md
deleted file mode 100644
index 4e2e2809981..00000000000
--- a/_docs/c_glib/index.md
+++ /dev/null
@@ -1,38 +0,0 @@
----
-layout: default
-title: Apache Arrow GLib (C)
-permalink: /docs/c_glib/index.html
----
-<!--
-{% comment %}
-Licensed to the Apache Software Foundation (ASF) under one or more
-contributor license agreements. See the NOTICE file distributed with
-this work for additional information regarding copyright ownership.
-The ASF licenses this file to you under the Apache License, Version 2.0
-(the "License"); you may not use this file except in compliance with
-the License. You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-{% endcomment %}
--->
-
-# Apache Arrow GLib (C)
-
-Apache Arrow GLib is a wrapper library for Apache Arrow C++. Apache Arrow GLib
provides C API.
-
-Apache Arrow GLib supports [GObject Introspection][gobject-introspection]. It
means that you can create language bindings at runtime or compile time
automatically.
-
-## API reference manuals
-
- * [Apache Arrow GLib](arrow-glib/)
- * [Apache Parquet GLib](parquet-glib/)
- * [Gandiva GLib](gandiva-glib/)
- * [Plasma GLib](plasma-glib/)
-
-[gobject-introspection]:
https://wiki.gnome.org/action/show/Projects/GObjectIntrospection
diff --git a/scripts/sync_format_docs.sh b/scripts/sync_format_docs.sh
deleted file mode 100755
index 8117e13ce32..00000000000
--- a/scripts/sync_format_docs.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-
-set -ex
-
-rm -rf _docs/format
-cp -r $(dirname "$BASH_SOURCE")/../../format _docs/format