Re: [Kicad-developers] [PATCH] Change from EDA_COLOR_T to COLOR4D and arbitrary color support

2017-02-18 Thread Jon Evans
ugly in Windows 10. Best, Jon On Fri, Feb 10, 2017 at 8:43 PM, Jon Evans <j...@craftyjon.com> wrote: > Hi all, > > Attached is a (rather large!) patch that changes the internal color > representation to COLOR4D across the codebase (except for places that > directly deal wi

Re: [Kicad-developers] [RFC] Future of GitHub libraries

2017-02-18 Thread Jon Evans
Hi Clemens, just wanted to give another perspective that goes against your last line -- Just wanted to say that some of us are very happy to use SCM daily. At my workplace, we use Git to store electronics designs and symbol/footprint libraries. It started with the electronics people who also do

[Kicad-developers] [PATCH] Remove dependence on LAYER_ID from EDA_DRAW_PANEL_GAL

2017-02-16 Thread Jon Evans
Hi all, Another refactoring of the GAL base classes, this time to not depend on LAYER_ID, which is specific to pcbnew. Best, Jon From 3862fa138b5b60204617cc065e972857fd2fd1b9 Mon Sep 17 00:00:00 2001 From: Jon Evans <j...@craftyjon.com> Date: Thu, 16 Feb 2017 19:59:31 -0500 Subject:

Re: [Kicad-developers] [PATCH] Move layer color settings from child class to base class RENDER_SETTINGS

2017-02-16 Thread Jon Evans
on, > > I have just pushed your both patches. Now you made me curious what else > is there between 0001-Setup-painter and 0006-Move-layer-colors. Thank > you very much! > > Regards, > Orson > > On 02/16/2017 04:30 AM, Jon Evans wrote: > > Hi all, > > > > This

[Kicad-developers] [PATCH] Move layer color settings from child class to base class RENDER_SETTINGS

2017-02-15 Thread Jon Evans
, but if I make progress on enabling GAL in GerbView it might become more obvious how that should be refactored into the base class. Best, Jon From 7122ee9236d230bdd49bb40cabca166b1b15347c Mon Sep 17 00:00:00 2001 From: Jon Evans <j...@craftyjon.com> Date: Wed, 15 Feb 2017 22:26:03 -0500 Subject:

[Kicad-developers] [PATCH] Setup PCB painter in the PCB draw class rather than the base class

2017-02-15 Thread Jon Evans
Hi all, Patch attached for the issue I mentioned in the GerbView thread. This will allow creation of other derived classes of EDA_DRAW_PANEL_GAL. Best, Jon From c0b68d55bac543cdd10cffe9a82650c6d2259349 Mon Sep 17 00:00:00 2001 From: Jon Evans <j...@craftyjon.com> Date: Wed, 15 Feb 2017 21

Re: [Kicad-developers] GerbView GAL port

2017-02-15 Thread Jon Evans
, Feb 15, 2017 at 3:44 AM, Tomasz Wlostowski < tomasz.wlostow...@cern.ch> wrote: > On 14.02.2017 19:38, Jon Evans wrote: > > Hi all, > > > > I want to get familiar with the GAL codebase, and it occurred to me that > > it might be fun to play with porting GerbView to

[Kicad-developers] GerbView GAL port

2017-02-14 Thread Jon Evans
Hi all, I want to get familiar with the GAL codebase, and it occurred to me that it might be fun to play with porting GerbView to GAL. I know it is on the 6.x roadmap, but it seemed to me that it would be mostly not dependent on any other changes that I see on the roadmap or have seen people

Re: [Kicad-developers] OT: Trends in number of on-chip I/Os...

2017-02-14 Thread Jon Evans
Here are some approaches I know about (some of these available in KiCad today, some of them not until tomorrow :-) - Splitting up the part into logical blocks as Mark said - Depending on user preference / company policy, using component attributes to map all power and ground pins rather than

Re: [Kicad-developers] Differential pair DRC Errors

2017-02-13 Thread Jon Evans
question is: what is the real source of the error? Is it in the > routing algorithm that allows the user to place differential traces that > violate the design rules, or is it, as Jon Evans wrote, an error in the > post-routing DRC code? > > -a > > > On 2017-02-13 03:15, Jon Evans wrote

Re: [Kicad-developers] Differential pair DRC Errors

2017-02-12 Thread Jon Evans
I took a quick look at the DRC code, and it looks like it is doing an exclusive check on the minimum distances for clearance -- i.e. it is requiring the clearance be greater than the minimum, not greater or equal. I'm not familiar enough with this part of the code to want to submit a patch for

Re: [Kicad-developers] RFC: Change UX for item selection clarification

2017-02-12 Thread Jon Evans
ll already be in the proper filter mode to (for example) only select components for moving, etc. Best, Jon On Sun, Feb 12, 2017 at 7:12 PM, John Beard <john.j.be...@gmail.com> wrote: > On Mon, Feb 13, 2017 at 6:39 AM, Jon Evans <j...@craftyjon.com> wrote: > > > > The core o

Re: [Kicad-developers] RFC: Change UX for item selection clarification

2017-02-12 Thread Jon Evans
e selection menu that pops up actually, I would like > to keep it. > > I think that the list can be used simultaneous with the hotkeys and > autoselection. Just hide it whenever another action is invoked on the item > that is curently selected in the list. > > - Kristoffer > >

Re: [Kicad-developers] RFC: Change UX for item selection clarification

2017-02-11 Thread Jon Evans
ious how to do it. > > On Sat, Feb 11, 2017 at 05:49:05PM -0500, Jon Evans wrote: > > Proof of concept: https://www.youtube.com/watch?v=JfnXPosOHcY > > (when you see the selection changing, I'm hitting the new hotkey I made > for > > cycling through items) > >

Re: [Kicad-developers] RFC: Change UX for item selection clarification

2017-02-11 Thread Jon Evans
uot;yes" right now... Yeah, this is > how most tools work, and it's quite intuitive. I would be 100% in favor > of implementing it this way. > > On Sat, Feb 11, 2017 at 02:21:08PM -0500, Jon Evans wrote: > > Hi all, > > > > I had been thinking about proposing thi

[Kicad-developers] RFC: Change UX for item selection clarification

2017-02-11 Thread Jon Evans
Hi all, I had been thinking about proposing this already as a UX enhancement, and then while looking through the starter bugs realized that lp:1154020 [1] is actually quite difficult to solve in a nice way due to the popup menu used for clarification today, so I decided to send it out now. I

[Kicad-developers] [PATCH] Correctly filter copyable objects for copy hotkey (Fixes lp:1571316)

2017-02-11 Thread Jon Evans
Hi, Minor patch to eeschema attached to fix reported issue with clarify menu. -Jon From 315b745a1db89c06240b42f544502a9cefaa2ad4 Mon Sep 17 00:00:00 2001 From: Jon Evans <j...@craftyjon.com> Date: Sat, 11 Feb 2017 13:29:22 -0500 Subject: [PATCH] Correctly filter copyable objects for copy

Re: [Kicad-developers] RFC: Arbitrary color support

2017-02-10 Thread Jon Evans
gle class/function is needed. I > would prefer to keep libgal decoupled from everything else, so my > preference would be to link other apps with libgal instead of migrating > parts of it to libcommon. > > Regards, > Orson > > On 02/09/2017 04:07 PM, Jon Evans wrote: > >

Re: [Kicad-developers] RFC: Arbitrary color support

2017-02-09 Thread Jon Evans
on On Tue, Feb 7, 2017 at 4:34 PM, Maciej Suminski <maciej.sumin...@cern.ch> wrote: > Hi Jon, > > On 02/07/2017 04:03 AM, Jon Evans wrote: > > Hi all, > > > > I started working on the idea of a color theme system for KiCad, starting > > with the schematic

Re: [Kicad-developers] RFC: Arbitrary color support

2017-02-07 Thread Jon Evans
not have this ready reasonably soon (next month or two), then it will > have to be pushed back to the version 6 release. > > Cheers, > > Wayne > > On 2/7/2017 10:27 AM, Jon Evans wrote: > > Would you accept the patch to move to wxColour if it were not possible > > to c

Re: [Kicad-developers] RFC: Arbitrary color support

2017-02-07 Thread Jon Evans
eb 7, 2017 at 10:19 AM, Wayne Stambaugh <stambau...@gmail.com> wrote: > On 2/7/2017 9:00 AM, Chris Pavlina wrote: > > On Tue, Feb 07, 2017 at 08:57:23AM -0500, Jon Evans wrote: > >> Hi Simon, JP, > >> > >> I understand the issue with the colors chosen for

Re: [Kicad-developers] RFC: Arbitrary color support

2017-02-07 Thread Jon Evans
; > > > This is only the *color choice* in Pcbnew which is constrained in legacy > canvas. > > > > EDA_COLOR_T comes from the fact the legacy graphic primitives where > written for an other library, > > not for wxWidgets. > > (Kicad was started before wxWidg

[Kicad-developers] RFC: Arbitrary color support

2017-02-06 Thread Jon Evans
Hi all, I started working on the idea of a color theme system for KiCad, starting with the schematic editor. This change relies on a complete removal of EDA_COLOR_T from the code, and replacement with a color structure that can handle arbitrary colors. I think this is important and the right

Re: [Kicad-developers] [RFC] Application naming

2017-02-02 Thread Jon Evans
As a mostly user and occasional code hacker, here are my thoughts: The EDA tool industry is trending towards more integration, as many of the commercial products were originally formed from separate applications (often from separate companies originally). I have used a number of commercial

Re: [Kicad-developers] configuration files for KiCad

2016-12-01 Thread Jon Evans
with that, no need to change for change's sake. -Jon On Thu, Dec 1, 2016 at 3:24 PM, Wayne Stambaugh <stambau...@gmail.com> wrote: > On 12/1/2016 11:44 AM, Jon Evans wrote: > > Hi all, > > > > Per my recent email, I'm going to be looking in to various UI/UX things, > &

Re: [Kicad-developers] configuration files for KiCad

2016-12-01 Thread Jon Evans
<jp.char...@wanadoo.fr> wrote: > Le 01/12/2016 à 17:44, Jon Evans a écrit : > > Hi all, > > > > Per my recent email, I'm going to be looking in to various UI/UX things, > starting with Eeschema, and > > I thought of a topic that probably warrants its own thread.

[Kicad-developers] configuration files for KiCad

2016-12-01 Thread Jon Evans
Hi all, Per my recent email, I'm going to be looking in to various UI/UX things, starting with Eeschema, and I thought of a topic that probably warrants its own thread. Some of the things I want to propose would involve giving the user more options for customization of the tool (i.e. more

Re: [Kicad-developers] eeschema status and features safe to work on

2016-12-01 Thread Jon Evans
osed to work with eeschema at one point, it creates a really > powerful toolset. > > Would you elaborate on the "intelligent autorouter" idea? > > Regards, > Orson > > 1. http://www.ohwr.org/projects/cern-kicad/wiki/Hackathon-ehal > 2. https://lists.launchp

[Kicad-developers] eeschema status and features safe to work on

2016-11-30 Thread Jon Evans
Hi all, I am an EE and sometimes software developer who has wanted to contribute to KiCad for a while and finally might have some time to do things. I am kind of excited about UI/UX improvement possibilities, and have been compiling a list of things that I might want to work on at some point or

Re: [Kicad-developers] [RFC] Wildcard and/or regex support in the component chooser

2015-12-18 Thread Jon Evans
More and more modern text editing software is moving to fuzzy string matching rather than explicitly requiring users to put in wildcards when doing searches for filenames, code intelligence searches (i.e. match function / class names etc). Have you considered that as an option? On Fri, Dec 18,

Re: [Kicad-developers] [RFC] Wildcard and/or regex support in the component chooser

2015-12-18 Thread Jon Evans
quot;, "ATXMEGA128D3", "ATXMEGA256D3", etc to come up? > > On Fri, Dec 18, 2015 at 12:14:33PM -0500, Jon Evans wrote: > > More and more modern text editing software is moving to fuzzy string > > matching rather than explicitly requiring users to put in wildc

Re: [Kicad-developers] [RFC] Wildcard and/or regex support in the component chooser

2015-12-18 Thread Jon Evans
Hi Chris, thanks for the feedback. I certainly don't expect you to waste your time implementing something that you don't want/need! I think if you end up implementing wildcard match it will be a good starting point for adding fuzzy matching later if someone wants to take that on (maybe even I

Re: [Kicad-developers] GAL selection improvement suggestions

2015-11-19 Thread Jon Evans
the invisible objects can be selected. > > On 11/19/2015 11:20 AM, Jon Evans wrote: > > This is also how it works in PADS and it is one of those features that I > > really miss when using tools without it: > > > > http://i.imgur.com/Ifd30l4.jpg > > > > In

Re: [Kicad-developers] GAL selection improvement suggestions

2015-11-19 Thread Jon Evans
This is also how it works in PADS and it is one of those features that I really miss when using tools without it: http://i.imgur.com/Ifd30l4.jpg In fact, switching what you can select is such a common task that they have it on the right-click menu when you click in empty space:

Re: [HH] Computer-controlled RF switches?

2015-09-28 Thread Jon Evans
You could make your own? http://www.digikey.com/product-detail/en/ARE134H/255-1573-ND/570710 On Mon, Sep 28, 2015 at 8:22 AM, Brough Turner wrote: > I'm looking for a cheap and/or quick way to switch between several > different antennas in a Wi-Fi setup. > > I want to

Re: [HH] Electric imp?

2015-09-16 Thread Jon Evans
>> want to monitor something from my smart phone, there is no way I could > >> write secure code for that. > >> > >> Whether or not THEY write secure code is a valid question I dont have > >> the answer to. > >> > >> Is there anything out the

Re: [HH] Electric imp?

2015-09-16 Thread Jon Evans
The "gotcha" is that they take care of your data connection. Last I looked, there was no way to get it to work without their hosted services. It may be possible to hack it / reverse-engineer it, but that sounds like a waste of time. I guess if you are OK with trusting them with handing the

Re: [HH] stubbing out boost::format?

2015-04-01 Thread Jon Evans
boost::format works by operator overloading of the '%' operator (modulus normally). You can define your own overloads that would stub it out, and then #define format() to stub it out. (unless Xilinx's compiler is stumbling on the operator overloads themselves!) Alternatively, it strikes me as

Re: [HH] Matchstick: $12 TV stick running Firefox OS

2014-10-03 Thread Jon Evans
Just like the Chromecast, and your laptop, and really anything that streams video over Wifi, the video is streamed in compressed form and then decompressed for playback on the device. For example if you tell it stream this 1080p video from youtube, you are not actually decoding the 1080p video as

Re: [HH] Mystery signal from a helicopter

2014-02-03 Thread Jon Evans
*girl On Mon, Feb 3, 2014 at 12:13 PM, Greg London em...@greglondon.com wrote: Most helicopters used by news organizations ... Depending on whether they are semi-rigit or fully articulated, each blade has its own independent angle of attack,. Most news helicopters are Bell Jet Rangers

Re: [HH] FPGAs price competitive with ASICs?

2013-12-19 Thread Jon Evans
I do, but haven't tried the Zynq. They have not been price competitive when compared to a discrete FPGA and microprocessor combination. On Dec 19, 2013 5:48 PM, Greg London em...@greglondon.com wrote: Maybe I could start with a poll: How many people on the list use FPGA's for design?

Re: [HH] FPGAs price competitive with ASICs?

2013-12-19 Thread Jon Evans
I have used Spartan 3 and 6 series. Since we're comparing commercial temp grade parts, the XC6SLX25 [1] has about the same number of logic cells and almost four times as much block ram. The Artix FPGAs have more multiplier/DSP cores, though. Unfortunately the Artix FPGA that is competitive

Re: [HH] cheap Android tablets/openstreetmap vs. commercial GPS products

2013-11-25 Thread Jon Evans
Almost all Android devices have a GPS receiver, although I haven't checked the Microcenter tablet you refer to. I have used OsmAnd on Android (uses OSM data among other sources) in the past when I wanted to get features that Google Maps does not provide (easy and controllable offline caching, and

Re: [HH] Alternatives to SSDs for laptops?

2013-08-05 Thread Jon Evans
Having gone down this path before, my humble opinion is that you should just bite the bullet and upgrade to SSD, at least in the machine with SATA. You can put the 640GB drive in an external enclosure and use a much smaller SSD -- the performance improvement is definitely worth the hassle to me

Re: [HH] Ouya running XBMC

2013-05-29 Thread Jon Evans
I have an OUYA with XBMC running. Aside from some audio decoding issues that ought to be worked out by the official launch, it works pretty well. It's *very* snappy, just as responsive as on my beefy desktop PC, and much better than it is running on a Nexus 7 tablet. Video playback (1080p H.264)

Re: [HH] single board computers for use as a router

2013-04-25 Thread Jon Evans
While not open source, Mikrotik's RouterOS is pretty sweet. It's free if you buy their hardware, and they have a $60 5-port gigabit router. It is based on Linux and supports KVM; while it does not have built-in IDS (at the moment) they have a wiki article about using KVM to add a guest OS to run

[android-discuss] Android Developer Device Seeding Program - still active?

2010-04-21 Thread Jon Evans
just hit those magic numbers... Jon Evans j...@rezendi.com www.rezendi.com -- You received this message because you are subscribed to the Google Groups Android Discuss group. To post to this group, send email to android-disc...@googlegroups.com. To unsubscribe from this group, send email

[Bug 504929] Re: Dell Inpsiron attempts hibernation when power cord is plugged in

2010-03-29 Thread Jon Evans
I also have an MSI Wind U100. I'm seeing the same behavior when unplugging. Clicking on the battery icon in the system tray to check the status shows the proper battery life. Doing this prior to hibernating appears to prevent the hibernation. -- Dell Inpsiron attempts hibernation when power cord

[Bug 506125] Re: nautilus-actions-config-tool assert failure: NA-nact:ERROR:nact-ibackground-tab.c:381:get_folders_treeview: assertion failed: (GTK_IS_TREE_VIEW( treeview ))

2010-03-19 Thread Jon Evans
Still seeing this problem on a fresh install of the new Beta 1. GNOME 2.29.92 -- nautilus-actions-config-tool assert failure: NA-nact:ERROR:nact-ibackground-tab.c:381:get_folders_treeview: assertion failed: (GTK_IS_TREE_VIEW( treeview )) https://bugs.launchpad.net/bugs/506125 You received this

[mailplaneapp] Re: input focus problem when replying to a message

2008-12-04 Thread Jon Evans
Hi, On Dec 4, 2:13 am, Kinny Cheng [EMAIL PROTECTED] wrote: Are you getting this all the time?  Or is it only randomly occurring? I just tried some experiments. It doesn't happen all the time - only certain characters. When you click in the textarea, some keypresses result in the textarea

[mailplaneapp] input focus problem when replying to a message

2008-12-03 Thread Jon Evans
Hi, When viewing a message, if I click in the reply textarea it expands like it should do, and shows the quoted original message and a flashing caret at the top of the text box. All good. The problem is that it hasn't actually focussed the textbox, so anything you type gets swallowed by the

[Capistrano] Re: Mysterious Password: prompt

2008-09-24 Thread Jon Evans
Hi Jamis, On Sep 22, 3:12 pm, Jamis Buck [EMAIL PROTECTED] wrote: Please do send a pull request. Stylistically, though, I prefer the use   of do...end over curly braces when the block spans multiple lines.   Also, it might make more sense for the log message to indicate that   the command is

[Capistrano] Mysterious Password: prompt

2008-09-22 Thread Jon Evans
I was trying to deploy my rails app to the server (using git and remote_cache) and kept getting a Password: prompt. Every password I tried failed - and in fact I thought I'd set up everything to use ssh keyfiles anyway. Even with multiple -v flags it wouldn't tell me what command it was

Re: [Radiant] Page Attachments extension - installation instructions no longer work

2008-02-12 Thread Jon Evans
Hi Bill, On 12 Feb 2008, at 01:41, Bill Barnard wrote: On Mon, 2008-02-11 at 23:26 +, Jon Evans wrote: I'm using the Radiant Gem 0.6.4. The error I get is: [shiny]:~/rails/site evansj$ rake production db:migrate I think what you want is: $ rake production db:migrate:extensions

Re: [Radiant] Page Attachments extension - installation instructions no longer work

2008-02-12 Thread Jon Evans
Hi Bill, On 12 Feb 2008, at 19:32, Bill Barnard wrote: You might want to look at how you installed the extension. Your page_attachments directory should contain lib/technoweenie/ where the attachment_fu code lives. I don't really know the mechanism, but radiant/rails finds code in the lib

[Radiant] Page Attachments extension - installation instructions no longer work

2008-02-11 Thread Jon Evans
Hi, I've been trying to install the page_attachments plugin from these instructions: http://wiki.radiantcms.org/Installing_Extension_-_Page_Attachments , but they don't seem to work any more. I'm using the Radiant Gem 0.6.4. The error I get is: [shiny]:~/rails/site evansj$ rake production

Re: Cached AbstractReader

2007-12-21 Thread Jon Evans
Hi, On 21 Dec 2007, at 10:37, Tobia Conforto wrote: I'm not sure what Configurable is supposed to do (I haven't got around to studying Avalon yet!) but every Cocoon Reader must implement setup() (see: http://tinyurl.com/ynkwv2 ) and if the 4th argument to setup() is called pars, you can

Re: Cached AbstractReader

2007-12-20 Thread Jon Evans
Hi Tobia, On Dec 20, 2007 12:47 PM, Tobia Conforto [EMAIL PROTECTED] wrote: Jon Evans wrote: I've implemented a class which extends AbstractReader. It uses some SOAP calls to pull some binary gif image data from a remote system. My problem is that the resource is not cached if I throw

Cached AbstractReader

2007-12-19 Thread Jon Evans
Hi, I'm using Cocoon 2.1.10. I've implemented a class which extends AbstractReader. It uses some SOAP calls to pull some binary gif image data from a remote system. It implements CacheableProcessingComponent as well, and my getValidity() method is simply: private static final

[Trac] I broke it: 22, 'Invalid argument'

2007-12-03 Thread Jon Evans
Hi all, Trac was working great until I synced up my Gentoo installation with the latest packages. Now it breaks, rendering this in the browser: Oops... Trac detected an internal error: (22, 'Invalid argument') Traceback (most recent call last): File

[Capistrano] capistrano-ext multistage:prepare doesn't work

2007-11-22 Thread Jon Evans
Hi, I couldn't find any documentation for capistrano-ext anywhere, so I looked through the source... There is a multistage:prepare method which seems to be designed to create stub deploy files for the stages. The problem is that it doesn't work if the files don't already exist, because

[Rails-deploy] Re: Did I totally screw up my svn repository? (first deployment)

2007-10-21 Thread Jon Evans
Hi Peter, On Oct 21, 12:48 am, Peter Marks [EMAIL PROTECTED] wrote: Thanks again for your advice. When I execute the command you suggested it lists the repository as expected: Peter-Marks-MBP:~/Rails/Orbus petermarks$ svn lshttp://svn.orbussystems.com/svn/orbus Capfile README etc.

[Rails-deploy] Re: Did I totally screw up my svn repository? (first deployment)

2007-10-20 Thread Jon Evans
Hi Peter, On Oct 19, 10:14 pm, Peter Marks [EMAIL PROTECTED] wrote: I have a new problem however. I have yet to deploy my application and when I try to execute 'cap deploy:cold', the process stalls. Here is what comes up: Peter-Marks-MBP:~/Rails/app/subv petermarks$ cap deploy:cold

Re: Data Deduplication

2007-08-28 Thread Jon Evans
Dirk I also tried Data Domain and was not impressed. I now use Diligent's Protectier and its far more impressive. Its scalable, reasonably priced, achieves throughput of 200mb per second and better and factoring ratio's of Over 10 to 1 Regards Jon -Original Message- From: ADSM: Dist

Re: [Radiant] What's new in Radiant 0.6

2007-04-19 Thread Jon Evans
Hi Sean, On 18 Apr 2007, at 15:29, Sean Cribbs wrote: I've collected information about all the changes to Radiant in the last 250+ commits and summarized them on my blog. Please read: http://seancribbs.com/tech/2007/04/18/whats-new-in-radiant-0-6 That's a really informative article,

Re: for those using VTL

2007-04-02 Thread Jon Evans
We are also using Diligent ProtecTier, and are in the process of migrating to Netbackup from TSM :-( As a result we are taking weekly full backups and the hyperfactoring is great.. averaging around 30 to 1 Speed is also good hitting over 200mb/s (running to an EMC clarion) System seems stable

Compression of raw backup data onto tape

2006-09-07 Thread Jon Evans
transferred to tape (if any) I am using hardware compression on the tape drive (LTO1) with the device class format set to ULTRIUMC Thanks Jon Evans KBR -- This e-mail, including any attached files, may contain confidential

Re: LTO Tape problems

2006-05-30 Thread Jon Evans
Are they the same make of tape? I had the same issue when our procurement dept purchased Maxell tapes instead of TDK. -Original Message- From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Meadows, Andrew Sent: 30 May 2006 16:01 To: ADSM-L@VM.MARIST.EDU Subject: LTO Tape

Re: Disk-to-Disk Backup

2006-05-16 Thread Jon Evans
decided against it at this time.. Regards Jon Evans -Original Message- From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Christoph Pilgram Sent: 16 May 2006 14:43 To: ADSM-L@VM.MARIST.EDU Subject: Disk-to-Disk Backup Hi all, Because we have problems to hold our

FW: VTS or san disk storage

2005-11-23 Thread Jon Evans
Richard Dilligent's VTF open or Protectier solution is highly impressive and works seamlessly with TSM. I cant fault it at present! If you would like, I can put you in touch with an independent consultant who could advise you further? Jon Evans Enterprise Storage consultant -Original

device files for aix 5.3

2005-10-01 Thread Jon Evans
I'm trying to locate the following device files for AIX 5.3, TSM 5.3.1.0 for an ATL P3000 with DLT7000 devices on FC interface devices.fcp.changer devices.fcp.tape can someone please direct me to the correct url? many thanks Jon

Re: Backup windows File server

2005-09-14 Thread Jon Evans
Are you able to zip up the files perhaps? I suspect the problem is reading the huge number of small files in order to decide whether they require a backup. Perhaps Journaling may help here .. although I have no personal experience of this.. Also.. check network performance (switch and card set to

Re: Question about DR TSM site

2005-09-13 Thread Jon Evans
Following on from this... If you had a failure of one of the libraries (say it burnt!) and the primary storage pool is lost, would it be possible to have a second TSM server (other than the one that owns the storage pool) take care of recreating the primary pool from the copy pool?.. in other

Re: backup stgpool

2005-09-09 Thread Jon Evans
Andy.. Note that you can configure your TSM server so that data will be written simultaneously to primary and copy storage pools, you might want to look into that as well, though it might prove a little difficult due to having only two tape drives.) I understand that simultaneous write is not

Re: Dual write to multiple copy storage pools

2005-09-06 Thread Jon Evans
and multiple copy pools simultaneously. Regards, Ramakrishna Choudarapu -Original Message- From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Jon Evans Sent: Thursday, September 01, 2005 10:35 AM To: ADSM-L@VM.MARIST.EDU Subject: Re: [ADSM-L] Dual write

Re: Dual write to multiple copy storage pools

2005-09-02 Thread Jon Evans
Subject: Re: Dual write to multiple copy storage pools Hi Mark, Do you know if it will be possible to do this later TSM versions? Stapleton, Mark wrote: From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Jon Evans can I do the same with my management class and specify

Re: Dual write to multiple copy storage pools

2005-09-01 Thread Jon Evans
From: ADSM: Dist Stor Manager on behalf of Jon Evans Sent: Wed 8/31/2005 06:44 To: ADSM-L@VM.MARIST.EDU Subject: Dual write to multiple copy storage pools Hi List With my current version of TSM (5.1.6.3), I know that I can copy from storage pool to copy storage pool using as many processes

Dual write to multiple copy storage pools

2005-08-31 Thread Jon Evans
a dual write from my disk storage pool to multiple copy storage pools at the same time? (I understand Netbackup can do this!!) Thanks in advance Jon Evans Storage Consultant -- This e-mail, including any attached files

Archive Verification

2005-08-12 Thread Jon Evans
Hi Do any of you recall your archive tapes from offsite and verify that the data contained on them can be restored?.. If so how often and what tests do you run to verify that data? Many thanks Jon Enterprise Storage Admin KBR

Re: query for mangement class

2005-05-24 Thread Jon Evans
Following on from this... is it possible to backup a clients data using one management class and then apply a different management class at a later date? Thanks Jon -Original Message- From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Stapleton, Mark Sent: 23 May 2005

Virtual tape libraries

2005-05-20 Thread Jon Evans
of data on one tape. My database is 56GB and I currently have approx 600 volumes My question is.. if I were to move to a virtual library and had to increase the number of my volumes by up to 10 times What impact would this have on my database ? Thanks in advance Jon Evans Storage Consultant

Multiple TSM servers and their databases

2005-05-20 Thread Jon Evans
.. Jon Evans Storage Consultant KBR

Re: What's the svn revision number of release 2.1.7?

2005-03-31 Thread Jon Evans
Hi Giacomo, On 30 Mar 2005, at 20:39, Giacomo Pati wrote: On Wed, Mar 30, 2005 at 03:32:00PM +0100, Jon Evans wrote: Hi all, What revision number do I plug into svn up -r in BRANCH_2_1_X to update my repository to relase 2.1.7? Sorry if it's already been mentioned somewhere but I searched

What's the svn revision number of release 2.1.7?

2005-03-30 Thread Jon Evans
Hi all, What revision number do I plug into svn up -r in BRANCH_2_1_X to update my repository to relase 2.1.7? Sorry if it's already been mentioned somewhere but I searched the mailing list archives and the website and couldn't see it. Thanks, Jon -- Merlin Information Systems Limited, Merlin

cforms repeater widget link styling

2004-12-17 Thread Jon Evans
Hi, I've got a cforms search form in my app, which is bound to a java bean called SearchBean. The SearchBean has a String field for the search text, and a pair of Collections, one for search results and one for activated results (bear with me - it's quite a complex search). Both lists are

Re: importPackage broken in 2.1.6?

2004-12-17 Thread Jon Evans
Hi John, On 15 Dec 2004, at 13:05, John L. Webber wrote: importPackage(Packages.com.foo); var myFoo = new Foo(); //a com.foo.Foo This worked fine under 2.1.3. Now with 2.1.6 I get the error message, Implicit declaration of global variable '_packages_' forbidden. Please ensure all variables are

Re: cforms repeater widget link styling

2004-12-17 Thread Jon Evans
Hi Helma, On 17 Dec 2004, at 13:02, [EMAIL PROTECTED] wrote: Hi, I can go into more detail if necessary, but basically I just need to know: 1) how do I display a repeater widget as a submit button-type hyperlink? fi:styling type=link/ ? Look at the sample trio: datasource-chooser, dynamic

Re: Request parameters form flow script to jx

2004-12-17 Thread Jon Evans
On 17 Dec 2004, at 13:22, angeloimm wrote: I have this problem... i'm in a flow script wher by using showForm method i call a Form... now let's supppose i need to pass a variable to this form by using cocoon request... how can i do it? I have tried in all way but. nothing to do; for now i'm

Re: i18n - I can't get the simplest scenario going

2004-12-17 Thread Jon Evans
Hi Theresa, Jonny, Back when I was first trying to get it to work, I think I read somewhere that the current cocoon version does require this locale parm into the transformer. But I don't remember any other specifics. I did hit the same problem as you though, so it was fresh in my mind. You

Re: importPackage broken in 2.1.6?

2004-12-17 Thread Jon Evans
Hi John, On 17 Dec 2004, at 12:18, John L. Webber wrote: Thanks, I gave it a try, but it produced the same error message as before (Implicit declaration of global variable '_packages_' forbidden. Please ensure all variables are explicitely declared with the 'var' keyword). Does anyone else

Re: Request parameters form flow script to jx

2004-12-17 Thread Jon Evans
Hi, On 17 Dec 2004, at 13:46, angeloimm wrote: Hi... first of all thanks for your reply. Now... have you ever tried it? I have tried and i have an error that says: function expected instead of an Object so i can't go on this way. can you send a working sample? Take a look at the

Re: EHDefaultStore

2004-12-03 Thread Jon Evans
Hi Unico, On 2 Dec 2004, at 13:35, Unico Hommes wrote: On 2-dec-04, at 13:13, Jon Evans wrote: I needed a cache for part of my webapp. Basically I can look up lists of things, based on a number of parameters. I put all the parameters into a Serializable class which becomes the key

Re: EHDefaultStore

2004-12-03 Thread Jon Evans
Hi Jorg, On 2 Dec 2004, at 13:38, Jorg Heymans wrote: Jon Evans wrote: I had to create my own version of EHDefaultStore, specific to my app, because I didn't want an eternal cache. I expire items after 5 minutes so that a db hit is forced (in case the data has been updated). Although

Re: EHDefaultStore

2004-12-03 Thread Jon Evans
Hi Unico, On 3 Dec 2004, at 12:52, Unico Hommes wrote: On 3-dec-04, at 13:27, Jon Evans wrote: This is another reason why I think we need a system-wide ehcache component, which is used by EHDefaultCache and any other instances needed by specific applications... I don't understand. What

EHDefaultStore

2004-12-02 Thread Jon Evans
Hi, I needed a cache for part of my webapp. Basically I can look up lists of things, based on a number of parameters. I put all the parameters into a Serializable class which becomes the key. If it isn't in the cache then I create a new object using a stored procedure and add it to the

Re: NPE in AbstractCachingProcessingPipeline

2004-11-18 Thread Jon Evans
Hi, On 17 Nov 2004, at 13:40, Unico Hommes wrote: The section fixes http://issues.apache.org/bugzilla/show_bug.cgi?id=31012 which is a serious bug in itself. Anyway, I have found out why toCacheSourceValidities could be null when cachedResponse is not. Apparently this happens when the pipeline

NPE in AbstractCachingProcessingPipeline

2004-11-16 Thread Jon Evans
Hi, Bugzilla appears to be broken... I've been chasing down a problem where the portal I'm developing would work fine for a few iterations, then it would break and bits of it would be replaced with The coplet xxx is currently unavailable. The NPE logged in error.log was pretty hard to track

Re: Cocoon Portal Engine Tools

2004-10-08 Thread Jon Evans
Hi, On 7 Oct 2004, at 08:08, Matthew Langham wrote: Not yet. We hope to have a demo version with us at the GT and then be able to commit something soon after. Really looking forward to seeing it! See you at the GT. Cheers, Jon -- Merlin Information Systems Limited, Merlin House, Gawcott Road,

Re: TDP for exchange 2003

2004-10-08 Thread Jon Evans
I have been told that TSM server must be at version 5.1.6.x or above in order to backup Exchange 2003 (with 5.2.1TDP)... is this correct or do I need to be running 5.2 server? Could someone please straighten this out? Thanks in advance Jon -Original Message- From: ADSM: Dist Stor

Re: Optimizing Exchange backup/recover?

2004-09-10 Thread Jon Evans
Yes.. run's like a dream! No degradation of performance and have been running for two years now -Original Message- From: ADSM: Dist Stor Manager [mailto:[EMAIL PROTECTED] On Behalf Of Hart, Charles Sent: 10 September 2004 14:29 To: [EMAIL PROTECTED] Subject: Re: Optimizing Exchange

<    5   6   7   8   9   10   11   >