mage

Manager for folder of images

I am a big fan of jquery and PHP. I have already found a solution to batch upload jpg with resizing. I am now on a looking for a solution to MANAGE photo list must i need : view (thumbnail) edit name (simple) delete (single click) Will be cool : crop color correct sharpen So the question, does anybody know a framework or php script ...

What is Mage and in what way is it useful?

Hi~ I keep seeing references to Mage, but I don't understand specifically what it does and why it's useful/popular. If someone could give a quick rundown of it, it would be much appreciated! Thanks ~ ...

Manual XBAP publishing.

I found a method to manually publish a regular WPF Application, but i need the same instructions for a WPF Browser app instead. Here is the regular WPF App howto: http://msdn.microsoft.com/en-us/library/xc3tc5xx%28VS.80%29.aspx . If anyone knows what changes I need to make to my mage commands to make it work for XBAP please let me know...

How to migrate from Visual Studio ClickOnce "Publish" wizard to MSBuild/mage deployment?

Up until now our app has been published using ClickOnce via the Visual Studio "Publish" wizard. This has been rather painful, and we've automated the process using msbuild/mage. Unfortunately, the new deployment does not appear to be compatible with the old one, giving the "The deployment identity does not match the subscription" error ...

Is there a way to define both assemblies and non-assembly files that need to be deployed in a ClickOnce application, from within a Visual Studio project?

So I am trying to figure out if there is a way to define the files and assemblies I need deployed with a ClickOnce app, from within Visual Studio. I would like to "Publish" the application and not have to make any more modifications with Mage. Especially for continuous integration. Is this possible? Can I add something to the app.man...

Mage.exe deployment problems.

I have a config file that needs changed on a per-server basis, so that once a server has our software installed on it, the config file for a client installer is set up to match that server's particular settings, and then copied to a public folder on the web for deployment. Since I'm changing the config file, I also have to rebuild the ...

Why does mage not generate a compatibleFrameworks attribute

We are using mage to generate our applications manifests as part of our build process. Upon upgrading to .Net 4 we now find it generates an invalid manifest. The reason is there is no compatibleFrameworks attribute being set in the application manifest which we generate every build. Is there anyway we can make Mage add this element of ...

Magento 1.4 Load By Category Not Working

Hi folks. I have a Magento helper class I wrote that works wonderfully in 1.3. However, we're working on a new install of 1.4 and filtering by category won't work for some reason. function __construct() { Mage::app(); $this->model = Mage::getModel('catalog/product'); $this->collection = $this->model->getCollection(); $this->...

Checking for Magento login on external page

I'm hitting a wall here while trying to access items from Magento on an external page (same server, same domain, etc, etc). I want to see if the user is logged into Magento before showing them certain parts on the site. Keep in mind that this code exists outside of Magento. Mage::app("default"); Mage::getSingleton("core/session", a...

Write NSImage to file

Hi, I have an NSImage from NSImage *myImage = [[NSBitmapImageRep alloc] initWithFocusedViewRect:[outputView bounds]]; and I need to save it to a file. I havent been able to find anything about saving NSImage in any format. Has anyone done this? Is it even possible? Thanks ...

Magento: How to tell if you're on a category page, or product page in .phtml file(s)

Hi everyone, I am trying to program into my .phtml files an if statement if the guest is on a category list page, or on a product page. For example this code: <?= Mage::app()->getFrontController()->getRequest()->getRouteName(); ?> Returns "catalog" whenever l'm on a page other than a CMS page. Is there a way l can use a similar m...