Skip to content

Commit

Permalink
wip checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesthebrooks committed Oct 15, 2024
1 parent 5397ffc commit 5fd333a
Show file tree
Hide file tree
Showing 24 changed files with 253 additions and 214 deletions.
8 changes: 8 additions & 0 deletions .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,14 @@ module.exports = function (config) {
config.addFilter("markdown", (content) => {
return markdownLibrary.render(content);
});
markdownLibrary.renderer.rules.link_open = function (tokens, idx, options, env, self) {
const href = tokens[idx].attrGet("href");
if (href && href.startsWith("http")) {
tokens[idx].attrPush(["target", "_blank"]);
tokens[idx].attrPush(["rel", "noopener noreferrer"]);
}
return self.renderToken(tokens, idx, options);
};
markdownLibrary.renderer.rules.code_inline = (tokens, idx, {langPrefix = ''}) => {
const token = tokens[idx];
return `<code class="${langPrefix}plaintext">${htmlEntities(token.content)}</code>&nbsp;`;
Expand Down
3 changes: 3 additions & 0 deletions _data/assetPaths.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"admin.js": "/assets/js/admin-OYJBR6FH.js",
"admin.map": "/assets/js/admin-OYJBR6FH.js.map",
"anchor.min.js": "/assets/js/anchor.min.js",
"app.js": "/assets/js/app-SPESETTN.js",
"app.map": "/assets/js/app-SPESETTN.js.map",
"uswds.js": "/assets/js/uswds-init.js",
"prism-atom.css": "/assets/styles/prism-atom-dark.css",
"styles.css": "/assets/styles/styles-2K2P2X4U.css",
"styles.map": "/assets/styles/styles-2K2P2X4U.css.map"
}
83 changes: 83 additions & 0 deletions _img/content/cloud-gov-pages-faster-builds-1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
80 changes: 80 additions & 0 deletions _img/content/could-gov-pages-faster-builds-2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions _includes/layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ <h2 class="title">{{title}}</h2>
</div>
</div>
{{ content }}

<div class="grid-row">
<div class="grid-col flex-4"></div>
<div class="grid-col flex-1"><p><a href="{{ site.github_url }}/edit/{{ site.github_branch }}/{{ page.relative_path }}">Suggest edits</a></p></div>
</div>
</div>
</div>
</div>
Expand Down
8 changes: 4 additions & 4 deletions content/news/articles/2015-09-14-sprint-5-update.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ Now you can view log and event data for your apps and adjust permissions for you
When you take a look at the details for an application via the [cloud.gov console](http://console.cloud.gov), you'll now be able to see any recent logs generated by your application, as well as a list of recent deployment events from cloud.gov itself.

<!--
![Viewing logs for an app](../../img/view-app-logs.png)
![Viewing logs for an app]({{site.baseurl}}/img/view-app-logs.png)
![Viewing events for an app](../../img/view-app-events.png)
![Viewing events for an app]({{site.baseurl}}/img/view-app-events.png)
-->

### Adjust permissions for your orgs and spaces in the console
It's now possible to inspect and adjust the permissions for the individual orgs and spaces you control.

<!--
![Managing users for a space](../../img/manage-space-users.png)
![Managing users for a space]({{site.baseurl}}/img/manage-space-users.png)
![Adjusting a single user's permissions](../../img/adjust-a-single-user.png)
![Adjusting a single user's permissions]({{site.baseurl}}/img/adjust-a-single-user.png)
-->

### Updates now published via the cloud.gov website
Expand Down
2 changes: 1 addition & 1 deletion content/news/articles/2017-02-02-fedramp-authorized.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ We’ve been making changes to the cloud.gov website in order to make our [prici
#### A more functional dashboard for using cloud.gov without using the command line
Our web-based [dashboard](https://dashboard.fr.cloud.gov/) gives people an easy web-based way to manage their applications. You can see an overview of your apps, spaces, and their current state. The dashboard now offers more visual clarity between activities. And now you can edit limits on your applications with a few clicks.

![Demonstration of edit mode on the cloud.gov dashboard app panel. User clicks “Modify allocation and scale” to change their application’s allocated memory and disk space.](../../img/cloud-gov_editapplimits.gif "Editing app limits in the dashboard")
![Demonstration of edit mode on the cloud.gov dashboard app panel. User clicks “Modify allocation and scale” to change their application’s allocated memory and disk space.]({{site.baseurl}}/img/cloud-gov_editapplimits.gif "Editing app limits in the dashboard")

### Interested in using cloud.gov?

Expand Down
2 changes: 1 addition & 1 deletion content/news/articles/2017-05-24-get-what-you-need.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ redirect_from:

The dashboard is the web-based interface for managing apps and services on cloud.gov. With the dashboard, you don’t need to use the command line to handle some of the basic tasks of managing applications on the platform. You can orient yourself more easily now with information we’ve added to some of the dashboard’s core tools. Meaningful error messages (for example, alerts about data retrieval issues) can help you troubleshoot. Prompts in empty fields (for example, an empty list of applications or users) help you figure out how to get started. If you have a cloud.gov account, [log in to get started](https://dashboard.fr.cloud.gov/). If you don’t but you have a federal government email address, you can [create a free sandbox](https://account.fr.cloud.gov/signup) to explore.

![Example of the text prompt that appears to someone who is the only user in their organization. It describes the user's ability to invite other users and then offers a link to more information about how to do so.](../../img/only_org_user.png)
![Example of the text prompt that appears to someone who is the only user in their organization. It describes the user's ability to invite other users and then offers a link to more information about how to do so.]({{site.baseurl}}/img/only_org_user.png)
_If you’re the only user in your organization, this prompt helps you figure out how to add more users. cloud.gov now has more information like this to help you orient yourself._

#### Strengthen your cloud.gov know-how with Cloud Foundry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Every quarter we update you with the important news about new features and updat

Managing users in your organization and granting them the permissions they need should be a straightforward process so your team can get to work building your app on cloud.gov. To make it easier for you and us, we built new features for inviting new users and giving them roles within your organization using the dashboard. With these changes, it's easy for even the least technical people on your team to invite new folks and manage their roles.

!["The user invitation screen with notification"](../../img/invite-users.png){:width=624,height=272}
!["The user invitation screen with notification"]({{site.baseurl}}/img/invite-users.png){:width=624,height=272}

#### Continuous improvement

Expand Down Expand Up @@ -47,10 +47,10 @@ If you have leftover funds at the end of the fiscal year and need a prototyping

The Federal Bureau of Investigation (FBI) recently launched their new Crime Data Explorer (CDE) on cloud.gov. 18F and the FBI partnered to make crime data more accessible to the American public. The CDE enables users to visualize national, state, and local crime trends and offers bulk datasets and an open API for more detailed views of the data. Check it out at: [https://crime-data-explorer.fr.cloud.gov/](https://crime-data-explorer.fr.cloud.gov/)

!["the fbi crime data explorer homepage" width="624" height="320"](../../img/ fbi-crime-data.png)
!["the fbi crime data explorer homepage" width="624" height="320"]({{site.baseurl}}/img/ fbi-crime-data.png)

#### Federal Election Commission

The Federal Election Commission (FEC) recently relaunched their flagship website, fec.gov, with cloud.gov. The FEC collects financial reports for all federal elections and discloses fundraising figures to the public. By hosting FEC.gov on cloud.gov and moving its data to the cloud, the FEC anticipates saving 85% in hosting costs and is better prepared for peak traffic events. Read a case study about the FEC here: [{{ site.baseurl }}/overview/customer-stories/fec/]({{ site.baseurl }}/overview/customer-stories/fec/) and check out their new, cloud.gov-hosted website at [https://www.fec.gov](https://www.fec.gov)

!["the new cloud.gov hosted fec homepage" width="624" height="320"](../../img/ fec-screen.png)
!["the new cloud.gov hosted fec homepage" width="624" height="320"]({{site.baseurl}}/img/ fec-screen.png)
2 changes: 1 addition & 1 deletion content/news/articles/2017-08-16-release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Curious what’s new that you might find helpful as a cloud.gov user? Here are h
### Changed

* On the dashboard, new error messages alert you when you try to remove someone from your organization who still has roles in your spaces.
<br/>![remove space user dashboard screen](../../img/remove-space-user.png)
<br/>![remove space user dashboard screen]({{site.baseurl}}/img/remove-space-user.png)
* Visualization of platform uptime available from the [cloud.gov status page](https://cloudgov.statuspage.io/). You can see current and the previous 90 days uptime for customer applications, API, dashboard, and many other components of the cloud.gov platform.

### Platform releases
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ We’ve been hard at work shipping out new features to help you make your apps b

Thanks to our antipodal compatriots with the [Australian Government Digital Transformation Agency](https://www.dta.gov.au/what-we-do/platforms/cloud/) for this code contribution.

!["Screenshot of the environment variable editing view on the dashboard in which a user-defined environment variable with the name 'app_version' has been assigned the value '1.0.1'"](../../img/dashboard-envs.png)
!["Screenshot of the environment variable editing view on the dashboard in which a user-defined environment variable with the name 'app_version' has been assigned the value '1.0.1'"]({{site.baseurl}}/img/dashboard-envs.png)

### Updates

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ redirect_from:
- /updates/2018-02-13-elasticsearch-56-upcoming-cloud-foundry-summit-and-platform-updates/
---

!["FEC case study illustration"](../../img/"fec-case-study-illo.svg")
!["FEC case study illustration"]({{site.baseurl}}/img/"fec-case-study-illo.svg")
### Announcements

- **In this featured [FEC Case Study]({{ site.baseurl }}/overview/customer-stories/fec/)**, find out how cloud.gov helps the agency ensure their applications are available, secure, and resilient. Want us to feature your agency? Drop us a line at [[email protected]](mailto:[email protected]?subject="Case%20Study").
Expand Down
2 changes: 1 addition & 1 deletion content/news/articles/2019-02-26-quarterly-update.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ There’s no denying the deep and abiding love that data analytics folks have fo

Many customers have told us they want to deploy apps built using R and Shiny on cloud.gov, and now it’s possible! Check out the [new R buildpack](https://docs.cloudfoundry.org/buildpacks/r/index.html). We’ve also published [a demonstration](https://github.com/18f/cf-rshiny-demo) showing how to run the the movie explorer application from the official [Shiny examples](https://github.com/rstudio/shiny-examples), pictured below.

!["R Shiny movie explorer application screenshot"](../../img/"r-shiny-demo.png"){:style="border:1px solid grey;"}
!["R Shiny movie explorer application screenshot"]({{site.baseurl}}/img/"r-shiny-demo.png"){:style="border:1px solid grey;"}

### Build edge-facing web engineering apps using the NGINX buildpack

Expand Down
Loading

0 comments on commit 5fd333a

Please sign in to comment.