123456789101112131415161718192021222324252627282930313233343536373839 |
- /*******************************************************************************
- * IBM Confidential
- *
- * OCO Source Materials
- *
- * A and PM: PD
- *
- * (c) Copyright IBM Corp. 2014, 2015
- *
- * The source code for this program is not published or otherwise divested of
- * its trade secrets, irrespective of what has been deposited with the U.S.
- * Copyright Office.
- ******************************************************************************/
- require([
- "dojo/_base/declare",
- "pd/ui/_base",
- "dojo/domReady!"
- ],function(declare, _base){
- declare("pd/ui/fileUploader", [_base], {
- mode: pd.statics.MODE_NORMAL,
-
- renderMainContent: function(pdSpecValue) {
- this._renderMainContent(pdSpecValue);
- },
-
- getDataSetName: function() {
- return this._getFileName();
- },
-
- getTargetUrl: function() {
- return g_pd_gateway + "/metadataUIService?pid=pdm_process&c=processLOBData"
- + "&repositoryName="+encodeURIComponent(this.repositoryName)
- + "&repositoryConnection="+encodeURIComponent(this.repositoryConnection)
- + "&repositorySignon="+encodeURIComponent(this.repositorySignon);
-
- }
- });
- });
|