cal

Will PRISM help?

I am considering building a application using PRISM (Composite WPF Guidance/Library). The application modules will be vertically partitioned (i.e. Customers, Suppliers, Sales Orders, etc). This is still all relatively easy... I also have a Shell with a main region were all the work will happen but now I need the following behavior: I nee...

Getting View Owner/Creator with Rational ClearCase Automation Library (CAL)

Has anyone here already worked with the Rational / IBM CAL and knows if at all, and how to check for a view's creator/owner (username)? Elements, Vobs etc all have an Owner/Creator, but for some reason views do not? ...

In CAL, how can I get a reference to a module instance?

Hello, I have this application using CAL. All the modules derive from a special class, ModuleBase, which has an abstract method, say ApplySecurity implemented in each one of them. OK I load the modules in the bootstrapper, and after i call bootstrapper.Run(), i want to access all the modules that were loaded and call this ApplySecuri...

Organizing multiple Composite WPF applications to share a single Shell

How can I organize multiple Composite WPF applications so that they share a single Shell project but populate their module catalogs from different App.config files? I am writing a suite of applications using Composite Application Guidance for WPF. Each application's functionality is determined by the availability of different modules, w...

Composite WPF EventAggregator subscriptions being lost

In my Composite WPF application I have an event that is published when the user double-clicks on a control. Modules subscribe to the event and perform an action when necessary. This event seems to stop working at random. Sometimes when I run the application I can trigger the event with no problems, other times I can only trigger it a fe...

Get ClearCase Snapshot Views via ClearCase Automation Library (CAL)?

Good afternoon, Is anyone using the ClearCase Automation Library (CAL) successfully to retrieve snapshot views? I can get all the dynamic views just fine, but not a single one of my snapshot views appears in the 'Connection.get_Views(true, region);' command... Is there any way to get these programmatically as ICCView instances? Cheers...

Nested menu regions in Composite WPF application

Is it possible to have nested regions in a Composite WPF application? I want modules to be able to inject new menus, and also be able to inject menu items into an existing menu. Using the following code the RegionManager throws an exception saying "The region manager does not contain the MainFileMenuRegion region": <Menu cal:RegionMana...

How to use Prisim within an ElementHost

I'm new to Prism and I am attempting to host a Prisim control within an ElementHost. I seem to be missing something very basic. I have a single WinForm that contains an ElementHost. The following code is in the form: public partial class Form1 : Form { public Form1() { InitializeComponent(); Bootstrapper boots...

java bufferedReader, writes something different than it reads

i parsed a text (CAL code) with BufferedReader and BufferedWriter in Java, unfortunately, lines which i red and wrote with outStream.write(line); have changed, please look at Screenshots: http://uploadz.eu/images/4qz8mtkm2d9zx3x5ms3n.png h**p://uploadz.eu/images/c03hgkrgrmit2ij2mug.png as you see, some special character did changed the...

Menu service in Prism application CAL

Hello all, I am trying to create a Prism (CAL) framework (this is my first forray into CAL) and am having difficulty devising a service for registering menu items for a region). Here is what I have come up with so far... /// <summary> /// Menu item service - allows any module to register menu items with any region /// </summary> public...

Localization in Prism WPF App

I'm looking for the best way to localize a Prism 2 WPF app that might have several modules ported to Silverlight 3. Has anyone successfully localized a Prism 2 WPF app with several modules? ...

When to use Composite Application Library

When to use Composite Application Library? For example: simple desktop application (WPF) with 3 - 4 forms (windows).Is it good idea to use CAL in this case? ...

How to active each view from Modules in CAL using MVVM pattern

I have a Shell application which loads different modules to it one at a time through a tab control attached Shell. I need only one instance of each module should be available in shell. So anyone can u help me how to activate and deactivate the views of each modules when user switches between tabs. Thanks in Advance. ...

Using PRISM, how do I display the view from another module, and access its properties to update its state?

I have two modules, one is a Header module, one is a Items module. I have a HeaderDetails view, which contains a region which is called 'ItemsSummaryRegion'. This region is registered to populate the region with the view ItemListView from the Items module. regionManager.RegisterViewWithRegion("ItemsSummaryRegion", typeof(IItemListView)...

How to automatically reload TYPO3 calendar from external ics

Hi I'm using the calendar base extension (cal) for displaying my calendar in a TYPO3 website. I configured an external calendar and it imports all events correctly. How can I automatically reload the events from this external ics-calendar? thanks! ...

PRISM/CAL ModuleCatalog question - binding Modules to a Menu

Hi, in my test application, the ModuleCatalog is populated from the specified directory with all my modules in it. What I'd like to do is to add the name of all these moudles to a Menu as menuitems, e.g. if I have 3 modules in the directory, the menu will show 3 menuitems with the name of modules. I thought I can get the list of ModuleIn...

Books on Rx and PRISM/CAL + MVVM

Are there any good books that explains Rx, MVVM, PRISM/CAL from ground up? I googled, but could not find anything that covers all these three. ...

Best Practice WPF Prism Resources

I have a a WPF prism desktop app with a few modules. In the past I've put all my localized resources in common resource files in the infrastructure assembly and referenced it in all modules. But lately I have been wondering if that is indeed the right approach from a maintainence perspective. In essence it also sort of breaks modularit...