Commit Graph

13203 Commits

Author SHA1 Message Date
Nitin Mehta 7a06da8520 bug CS-10789: Some more code to make the Uploav volume more robust. 2012-05-02 11:24:46 +05:30
prachi 3eb95b9b5f More changes to testclient 2012-05-01 19:04:53 -07:00
Alena Prokharchyk 8cb97f47dc build-all: give more RAM to compile-aws 2012-05-01 17:08:32 -07:00
Alena Prokharchyk 57892fef6b Added another testclient 2012-05-01 16:51:14 -07:00
Sheng Yang e34fcff9b9 Don't bring up eth2 for booting process of redundant router 2012-05-01 16:21:02 -07:00
Sheng Yang 90774621f1 Fix keepalived process not started issue 2012-05-01 16:20:48 -07:00
bfederle c45412cc7c Better tab BG appearance for VLAN range step 2012-05-01 15:51:37 -07:00
bfederle c32611abf9 Infrastructure UI: remove button
Remove old 'view all' button from corner of infrastructure chart
2012-05-01 15:51:37 -07:00
frank 97b54c9c2b remove log4j-cloud-bridge.xml
CloudBridge no longer uses separate log4j configure
2012-05-01 09:48:18 -07:00
frank 22f20e5fb9 add CloudStack.cfg.xml from cloudbridge conf folder to cloudstack conf folder 2012-05-01 09:28:28 -07:00
Salvatore Orlando 4643e403ff Finishing merge with 3.0.x 2012-05-01 15:08:51 +01:00
Nitin Mehta 540f4e1431 bug CS-10789: Put zone id in the volumehost ref table. make list volume to show the percent uploaded. 2012-05-01 18:36:31 +05:30
Salvatore Orlando 6257af95ed Now really adding the renamed files! 2012-05-01 13:59:16 +01:00
Salvatore Orlando 3d654fdd5e Rename cloudbridge and cloudbridge-setup to awsapi and awsapi-setup 2012-05-01 13:51:32 +01:00
JohnZ a94e7a2311 Provide plain POST operation whose purpose is to add an object to a
specified bucket using HTML forms
2012-05-01 13:51:30 +01:00
JohnZ 7839fd70de Copy object capability 2012-05-01 13:51:29 +01:00
JohnZ 1677f52849 additional utils 2012-05-01 13:51:28 +01:00
JohnZ 82b59ee1da executePutBucketAcl, executePutObjectAcl 2012-05-01 13:51:27 +01:00
JohnZ f05e3dd456 Removal of S3SoapService from solution 2012-05-01 13:51:26 +01:00
JohnZ 75581130d7 multipart upload completion and cancellation 2012-05-01 13:51:25 +01:00
Salvatore Orlando 6821139896 Fixing response generation for multipart upload 2012-05-01 13:51:24 +01:00
JohnZ df4eb587c2 Auth correct for uploads 2012-05-01 13:51:23 +01:00
JohnZ 6b6877b3cb Before temp acl branch 2012-05-01 13:51:22 +01:00
JohnZ 7feadce072 StringToSign more cases 2012-05-01 13:51:21 +01:00
JohnZ 8d31027246 calculateRFC2104HMAC focus 2012-05-01 13:51:21 +01:00
JohnZ 7c28106803 =Multi-object delete in a single command not yet implemented 2012-05-01 13:51:20 +01:00
JohnZ c8cc286658 Fix to cloudAction with pem cert 2012-05-01 13:51:19 +01:00
JohnZ b5d43dcbf9 =Further fix to ETag 2012-05-01 13:51:18 +01:00
JohnZ d4e81ab525 modified: cloudbridge/src/com/cloud/bridge/service/S3RestServlet.java
modified:   cloudbridge/src/com/cloud/bridge/service/controller/s3/S3ObjectAction.java
	modified:   cloudbridge/src/com/cloud/bridge/service/core/s3/S3PutObjectInlineResponse.java
2012-05-01 13:51:17 +01:00
JohnZ 542a399957 Correction to auth 2012-05-01 13:51:16 +01:00
JohnZ 5b3c338de2 Correction to objects in buckets 2012-05-01 13:51:15 +01:00
JohnZ 6ced6b1a90 new file: .project
new file:   .project.general
	modified:   cloudbridge/src/com/cloud/bridge/io/MTOMAwareResultStreamWriter.java
	new file:   cloudbridge/src/com/cloud/bridge/util/DatabindingConverterUtil.java
	modified:   cloudbridge/src/com/cloud/bridge/util/ISO8601SimpleDateTimeFormat.java
2012-05-01 13:51:14 +01:00
JohnZ f143902e45 S3 Result changes using MTOMAwareResultStreamWriter 2012-05-01 13:51:13 +01:00
prachi 04e63e494d Integration of CloudBridge to CloudStack codebase.
- Changes to dev environment build scripts.
2012-05-01 13:51:09 +01:00
Brian Federle c9eac5799b Add list view tests 2012-05-01 13:48:42 +01:00
Brian Federle 19ffa64980 Add field ID to list view <th>s 2012-05-01 13:48:41 +01:00
Brian Federle d9e8853d6b bug 14093
Uncheck conditional fields to be hidden, to avoid hidden services from
accidentally being enabled
2012-05-01 13:48:40 +01:00
Brian Federle 027aa4aadc bug 14093
Don't show specific provider fields on add network offering if in
Advanced/Shared configuration:

-Source NAT
-Static NAT
-PF
-LB
2012-05-01 13:48:36 +01:00
Vijayendra Bhamidipati f601db1304 Bug 14060: Include a CloudStack error code in an Exception Response
Bug 13127: API error text refer to database ids instead of uuids

Code-Reviewers: Ewan Mellor, Kelven Yang

Description:

	1. A new class CSExceptionErrorCode has been added to utils.
	   It contains a list of error codes for each type of
	   Exception class. Use fully qualified package paths for
	   Exceptions in CSExceptionErrorCode.  We log any exception
	   name not found in the list of error codes for exceptions.

	2. Whenever we throw an exception exobj anywhere in the
	   CS code, the CSErrorCode is set in the base class
	   constructor.

	3. We add a new field csErrorCode in classes CloudException,
	   RuntimeCloudException, ExecutionException and
	   ExceptionResponse.

	4. Two places in ApiServer.java were wrongly modified when
	   putting in changes for bug 13127 to not throw an exception.
	   This has been corrected in this commit.
2012-05-01 13:48:15 +01:00
Brian Federle 220e9136d5 UI: Add notification tests 2012-05-01 13:47:31 +01:00
bfederle 294caa0217 Add base notification tests 2012-05-01 13:47:30 +01:00
bfederle 62b41f77ff Add more browser tests 2012-05-01 13:47:29 +01:00
bfederle e83ae475c8 Reorganize core UI widgets 2012-05-01 13:47:28 +01:00
bfederle 7950399ef8 Add browser UI widget tests 2012-05-01 13:47:27 +01:00
Jessica Tomechak eaaea07473 Update documentation source files. 2012-05-01 13:47:26 +01:00
bfederle 011ae5b063 Add more core UI tests 2012-05-01 13:47:25 +01:00
Likitha Shetty 36473c1c14 Bug-14029 Lock account confirmation message is not entirely visible. [reviewed-by: Brian] 2012-05-01 13:47:24 +01:00
Brian Federle 0f4f1049a7 Add tests for navigation and homepage; basic fixes 2012-05-01 13:47:23 +01:00
Brian Federle 15ef1c8b6d Add some basic tests 2012-05-01 13:47:22 +01:00
Brian Federle 33a066def4 Only show invitations if projects UI is initialized 2012-05-01 13:47:20 +01:00