Is there a way to traduce the user interface of WSO2 Governance Registry ??
I found a properties file for traducing messages prompted by WSO2 but i need to traduce also all the other components (buttons, labels ...)
Best regards
Please see the following links which give an example of localization/internationalization of WSO2 products. This is the same across all the WSO2 products as they share the same Carbon base.
[1] http://docs.wso2.org/display/AM150/Internationalization+and+Localization
[2] http://tanyamadurapperuma.blogspot.com/2013/10/localizing-wso2-carbon-products-part-1.html
Mifan
Related
There was a licensed version of CLIPS, called CLIPS/R2, which was for use in C/C++ implementations. The website contact information is a fax # which does not connect. (grossweb.com/pst/clipsr2) I sent a query using a form in the parent website too, and got no reply.
Does anyone have the source for CLIPS/R2? Or know where I can get it from? thanks!
We can modify the MaxRecordCount of published feature layer on arcgis server using the code mentioned on the following url:
http://server.arcgis.com/en/server/latest/administer/linux/example-edit-service-properties.htm
Can we use the same code to modify feature count of feature layer published on portal ArcGIS?
I believe you can. Try inserting "admin/" path in your hosted layer url between "/rest/" and "/services/", eg:
http://services1.arcgis.com/example/arcgis/rest/admin/services/MyFeature/FeatureServer/0?token=0xtokenhex0x
Here you should have access to the "Update Definition" link at the bottom which would allow you to change the "maxRecordCount" value. Hope this helps.
I see the is the ability to get all components of a project by doing
/project/[projectkey]/components
but I don't see any capability or documentation on how to get the list of labels that are available for a project (something like:
/project/[projectkey]/labels
Does the JIRA REST API support querying the list of labels available on a project?
Just to clarify, labels (at least the built-in JIRA ones) are global entities so they can be attached to any Issue in any Project.
As to your question - no, there's no public REST endpoint to get/change/add labels to JIRA.
Jira Cloud has /rest/api/3/label.
Jira Server provides /rest/api/2/jql/autocompletedata/suggestions?fieldName=labels which is however not paginated and only returns the first few labels (label values can be queried using &fieldValue=X).
However, as hacky workaround you can misuse the API endpoints some Atlassian Jira Gadgets are communicating with. Though this has the following disadvantages:
Are internal APIs
Atlassian apparently plans to replace Gadgets with Dashboard Items eventually
Might change behavior, see e.g. JRASERVER-67446
No pagination (?), responses can be huge
Responses are designed for Gadgets, therefore contain irrelevant data
Labels Gadget
/rest/gadget/1.0/labels/gadget/project-<PROJECT_ID>/labels
Where <PROJECT_ID> is the numeric ID of the project.
Heat Map Gadget
/rest/gadget/1.0/heatmap/generate?projectOrFilterId=<PROJECT_OR_FILTER>&statType=labels
Where <PROJECT_OR_FILTER> can be either:
project-<PROJECT_ID>
filter-<FILTER_ID>
I am trying to add applications into Brooklyn catalog. can anyone explain steps to add a new application to catalog.xml?
I did try the sample catalog provided at https://brooklyn.incubator.apache.org/v/0.7.0-M1/use/guide/quickstart/policies-and-catalogs.html . The application gets listed in catalog tab but when I try to launch it, it gets stuck at 'configuring'. Is there something else that needs to be done ?
I tried adding existing application to catalog ( https://brooklyn.incubator.apache.org/v/latest/ops/catalog/index.html ) but it failed. Can anyone help me with this ?
I'd strongly recommend upgrading to 0.7.0-M2-incubating, as the catalog has significantly improved since 0.7.0-M1. The documentation at https://brooklyn.incubator.apache.org/v/latest/ops/catalog/index.html describes the steps for 0.7.0-M2-incubating; they will not work for 0.7.0-M1.
The link to an explicit version of the docs (rather than latest) is https://brooklyn.incubator.apache.org/v/0.7.0-M2-incubating/ops/catalog/index.html
There are also more improvements in snapshot (and in existing pull requests), if you fancy trying the bleeding edge!
For the 0.7.0-M1 error "gets stuck at configuring", we'd need more info (e.g. logs, etc). Suggest you e-mail the mailing list or jump on IRC if it's still a problem (https://brooklyn.incubator.apache.org/community/mailing-lists.html).
We are using the Advanced Developer Extension against Dynamics CRM 4.0. We have generated the entities and the Xrm context using CrmSvcUtil.
What we need to do is disable the built in caching that the context uses as it is returning incorrect results, but I've been unable to find out how to do this - any ideas ?
Thanks
Matt
Take a look at these links
http://arens.ws/wordpress/?p=54
http://community.adxstudio.com/Default.aspx?DN=d589dc6c-b2bf-4ae1-a8ca-06ac55f2a177&topic=40f3987f-9600-4a75-84f8-1dcffcfbd875&page=1
http://msdn.microsoft.com/en-us/library/gg398020.aspx
Ok - found the answer at this site
CacheManager.GetBaseCache().Remove("adxdependency:crm:entity:[entityschemaname]");
Obviously replace [entityschemaname] with the schema name of the entity that you want to remove from the cache :-)