Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0580310562 for ; Fri, 27 Sep 2013 17:32:26 +0000 (UTC) Received: (qmail 95976 invoked by uid 500); 27 Sep 2013 17:32:25 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 95953 invoked by uid 500); 27 Sep 2013 17:32:25 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 95945 invoked by uid 99); 27 Sep 2013 17:32:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Sep 2013 17:32:25 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_FILL_THIS_FORM_SHORT X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Sep 2013 17:32:17 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 0A70F2388CB2; Fri, 27 Sep 2013 17:31:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1526989 [3/3] - in /cloudstack/site/trunk: content/ content/css/ content/develop/ content/docs/api/ templates/ Date: Fri, 27 Sep 2013 17:31:54 -0000 To: commits@cloudstack.apache.org From: chipchilders@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130927173155.0A70F2388CB2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: cloudstack/site/trunk/content/developers.mdtext URL: http://svn.apache.org/viewvc/cloudstack/site/trunk/content/developers.mdtext?rev=1526989&view=auto ============================================================================== --- cloudstack/site/trunk/content/developers.mdtext (added) +++ cloudstack/site/trunk/content/developers.mdtext Fri Sep 27 17:31:53 2013 @@ -0,0 +1,183 @@ +Title: Developer Resources for Apache CloudStack + +
+ +
+ + + +
+ +
+ +
+ +
+ +

Contributing as a Non-Committer

+ +

If you're a committer on an Apache project, it means that you can commit directly to the project's repository. For instance, with Apache CloudStack committers are allowed to directly push commits into the git repository.

+ +

Non-committers, however, have to submit patches for review. Don't worry, it's not an onerous process at all. The first time you submit a patch, it will take a minute or two to create an account on Review Board, but it's a piece of cake from start to finish.

+ +

Assumptions

+ +

For the purpose of this post, we'll assume that you already have a system with Git and have found a bug to fix or have a feature that you'd like to submit, and you're willing to contribute that code or documentation under the Apache License 2.0.

+ +

Further, if you're fixing a bug we'll assume that you've either filed a bug report or are submitting a fix for a known bug. If you find a bug and would like to fix it, that's awesome! Please be sure to file the bug too, though.

+ +

If you want to add a feature, you should bring it up for discussion on the dev@cloudstack.apache.org mailing list before implementing it. This ensures that it meshes with the plans that other contributors have for Apache CloudStack, and that you're not doing redundant work. Other developers may also have ideas for the feature or suggestions that will help you land the feature without having to re-do the work. More information about our mailing lists can be found here.

+ +

In short, communication is a vital part of making a contribution to an Apache project.

+ +

Getting Started

+ +

First, lets make sure that you've added your name and email to your `~/.gitconfig`:

+ +
+$ git config --global user.name "Your Name"
+$ git config --global user.email you@domain.com
+
+ +

You'll grab the CloudStack source with git:

+ +
+$ git clone https://git-wip-us.apache.org/repos/asf/cloudstack.git
+
+ +

If you already have the source, make sure you're working with the most recent version. Do a `git pull` if you cloned the source more than a few hours ago. (Apache CloudStack development can move pretty fast!)

+ +
+$ git checkout -b mybranch
+
+ +

This does two things: One, it creates the branch mybranch and two, it changes your working branch to mybranch. Running `git branch` will show you which branch you're working on, with an asterisk next to the active branch, like so:

+ +
+[user@localhost cloudstack]$ git branch
+  master
+  * mybranch
+  
+ +

Make whatever changes you're going to make, be sure to use git add to stage the changes, and then you're going to commit the changes to your working branch:

+ +
git commit -m "Insert a meaningful summary of changes here."
+ +

Finally, you're going to create a patch to upload to Review Board:

+ +
git format-patch master --stdout > ~/patch-name.patch
+ +

Using Review Board

+ +

Review Board is the main method of sending patches to the Apache CloudStack project. That's not to say that a patch sent directly to the mailing list will be ignored, but the strong preference is that patches be submitted through Review Board. Don't worry, it's a very easy tool to use.

+ +

If you haven't already, create an account with Review Board. Registering only requires an email address, first name, and last name. After you're registered, head to New Review Request and select the repository (cloudstack-git) and upload the patch (diff) created with git.

+ +

Click Create Review Request and then fill out the information required. Specifically:

+ +
    +
  1. Summary
  2. +
  3. Groups (choose cloudstack)
  4. +
  5. People (only use if you need specific committers to review changes)
  6. +
  7. Description
  8. +
  9. Testing Done
  10. +
+ +

The Summary will be the subject that's sent to the cloudstack-dev mailing list. So if your summary is "fixed feature foo" the subject of the mail sent to the list will be "Review Request: fixed feature foo". Try to be descriptive with the Summary. If you're submitting a patch for a bug, please be sure to include the bug number in the summary. (Like "Bugfix CS-15942: Fixing problem with redundant routers.")

+ +

The description should be a full description of what you've done. Please be specific, and include enough information that any reviewer will be able to look at your patch without asking for follow-up information. You need to include the bug ID that your patch relates to as well (ex: CLOUDSTACK-XXX ).

+ +

If you're submitting a patch that modifies code, adds features, etc. you should test before submitting. Please be sure to describe your tests here.

+ +

Once you're sure everything is OK, go ahead and submit the patch. But that's not the end of the process. The work isn't done until the patch is committed!

+ +

Review

+ +

Once you've submitted your patch, you should receive a response within a few days. If you receive no response within a week, please ping the cloudstack-dev mailing list. One of the features of Review Board is that shows all of the requests and when they were posted, and the committers know that they should be responsible for reviewing patches in a timely fashion.

+ +

When your patch is reviewed, it may be accepted as-is or you may be asked to make changes. If you're asked to make changes, please work with the committer to see the patch through to acceptance.

+ +

If the patch is accepted and committed, you have one last task (don't worry, it's minor and kind of satisfying).

+ +

Go back to Review Board, click My Dashboard and then Outgoing Reviews. Go to your submission, you should see a "Ship it!" message from the reviewer. Click the Close button and choose Submitted. The status has now changed from pending to submitted.

+ +

That's it – you've helped make Apache CloudStack a better project. Thanks!

+ +

Screencast

+ +

If you are new to git you might want to watch this screencast:

+ + + +

Further Reading

+ +

You might want to peruse the Get Involved page on Apache.org, and the On Contributing Patches doc as well. Note that some of that does not apply to Apache CloudStack, as we're using git rather than Subversion. But do respect the original style of the CloudStack code, and ensure that you're using spaces rather than tabs, and your patches have Unix line endings (LF) rather than Windows-type line endings (CRLF).

+ +
+ +
+ + + + + + +
+ +
+ +

Git Repositories

+ +
+ +
+ +

The git repositories are hosted on Apache infrastructure, and can be found here:

+ + + +

To get the most recent source for Apache CloudStack, use:

+ +
+git clone https://git-wip-us.apache.org/repos/asf/cloudstack.git
+
+ +

Similarly, clone the cloudstack-cloudmonkey repository to get access to the most recent source for CloudMonkey.

+ +

For projects related to Apache CloudStack, see the CloudStack-extras repositories on GitHub.

+ +
+ +
+ + +
+ +
Modified: cloudstack/site/trunk/content/docs/api/index.mdtext URL: http://svn.apache.org/viewvc/cloudstack/site/trunk/content/docs/api/index.mdtext?rev=1526989&r1=1526988&r2=1526989&view=diff ============================================================================== --- cloudstack/site/trunk/content/docs/api/index.mdtext (original) +++ cloudstack/site/trunk/content/docs/api/index.mdtext Fri Sep 27 17:31:53 2013 @@ -1,10 +1,25 @@ -Title: Apache CloudStack API Docs +Title: Apache CloudStack API Documentation -# What's here -You'll find versioned API reference material for Apache CloudStack broken -down by the default permission schemes (root admin, domain admin, and user). +
-# Versions here +
+ + + +
+ +
+ +Below are API reference material for Apache CloudStack, provided by major feature version. Each feature version supports three levels of access, and the available API commands for each level are provided seperately. + +If you find problems or see ways in which this API reference can be enhanced +we would welcome your help, please file a bug in the +[CloudStack bug tracker](https://issues.apache.org/jira/browse/CLOUDSTACK) +or by submitting a patch. ## 4.2.x @@ -24,12 +39,3 @@ down by the default permission schemes ( * [Domain Admin API](apidocs-4.0.0/TOC_Domain_Admin.html) * [User API](apidocs-4.0.0/TOC_User.html) - -# Problems, enhancements - -If you find problems or see ways in which this API reference can be enhanced -we would welcome your help, please file a bug in the -[CloudStack bug tracker](https://issues.apache.org/jira/browse/CLOUDSTACK) -or by submitting a patch. - - Modified: cloudstack/site/trunk/content/downloads.mdtext URL: http://svn.apache.org/viewvc/cloudstack/site/trunk/content/downloads.mdtext?rev=1526989&r1=1526988&r2=1526989&view=diff ============================================================================== --- cloudstack/site/trunk/content/downloads.mdtext (original) +++ cloudstack/site/trunk/content/downloads.mdtext Fri Sep 27 17:31:53 2013 @@ -1,29 +1,124 @@ Title: Apache CloudStack Downloads -#Latest Release +
-## Official Source Code Release +
-The latest release of Apache CloudStack can be downloaded from here: + -Instructions for building from source and installing Apache CloudStack can be found in the [Installation Guide](http://cloudstack.apache.org/docs/en-US/Apache_CloudStack/4.2.0/html/Installation_Guide/index.html). +
-Instructions for building from source and upgrading from a previous version of CloudStack to Apache CloudStack 4.2.0 can be found in the upgrade section of the [Release Notes](http://cloudstack.apache.org/docs/en-US/Apache_CloudStack/4.2.0/html/Release_Notes/upgrade-instructions.html). +
-## Getting CloudStack from a Package Repository +
-For easier installation or upgrades, the official source code release has been supplemented by community members who have chosen to provide package repositories. +
-* DEB package repository: [http://cloudstack.apt-get.eu/ubuntu](http://cloudstack.apt-get.eu/ubuntu) -* RPM package repository: [http://cloudstack.apt-get.eu/rhel/4.2/](http://cloudstack.apt-get.eu/rhel/4.2/) +
-Instructions for using these community provided repositories can be found in the [Configure package repository](http://cloudstack.apache.org/docs/en-US/Apache_CloudStack/4.2.0/html/Installation_Guide/configure-package-repository.html) section of the Installation Guide. +

Source Release

-## Getting the CloudMonkey CLI Tool +

Apache CloudStack's most current release is 4.2.0. +

+ +

+ + + + + + + +

+ +

Full release notes can be found in the Version 4.2.0 Release Notes document.

+ +

Instructions for building from source and installing Apache CloudStack can be found in the Installation Guide.

+ +

Instructions for building from source and upgrading from a previous version of CloudStack to Apache CloudStack 4.2.0 can be found in the upgrade section of the Releaes Notes.

+ +

Packages

+ +

For easier installation or upgrades, the official source code release has been supplemented by community members who have chosen to provide package repositories.

+ + + +

Instructions for using these community provided repositories can be found in the Configure Package Repository section of the Installation Guide.

+ +
+ +
+ +
+ +
+ +

Verifying Downloads

+ +
+ +
+ +

+It's essential that you verify the integrity of the downloaded files using the PGP or MD5 signatures. +The PGP signatures can be verified using PGP or GPG. First download the +KEYS as well as the asc +signature file for the relevant distribution. Make sure you get these files from the +main distribution directory, rather than from a mirror. Then verify the signatures using: +

+
+    % pgpk -a KEYS
+    % pgpv apache-cloudstack-X.X.X-src.tar.bz2.asc
+
+

or

+
+    % pgp -ka KEYS
+    % pgp apache-cloudstack-X.X.X-src.tar.bz2.asc
+
+

or

+
+    % gpg --import KEYS
+    % gpg --verify apache-cloudstack-X.X.X-src.tar.bz2.asc
+
+

+Additionally, you can verify the MD5 or SHA512 signatures on the files. +

+ +
+ +
+ +
+ +
+ +
+ + + + + + +
+ +
+ + + +
+ +
The latest source code release of Apache CloudStack's CloudMonkey CLI tool can be downloaded from here: @@ -42,45 +137,22 @@ Thought a clean upgrade is recommended: $ pip uninstall cloudmonkey $ pip install cloudmonkey -## Verify the integrity of the files - -It is essential that you verify the integrity of the downloaded files using the PGP or MD5 signatures. -The PGP signatures can be verified using PGP or GPG. First download the -[KEYS](https://dist.apache.org/repos/dist/release/cloudstack/KEYS) as well as the asc -signature file for the relevant distribution. Make sure you get these files from the -main distribution directory, rather than from a mirror. Then verify the signatures using: - - % pgpk -a KEYS - % pgpv apache-cloudstack-4.0.2-src.tar.bz2.asc - -or - - % pgp -ka KEYS - % pgp apache-cloudstack-4.0.2-src.tar.bz2.asc - -or - - % gpg --import KEYS - % gpg --verify apache-cloudstack-4.0.2-src.tar.bz2.asc - -Additionally, you can verify the MD5 or SHA512 signatures on the files. (If you're checking an earlier version of CloudStack, replace the version number as appropriate.) -#Apache CloudStack Git Repository + -The git repositories are hosted on Apache infrastructure, and can be found here: +
-- Apache CloudStack [https://git-wip-us.apache.org/repos/asf/cloudstack.git](https://git-wip-us.apache.org/repos/asf/cloudstack.git) -- Apache CloudStack CloudMonkey [https://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey.git](https://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey.git) +
-To get the most recent source for Apache CloudStack, use: + -For projects related to Apache CloudStack, see the [CloudStack-extras repositories on GitHub](https://github.com/cloudstack-extras). +
-#Older CloudStack Releases +
* [apache-cloudstack-4.1.1.src.tar.bz2](http://archive.apache.org/dist/cloudstack/releases/4.1.1/apache-cloudstack-4.1.1-src.tar.bz2) [ [PGP](http://archive.apache.org/dist/cloudstack/releases/4.1.1/apache-cloudstack-4.1.1-src.tar.bz2.asc) ][ [MD5](http://archive.apache.org/dist/cloudstack/releases/4.1.1/apache-cloudstack-4.1.1-src.tar.bz2.md5) ][ [SHA512](http://archive.apache.org/dist/cloudstack/releases/4.1.1/apache-cloudstack-4.1.1-src.tar.bz2.sha) ] * [apache-cloudstack-4.1.0.src.tar.bz2](http://archive.apache.org/dist/cloudstack/releases/4.1.0/apache-cloudstack-4.1.0-src.tar.bz2) [ [PGP](http://archive.apache.org/dist/cloudstack/releases/4.1.0/apache-cloudstack-4.1.0-src.tar.bz2.asc) ][ [MD5](http://archive.apache.org/dist/cloudstack/releases/4.1.0/apache-cloudstack-4.1.0-src.tar.bz2.md5) ][ [SHA512](http://archive.apache.org/dist/cloudstack/releases/4.1.0/apache-cloudstack-4.1.0-src.tar.bz2.sha) ] @@ -93,4 +165,4 @@ Releases of CloudStack as a Citrix proje Please note the the released listed below are NOT Apache project releases. These links are being provided to the user community, as a convenience only. - [Binaries for Red Hat Enterprise Linux 6.2 and CentOS 6.2](http://sourceforge.net/projects/cloudstack/files/CloudStack%20Acton/3.0.2/CloudStack-oss-3.0.2-1-rhel6.2.tar.gz/download) -- [Binaries for Ubuntu 10.04 LTS](http://sourceforge.net/projects/cloudstack/files/CloudStack%20Acton/3.0.2/CloudStack-oss-3.0.2-1-ubuntu10.04.tar.gz/download) \ No newline at end of file +- [Binaries for Ubuntu 10.04 LTS](http://sourceforge.net/projects/cloudstack/files/CloudStack%20Acton/3.0.2/CloudStack-oss-3.0.2-1-ubuntu10.04.tar.gz/download) Added: cloudstack/site/trunk/content/history.mdtext URL: http://svn.apache.org/viewvc/cloudstack/site/trunk/content/history.mdtext?rev=1526989&view=auto ============================================================================== --- cloudstack/site/trunk/content/history.mdtext (added) +++ cloudstack/site/trunk/content/history.mdtext Fri Sep 27 17:31:53 2013 @@ -0,0 +1,25 @@ +Title: History of Apache CloudStack + +
+ +
+ + + +
+ +
+ +The CloudStack project began as a project of a start-up known as VMOps in 2008. The company eventually changed its name to Cloud.com, and it released much of the source to CloudStack in May 2010 under the GNU General Public License version 3 (GPLv3). + +Cloud.com was purchased in July 2011 by Citrix, and the remainder of CloudStack's code was released (again, under the GPLv3) in August 2011. Citrix released CloudStack 3.0 in early 2012. + +In April 2012, Citrix re-licensed CloudStack under the Apache Software License 2.0 (ASLv2) and submitted CloudStack to the [Apache Incubator](http://incubator.apache.org/). It was [accepted into the Incubator on April 16th, 2012](http://incubator.apache.org/projects/cloudstack.html). + +After getting its infrastructure and community processes in place, CloudStack made its first major release (4.0.0-incubating) from the Apache Incubator on November 6th, 2012. The first minor release (4.0.1-incubating) came out on February 12, 2013. + +Apache CloudStack graduated from the Incubator on March 20, 2013, and the announcement was released on [March 25, 2013](https://blogs.apache.org/cloudstack/entry/the_apache_software_foundation_announces). Modified: cloudstack/site/trunk/content/index.mdtext URL: http://svn.apache.org/viewvc/cloudstack/site/trunk/content/index.mdtext?rev=1526989&r1=1526988&r2=1526989&view=diff ============================================================================== --- cloudstack/site/trunk/content/index.mdtext (original) +++ cloudstack/site/trunk/content/index.mdtext Fri Sep 27 17:31:53 2013 @@ -1,22 +1,152 @@ Title: Apache CloudStack: Open Source Cloud Computing -## What is CloudStack? +
+
+ +
+ +
+ +
+ +
+ +

Apache CloudStack™

+ +

Open Source Cloud Computing™

+ +
+ +
+ + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +About CloudStack + +
+ +
+ +

Apache CloudStack is open source software designed to deploy and manage large networks of virtual machines, as a highly available, highly scalable Infrastructure as a Service (IaaS) cloud computing platform. CloudStack is used by a number of service providers to offer public cloud services, and by many companies to provide an on-premises (private) cloud offering, or as part of a hybrid cloud solution. +

+

CloudStack is a turnkey solution that includes the entire "stack" of features most organizations want with an IaaS cloud: compute orchestration, Network-as-a-Service, user and account management, a full and open native API, resource accounting, and a first-class User Interface (UI). +

-CloudStack currently supports the most popular hypervisors: VMware, KVM, XenServer and Xen Cloud Platform (XCP). +

+CloudStack currently supports the most popular hypervisors: VMware, KVM, XenServer and Xen Cloud Platform (XCP). +

+

Users can manage their cloud with an easy to use Web interface, command line tools, and/or a full-featured RESTful API. In addition, CloudStack provides an API that's compatible with AWS EC2 and S3 for organizations that wish to deploy hybrid clouds. +

+ + + +
+ +
+ +
+ +
+ +Join Us + +
+ +
+ +

+Learn more about getting involved with Apache CloudStack on the Contributing to Apache CloudStack page, or go straight to our Developer Resources page. +

+ +
+ +
+ +
+ +
+ +
+ +
+ +Get CloudStack + +
+ +
+ +

Apache CloudStack 4.2.0 is out!

+ +

+Looking to other versions of Apache CloudStack? You can find our archives on the download page as well. +

+ + + +
+ +
+ +
+ +
+ +CloudStack Collaboration Conference + +
+ +
+ +

+The Apache CloudStack community will be coming together for our third collaboration conference in Amsterdam on November 20th through 22nd. If you're a CloudStack user, developer or integrator, this is the conference for you! +

+ + + +
+ +
+ +
+ +
What are people saying?
-## Get CloudStack +
-Looking to download Apache CloudStack? You can find the most recent release and download instructions on the [download page](http://cloudstack.apache.org/downloads.html). The most recent release is Apache CloudStack 4.1.1. + + -You can also download the source code [via the Apache CloudStack git repository](https://git-wip-us.apache.org/repos/asf?p=cloudstack.git). +
-## Get Involved +
-Learn more about getting involved with Apache CloudStack on the [Contributing to Apache CloudStack](http://cloudstack.apache.org/contribute.html) page. +
+
Modified: cloudstack/site/trunk/content/mailing-lists.mdtext URL: http://svn.apache.org/viewvc/cloudstack/site/trunk/content/mailing-lists.mdtext?rev=1526989&r1=1526988&r2=1526989&view=diff ============================================================================== --- cloudstack/site/trunk/content/mailing-lists.mdtext (original) +++ cloudstack/site/trunk/content/mailing-lists.mdtext Fri Sep 27 17:31:53 2013 @@ -1,6 +1,18 @@ Title: Apache CloudStack Mailing Lists -#Apache CloudStack Mailing Lists +
+ +
+ + + +
+ +
If you're interested in learning more or participating in the Apache CloudStack project, the mailing lists are the best way to do that. While the project has several communications channels, the mailing lists are the most active and the official channels for making decisions about the project itself. ["If it didn't happen on a mailing list, it didn't happen."](http://community.apache.org/newbiefaq.html#NewbieFAQ-IsthereaCodeofConductforApacheprojects?") Modified: cloudstack/site/trunk/content/security.mdtext URL: http://svn.apache.org/viewvc/cloudstack/site/trunk/content/security.mdtext?rev=1526989&r1=1526988&r2=1526989&view=diff ============================================================================== --- cloudstack/site/trunk/content/security.mdtext (original) +++ cloudstack/site/trunk/content/security.mdtext Fri Sep 27 17:31:53 2013 @@ -1,10 +1,22 @@ -Title: Apache CloudStack: Security +Title: Apache CloudStack Security -## Apache CloudStack Security +
+ +
+ + + +
+ +
The Apache CloudStack project understands that as a core infrastructure project, the application security of Apache CloudStack is of critical importance to the community and users. -### Apache CloudStack Security Team +## Apache CloudStack Security Team The PMC has decided to create a "Security Team" for CloudStack. The Security Team's charter is to manage the response to vulnerabilities reported with Apache CloudStack. This includes communication with the report, issue verification, issue correction, public communication creation, and vendor coordination. The Security Team may ask assistance from other community members to help verify or correct a reported issue. @@ -12,7 +24,9 @@ Members of the PMC are eligible to join Community members engaged by the Security Team are expected to hold the issue in confidence until public announcement of the vulnerability. This protects the users of the software and gives reasonable time for the response process to be implemented. Further information can be found on the ASF's [How it Works](http://www.apache.org/foundation/how-it-works.html) page. -### Reporting Potential Vulnerabilities in Apache CloudStack +The CloudStack security team works closely with, and under the direction of, the [ASF security team](http://www.apache.org/security/). + +## Reporting Potential Vulnerabilities in Apache CloudStack If you've found an issue that you believe is a security vulnerability in a released version of CloudStack, please report it to [security@cloudstack.apache.org](mailto:security@cloudstack.apache.org) with details about the vulnerability, how it might be exploited, and any additional information that might be useful. @@ -20,7 +34,7 @@ Upon notification, the ACS security team The security team asks that you **please do not create publicly-viewable JIRA tickets related to the issue**. If validated, a JIRA ticket with the security flag set will be created for tracking the issue in a non-public manner. -### Procedure for Responding to Potential Security Issues +## Procedure for Responding to Potential Security Issues
  • Upon receiving notice of a potential security issue, a security team member will create a bug to track the investigation, this bug must be flagged as a security issue. Security flag should mean contents of ticket are not visible to non-security team members @@ -50,7 +64,7 @@ The security team asks that you **please
  • After the vulnerability is addressed, the CloudStack community should review development processes to see how the community can minimize the chance of similar vulnerabilities being introduced in the future.
-### For further information +## For further information Further information about Apache CloudStack's security practices can be found in the [CloudStack Security wiki page](https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudStack+Security). Modified: cloudstack/site/trunk/content/trademark-guidelines.mdtext URL: http://svn.apache.org/viewvc/cloudstack/site/trunk/content/trademark-guidelines.mdtext?rev=1526989&r1=1526988&r2=1526989&view=diff ============================================================================== --- cloudstack/site/trunk/content/trademark-guidelines.mdtext (original) +++ cloudstack/site/trunk/content/trademark-guidelines.mdtext Fri Sep 27 17:31:53 2013 @@ -1,4 +1,18 @@ -# Trademark Guidelines for the Apache CloudStack Project +Title: Apache CloudStack Trademark Guidelines + +
+ +
+ + + +
+ +
Apache CloudStack, CloudStack, the CloudStack word design, the Apache CloudStack word design, the cloud monkey logo, either separately or in Modified: cloudstack/site/trunk/content/who.mdtext URL: http://svn.apache.org/viewvc/cloudstack/site/trunk/content/who.mdtext?rev=1526989&r1=1526988&r2=1526989&view=diff ============================================================================== --- cloudstack/site/trunk/content/who.mdtext (original) +++ cloudstack/site/trunk/content/who.mdtext Fri Sep 27 17:31:53 2013 @@ -1,14 +1,26 @@ -Title: Apache CloudStack: Who We Are +Title: Apache CloudStack Project Membership -## Who We Are +
+ +
+ + + +
+ +
This page includes all of the Apache CloudStack Project Management Committee (PMC) members and committers, and their ASF usernames. -### PMC +## PMC **Alex Huang** (ahuang) @@ -53,7 +65,7 @@ This page includes all of the Apache Clo **William Chan** (willchan) -### Committers +## Committers **Ahmad Emneina** (ahmad) Modified: cloudstack/site/trunk/templates/skeleton.html URL: http://svn.apache.org/viewvc/cloudstack/site/trunk/templates/skeleton.html?rev=1526989&r1=1526988&r2=1526989&view=diff ============================================================================== --- cloudstack/site/trunk/templates/skeleton.html (original) +++ cloudstack/site/trunk/templates/skeleton.html Fri Sep 27 17:31:53 2013 @@ -6,8 +6,8 @@ - + {% if headers.atom %} {% endif %} - - - - -
-
-
-
- -
-
-
- +