Skip to content

Commit

Permalink
add interfaces.xml from the last valid commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ManueldG committed Feb 6, 2025
1 parent 66bdc75 commit b9bccf4
Show file tree
Hide file tree
Showing 11,635 changed files with 1,258,279 additions and 68,762 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
; This file is for unifying the coding style for different editors and IDEs.
; More information at https://editorconfig.org

root = true

[*.xml]
charset = utf-8
indent_size = 1
indent_style = space
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = false
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.xml linguist-detectable
*.ent linguist-language=XML linguist-detectable
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
entities.*.xml
output
.docker/built
8 changes: 8 additions & 0 deletions .gitleaks.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[allowlist]
description = "Global Allowlist"

# Ignore based on any subset of the file path
paths = [
# Ignore Xpass function with examples
'''reference\/xpass\/functions\/.*\.xml''',
]
17 changes: 17 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# The following volunteers have self-identified as subject matter experts
# or interested parties over a particular area of the documentation.
# While requesting a review from someone does not obligate that person to
# review a pull request, these reviewers might have valuable knowledge of
# the problem area and could aid in deciding whether a pull request is ready
# for merging.
#
# For more information, see the GitHub CODEOWNERS documentation:
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners

/reference/dom @nielsdos
/reference/libxml @nielsdos
/reference/mysqli @kamil-tekiela
/reference/mysqlnd @kamil-tekiela
/reference/pdo @kamil-tekiela
/reference/pdo_mysql @kamil-tekiela
/reference/random @TimWolla
180 changes: 0 additions & 180 deletions CONTRIBUTING.md

This file was deleted.

32 changes: 32 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
.PHONY: *

SHELL = /bin/sh

CURRENT_UID := $(shell id -u)
CURRENT_GID := $(shell id -g)

#
# If doc-base or phd exist as siblings to the current directory, add those as
# volumes to our Docker runs.
#

PATHS := -v .:/var/www/en
ifneq ($(wildcard ../doc-base/LICENSE),)
PATHS += -v ${PWD}/../doc-base:/var/www/doc-base
endif
ifneq ($(wildcard ../phd/LICENSE),)
PATHS += -v ${PWD}/../phd:/var/www/phd
endif

xhtml: .docker/built
docker run --rm ${PATHS} -w /var/www -u ${CURRENT_UID}:${CURRENT_GID} php/doc-en

php: .docker/built
docker run --rm ${PATHS} -w /var/www -u ${CURRENT_UID}:${CURRENT_GID} \
-e FORMAT=php php/doc-en

build: .docker/built

.docker/built:
docker build .docker -t php/doc-en
touch .docker/built
54 changes: 47 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,55 @@
# Traduzione italiana della documentazione PHP

![Build Test](https://github.com/php/doc-it/workflows/Build%20Test/badge.svg)
# PHP Documentation

Attualmente la documentazione italiana è [disponibile online](https://www.php.net/manual/it/).
Please refer to the
[contribution guidelines](https://github.com/php/doc-base/blob/master/docs/contributing.md)
and the [README file](https://github.com/php/doc-base/blob/master/README.md)
within the [doc-base repository](https://github.com/php/doc-base)
for details on how to contribute to PHP's documentation.

The PHP manual is available at [php.net/docs](https://php.net/docs).

## Stato attuale
## Creating this setup

![Grafico](http://doc.php.net/images/revcheck/info_revcheck_php_it.png "Grafico dello stato attuale")
For information related to creating this setup,
see the [contribution guidelines](https://github.com/php/doc-base/blob/master/docs/contributing.md)
or [this page](https://doc.php.net/tutorial/local-setup.php) on our documentation website.

## Building With make and Docker

## Contribuire
- Install Docker (https://docs.docker.com/get-docker/)
- Rebuild the documentation using `make`
- Open output/php-chunked-xhtml/ in your browser.

Se desideri partecipare alla traduzione, consulta [questa guida](CONTRIBUTING.md).
If the `doc-base` or `phd` repositories are available in directories to the
adjacent to this directory, those will be used for building.

To force the Docker image used for building to itself be rebuilt, you can run
`make -B build`, otherwise the `Makefile` will only build it if does not
already exist.

You can also build the `web` version of the documentation with `make php`
and the output will be placed in output/php-web

## Translations

For the translations of this documentation, see:

- [Brazilian Portuguese](https://github.com/php/doc-pt_br) (doc-pt_br)
- [Chinese (Simplified)](https://github.com/php/doc-zh) (doc-zh)
- [English](https://github.com/php/doc-en) (doc-en)
- [French](https://github.com/php/doc-fr) (doc-fr)
- [German](https://github.com/php/doc-de) (doc-de)
- [Italian](https://github.com/php/doc-it) (doc-it)
- [Japanese](https://github.com/php/doc-ja) (doc-ja)
- [Polish](https://github.com/php/doc-pl) (doc-pl)
- [Romanian](https://github.com/php/doc-ro) (doc-ro)
- [Russian](https://github.com/php/doc-ru) (doc-ru)
- [Spanish](https://github.com/php/doc-es) (doc-es)
- [Turkish](https://github.com/php/doc-tr) (doc-tr)
- [Ukrainian](https://github.com/php/doc-uk) (doc-uk)

## Documentation pipeline

For more information on the various repositories that make up PHP's documentation pipeline,
see this [overview](https://github.com/php/doc-base/blob/master/docs/overview.md).
Loading

0 comments on commit b9bccf4

Please sign in to comment.