Skip to content

Commit cc9b117

Browse files
authored
repo sync
2 parents ae82216 + 81aa798 commit cc9b117

File tree

3 files changed

+51
-3
lines changed

3 files changed

+51
-3
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
title: About GitHub AE
3+
intro: '{% data variables.product.prodname_ghe_managed %} is the most secure and compliant way to use {% data variables.product.prodname_dotcom %}.'
4+
versions:
5+
github-ae: '*'
6+
---
7+
8+
### About {% data variables.product.prodname_ghe_managed %}
9+
10+
{% data reusables.github-ae.github-ae-enables-you %}
11+
12+
{% data variables.product.prodname_ghe_managed %} offers one developer platform from idea to production. You can increase developer velocity, automate entire workflows, secure your code, and collaborate in developers’ favorite tool.
13+
14+
{% data variables.product.prodname_ghe_managed %} provides your organization with all the power of [{% data variables.product.prodname_enterprise %}](https://github.com/enterprise). With {% data variables.product.prodname_ghe_managed %}, you can also meet security and compliance goals with a suite of features and certifications that put you in control.
15+
16+
### A highly available and planet-scale cloud
17+
18+
{% data variables.product.prodname_ghe_managed %} is a fully managed service, hosted in a high availability architecture. {% data variables.product.prodname_ghe_managed %} is hosted globally in a cloud that can scale to support your full development lifecycle without limits. {% data variables.product.prodname_dotcom %} fully manages backups, failover, and disaster recovery, so you never need to worry about your service or data.
19+
20+
### Data residency
21+
22+
All of your data is stored within the geographic region of your choosing. You can comply with GDPR and global data protection standards by keeping all of your data within your chosen region.
23+
24+
### Encryption on your terms
25+
26+
All customer data is encrypted at rest, and you can provide your own encryption key to encrypt your data under your encryption policies. You control your key and access to all of your data. For more information, see "[Configuring data encryption for your enterprise](/admin/configuration/configuring-data-encryption-for-your-enterprise)."
27+
28+
### Isolated accounts
29+
30+
All developer accounts are fully isolated in {% data variables.product.prodname_ghe_managed %}. You can fully control the accounts through your identity provider, with SAML single sign on as mandatory. SCIM enables you to ensure that employees only have access to the resources they should, as defined in your central identity management system. For more information, see "[Managing identity and access for your enterprise](/admin/authentication/managing-identity-and-access-for-your-enterprise)."
31+
32+
### Restricted network access
33+
34+
Secure access to your enterprise on {% data variables.product.prodname_ghe_managed %} with restricted network access, so that your data can only be accessed from within your network. For more information, see "[Restricting network traffic to your enterprise](/admin/configuration/restricting-network-traffic-to-your-enterprise)."
35+
36+
### Commercial and government environments
37+
38+
{% data variables.product.prodname_ghe_managed %} is available in the Azure Government cloud, the trusted cloud for US government agencies and their partners. {% data variables.product.prodname_ghe_managed %} is also available in the commercial cloud, so you can choose the hosting environment that is right for your organization.
39+
40+
### Premium Plus support
41+
42+
Premium Plus support is available for all {% data variables.product.prodname_ghe_managed %} customers, to ensure you have the fastest and most personal support experience. A dedicated Account Manager will work with you to help you get the most out of {% data variables.product.prodname_dotcom %}. Our support team will resolve issues any time of day, in the shortest possible time.
43+
44+
### About billing for {% data variables.product.prodname_ghe_managed %}
45+
46+
{% data reusables.github-ae.about-billing %} For more information, see "[Managing billing for your enterprise](/admin/overview/managing-billing-for-your-enterprise)."

content/admin/overview/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ For more information, or to purchase {% data variables.product.prodname_enterpri
1212

1313
### Table of Contents
1414

15+
{% link_in_list /about-github-ae %}
1516
{% link_in_list /about-enterprise-accounts %}
1617
{% link_in_list /managing-your-github-enterprise-license %}
1718
{% link_in_list /managing-billing-for-your-enterprise %}

lib/liquid-tags/link.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ const Liquid = require('liquid')
44
const liquid = new Liquid.Engine()
55
const LiquidTag = require('./liquid-tag')
66
const findPage = require('../find-page')
7+
const { getPathWithoutLanguage } = require('../path-utils')
78
const getApplicableVersions = require('../get-applicable-versions')
8-
const { getPathWithLanguage } = require('../path-utils')
9+
const removeFPTFromPath = require('../remove-fpt-from-path')
910

1011
// This class supports a set of link tags. Each tag expects one parameter, a language-agnostic href:
1112
//
@@ -72,8 +73,8 @@ module.exports = class Link extends LiquidTag {
7273
fullPath = path.join(dirName, href)
7374
}
7475

75-
// add language code
76-
fullPath = getPathWithLanguage(fullPath, ctx.currentLanguage)
76+
// add language code and version
77+
fullPath = removeFPTFromPath(path.posix.join('/', ctx.currentLanguage, ctx.currentVersion, getPathWithoutLanguage(fullPath)))
7778

7879
// find the page based on the full path
7980
const page = findPage(fullPath, ctx.pages, ctx.redirects)

0 commit comments

Comments
 (0)