Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2016-05-10Bug 482244: [RobotML][hudson]: deletion of robotml Francois Le Fevre - CEA1466-394038/+0
-removing all robotml except doc references and profil references Change-Id: If95752ec4daa2b10517e87c4d01b99b0647073cb Signed-off-by: Francois Le Fevre - CEA <francois.le-fevre@cea.fr>
2016-03-03Bug 485220: [Architecture] Provide a more modular architectureChristian W. Damus16-4/+2816
https://bugs.eclipse.org/bugs/show_bug.cgi?id=485220 Complete the configuration of PDE API Tooling in the Papyrus Main and Developer Tools projects, including: * adding the API Analysis nature and builder to .project where it was missing * adding a new menu action in the dev tools Project Management menu to ensure that all Oomph version-management projects in the workspace have API analysis also * fixing API version analysis problems, mostly by upversioning bundles to 2.0 but also applying API filters in some cases where it seems appropriate * implementing project-level API Analysis preferences for warning severity of missing @since doc tags (the default is error) and adding it to the Oomph project preferences management Change-Id: I3f5fad20ffc7bb66eec0abbb86b5cc52aacb1ff1
2016-01-22Bug 485220: [Architecture] Provide a more modular architecture (& builds) ↵Christian W. Damus1-1/+1
for Papyrus https://bugs.eclipse.org/bugs/show_bug.cgi?id=485220 Refactor the Properties Model bundles into the Infra Layer. The *.views.properties.model[.edit,.editor] bundles are renamed as *.infra.properties[.edit,.editor]. The packages within are correspondingly renamed. To support upgrade installation, special p2 update metadata tells the p2 engine how these bundles have been renamed, ensuring proper replacement of the old *.views.properties.model* bundles, because otherwise the clash of EMF model registrations would cause run-time errors. The *.views.properties.environment extension point is moved to *.infra.properties.environments. The *.views.properties.context extension point has the <context> element moved to a new *.infra.properties.contexts point. The <preferencePageBinding> element remains. JUnit tests pass, at least inasmuch as they pass in the nightly builds. Change-Id: I6445808f8eb1144b08c0cd5f0a487d1bad229a4c
2016-01-22Bug 485220: [Architecture] Provide a more modular architectureChristian W. Damus1-1/+1
https://bugs.eclipse.org/bugs/show_bug.cgi?id=485220 Move UI-dependent APIs from the org.eclipse.papyrus.infra.emf bundle to a new org.eclipse.papyrus.infra.ui.emf bundle. Accordingly move tests into a new org.eclipse.papyrus.infra.ui.emf.tests bundle. Now that we have an UI EMF bundle, move the editor-page advices from the infra.ui bundle into it, which is a more appropriate home for them. One UI dependency is removed by reordering of code in the EMFHelper::getEObject(Object) API: * the EMF Facet tree elements are once again IAdaptables, providing their encapsulated EObjects or EReferences as adapters. So, the case handling IAdaptable is moved ahead of the test for is-an-EObject because these tree elements are also EObjects but are not interesting in themselves Also, the dialog-settings for the EMF Facet customization manager are moved into the infra.ui.emf bundle, as is the lazy initialization of the manager from those settings. Clients are refactored to get the customization manager from this new bundle (via a new ProviderHelper API) to ensure this lazy initialization. Various UI-dependent ServiceUtilsForXyz classes that were in the infra.emf bundle but had nothing to do with EMF are moved into the infra.ui bundle. UI-dependent classes from the org.eclipse.papyrus.infra.emf.readonly bundle are moved into the org.eclipse.papyrus.infra.ui.emf, also. These include extraction of the editor reload listener from the ReadOnlyManager class by means of a new general-purpose IReadOnlyManagerProcessor OSGi service interface. Tests all still pass (inasmuch as they do in the nightly master builds). Change-Id: Ieb0993b2ed1a7a49890d3471c7b42bc4f218fec6
2016-01-22Bug 485220: [Architecture] Provide a more modular architectureChristian W. Damus6-6/+9
https://bugs.eclipse.org/bugs/show_bug.cgi?id=485220 Move UI-dependent APIs from the org.eclipse.papyrus.infra.tools bundle to org.eclipse.papyrus.infra.ui. Accordingly move tests into a new org.eclipse.papyrus.infra.ui.tests bundle. Two crucial UI dependencies are inverted by introduction of new OSGi services with core interfaces specified in the non-UI layer: * IExecutorService extends Java Platform's ExecutorService with APIs for synchronous execution (a la Display.syncExec). A new CoreExecutors class in the infra.tools bundle supplies the instance provided by the OSGi service implementation in the infra.ui bundle. This provides compatibility for clients of various UIUtil APIs that they can no longer access * IContextualServiceRegistryTracker abstracts the concept of the default ServicesRegistry found in the currently active editor, which the ServiceUtilsForHandlers class (and hence all of its clients) relies on. Again an OSGi service implementation in the infra.ui bundle supplies the implementation of this tracker, which is exposed in infra.core through the service-utils API Also move UI-dependent APIs from the org.eclipse.papyrus.infra.core bundle into org.eclipse.papyrus.infra.ui. This includes * moving the 'papyrusDiagram' and 'papyrusContentOutline' extension points into the org.eclipse.papyrus.infra.ui namespace * moving various UI-related services such as EditorLifeycleManager, SaveLayoutBeforeClose, and the IMultiDiagramEditor, itself, into the org.eclipse.papyrus.infra.ui bundle This necessitates not only widespread refactorings on the moved APIs, but also concomitant move of other APIs in other bundles because they cannot plausibly use these moved APIs from their new home in org.eclipse.papyrus.infra.ui and/or they cannot reasonably also be moved to the UI bundle and/or they must be used by bundles that now have no UI dependency: * the DI/sash-windows EMF model is moved out of infra.core.sasheditor.di bundle into a new model-only org.eclipse.papyrus.infra.sashwindows.di bundle (which symbolic name incidentally now better reflects the contained Java package names) * the IPageManager and ILocalPageService interfaces are moved out of infra.core.sasheditor.di bundle because they need to remain accessible by headless code such as the edit advices that ensure deletion of sash-model pages for notations that are deleted. These are now in a package named org.eclipse.papyrus.infra.code.sashwindows.di.service. Accordingly the class hierarchy implementing the IPageManager interface is changed: the obsolete PageMngrImpl is deleted, replaced by a BasicPageManagerImpl which now the PageManagerImpl extends. A service factory creates the basic page manager in a headless context, but is overridden by the UI-aware implementation when the UI bundles are installed * the MultiDiagramEditorGefDelegate (which has a GEF 3 dependency) is moved from the org.eclipse.papyrus.infra.core.sasheditor bundle to a new org.eclipse.papyrus.infra.gmfdiag.gef bundle. Its usage for an adapter of ActionRegistry type is extracted out of the CoreMultiDiagramEditor class into a new external adapter-factory in the infra.gmfdiag.gef bundle Tests all still pass (inasmuch as they do in the nightly master builds). Change-Id: I573dee5d9312d6e5746d74575350d0152b591ab3
2015-08-21[releng] Neon-1.2.0 modification step by stepQuentin Le Menez25-132/+104
Change-Id: I9126d707fecad85c9b5384b35074deba995b6527 Signed-off-by: Quentin Le Menez <quentin.lemenez@cea.fr>
2015-07-08Synchronizing diagrams with models (Ports and Connectors)Saadia DHOUIB1-1/+7
2015-07-08Modifying RobotML style sheet to display Class and Ports iconsSaadia DHOUIB1-2/+2
2015-07-07Modifying css and .di profile file to resolve problem of ports iconsSaadia DHOUIB2-35/+3
display.
2015-06-11469953: [Releng] Update the build to support a global POMCamille Letavernier12-24/+24
https://bugs.eclipse.org/bugs/show_bug.cgi?id=469953 Change-Id: I050cf9dbbdd5705aaf8d45f2db3458226d148002 Signed-off-by: Camille Letavernier <camille.letavernier@cea.fr>
2015-06-03[Releng - RobotML] Add missing files to build.propertiesCamille Letavernier1-1/+3
Change-Id: I0000000000000000000000000000000000000000 Signed-off-by: Camille Letavernier <camille.letavernier@cea.fr>
2015-05-29[Tests - RobotML] Improve robustness of RobotML EditPolicyProvider toCamille Letavernier1-37/+30
avoid side-effects Change-Id: Ic97d7baee63f9ac0035019914bb9deac81ebc1aa Signed-off-by: Camille Letavernier <camille.letavernier@cea.fr>
2015-05-28Regenerating profileSaadia Dhouib2-0/+302
2015-05-28Cleaning environment package in RobotML profileSaadia Dhouib327-7081/+6235
2015-05-28Adding association to the palette of RobotML datatypes diagramSaadia Dhouib1-2/+4
2015-05-28Modifying templates and resolving a bug about deployment plans creationSaadia Dhouib10-2957/+2779
2015-05-28Modifying RobotML stylesheet to hide stereotypes Saadia Dhouib1-1/+3
labels on ports
2015-05-28Resolving Bug #462061 [Composite Structure Diagram] Display ofSaadia Dhouib3-25/+35
stereotype's icon on ports Resolving Bug #462062 [RobotML Diagrams] Display of ports icons
2015-05-28Adding property viewsaadia.dhouib@cea.fr165-0/+5201
2015-05-28Modifying profile to add stereotype "onVariable" for uml parameters,saadia.dhouib@cea.fr358-47883/+37311
adding a properties view
2015-05-28Modifying templates to adapt to the new version of robotml diagramssaadia.dhouib@cea.fr10-22863/+23645
2015-05-26Bug 467844 - [Palettes] Exceptions "could not find creation tools" foratischenko1-4/+4
State Diagram palette menus Change-Id: Ibcb214af98269f8f55c9e16f0c1d065879ed062d Signed-off-by: atischenko <tischenko@montages.com> Reviewed-on: https://git.eclipse.org/r/48565 Tested-by: Hudson CI Reviewed-by: Camille Letavernier <camille.letavernier@cea.fr>
2015-04-27439894: [Wizard] Refactoring and enhancementQuentin Le Menez2-0/+8
https://bugs.eclipse.org/bugs/show_bug.cgi?id=439894 435474: [Wizards] Wizards should set the name of the created diagrams https://bugs.eclipse.org/bugs/show_bug.cgi?id=435474 412676: Models created from uml files containing spaces in their names are invalid https://bugs.eclipse.org/bugs/show_bug.cgi?id=412676 440842: [New Papyrus Model Wizard] Model templates check list should have a scroll bar https://bugs.eclipse.org/bugs/show_bug.cgi?id=440842 435501: [Usability] The create new model wizard asks questions in the wrong order https://bugs.eclipse.org/bugs/show_bug.cgi?id=435501 + implementation the api modification pattern + refactor and modification of the code to fit Mars + added a non QVT transformation behavior + changed the page order Change-Id: If1a7040066937f1344f90c20b6a7b5b3fc6e4492 Signed-off-by: Quentin Le Menez <quentin.lemenez@cea.fr> Also-by: Thibault Le Ouay <t.leouay@sherpa-eng.com> Reviewed-on: https://git.eclipse.org/r/43320 Tested-by: Hudson CI Reviewed-by: Remi Schnekenburger <remi.schnekenburger@cea.fr> Tested-by: Remi Schnekenburger <remi.schnekenburger@cea.fr>
2014-09-16[Releng - RobotML] Add missing resource entry in build.propertiesCamille Letavernier1-1/+2
2014-09-15[Releng] Update feature versions to 1.1.0Camille Letavernier12-24/+24
2014-09-15[Releng] Change plug-ins version to 1.1.0Camille Letavernier13-57/+57
2014-08-25[Code style] Apply clean-up profile on Extra Plug-insCamille Letavernier364-8382/+7805
2014-08-21[Code style] Apply clean-up and formatter on Extra plug-insCamille Letavernier422-12591/+22751
2014-08-20[Releng] Update Papyrus version to 1.0.1 in pom.xmlCamille Letavernier12-24/+24
2014-08-20[Releng] Update versions to 1.0.1Camille Letavernier13-57/+57
2014-06-13Fixed the RobotML viewpoint configuration to use static identifierLaurent Wouters1-26/+47
Signed-off-by: Laurent Wouters <laurent.wouters@cea.fr>
2014-05-27Diagram Versions: reconcilers framework introduced to allow automaticmgolubev6-0/+316
conevertions of diagrams between Papyrus versions + XXXViewProvider updated to setup "current" diagram version for new diagrams + XXXViewProvider generator updated to generate above + 4x Migration of RobotML diagrams using new framework + repackaged to oep.infra.gmfdiag.common with respect to comments at https://git.eclipse.org/r/#/c/26412/ Change-Id: I40f22852cdd988f904a1b926263c5a18e85ee292 Signed-off-by: mgolubev <golubev@montages.com>
2014-04-18[releng] Fixing Buckminster build due to aggressive dead code removal for TychoLaurent Wouters3-0/+3
Signed-off-by: Laurent Wouters <laurent.wouters@cea.fr>
2014-04-17[releng] Generated all the pom.xml files for the plugins and featuresLaurent Wouters12-0/+168
Command: python releng/toolkit/tycho-genertor.py Signed-off-by: Laurent Wouters <laurent.wouters@cea.fr>
2014-04-17[releng] Cleanup plugins for extras buildLaurent Wouters4-6/+4
Signed-off-by: Laurent Wouters <laurent.wouters@cea.fr>
2014-04-03[Releng] Remove unused dependencies to EMF FacetCamille Letavernier1-1/+0
2014-04-03[Trivial] Remove logged exceptions in expected casesCamille Letavernier1-11/+3
2014-03-25[Trivial] Remove useless dependency and logged exceptionCamille Letavernier3-64/+56
2014-03-14[Releng] Fix dependency versionsCamille Letavernier12-120/+120
2014-03-14399860: Papyrus shall enable to customize the creation policy of viewsLaurent Wouters214-15065/+504
https://bugs.eclipse.org/bugs/show_bug.cgi?id=399860 Signed-off-by: Laurent Wouters <laurent.wouters@cea.fr>
2014-03-06429744: [UML 2.5] Migrate Papyrus to UML 2.5Camille Letavernier26-2478/+2478
https://bugs.eclipse.org/bugs/show_bug.cgi?id=429744 The following URIs have been updated in all Papyrus extra plug-ins: - http://www.eclipse.org/uml2/4.0.0/UML/Profile/L2 -> http://www.eclipse.org/uml2/5.0.0/UML/Profile/Standard - http://www.eclipse.org/uml2/4.0.0/UML -> http://www.eclipse.org/uml2/5.0.0/UML - http://www.eclipse.org/uml2/4.0.0/Types -> http://www.eclipse.org/uml2/5.0.0/Types
2014-03-05Removing help and html folder from the binary build of oep.robotml.docsaadia.dhouib@cea.fr2-4/+2
and re-inserting the plugin into the feature of robotml
2014-02-25366029: [Model Explorer] It is impossible to see the additionnalCamille Letavernier1-13/+11
resources https://bugs.eclipse.org/bugs/show_bug.cgi?id=366029 - Fix profile Property Testers to avoid loading profiles in the current model - Deprecate DiModel (Redundant with SashModel) - Display external resources (libraries) in the ModelExplorer (And other tree-based views)
2014-02-20[Releng] Fix Bundles and Features metadataCamille Letavernier1-1/+1
2014-02-03417396: [CSS] The CSS Engine shall support label visibility & maskCamille Letavernier1-2/+2
https://bugs.eclipse.org/bugs/show_bug.cgi?id=417396 - Fix minor issues - Fix a typo in the ICustomAppearance interface name
2014-02-03417396: [CSS] The CSS Engine shall support label visibility & maskCamille Letavernier1-4/+7
https://bugs.eclipse.org/bugs/show_bug.cgi?id=417396 - Adapt RobotML to the new MaskManaged API
2014-01-27Resolving problem with uri of generated rtmaps filessdhouib1-3/+3
2014-01-27Merge branch 'master' of ↵Saadia Dhouib12-41/+41
git://git.eclipse.org/gitroot/papyrus/org.eclipse.papyrus
2014-01-27changes after regenerating the robotml apisdhouib63-37/+22572
2014-01-27Regenerating Profile API wrt changes to add humanoid conceptssdhouib349-98947/+102698

Back to the top