Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
141 views

How to create aliases in c#

How do i create aliases in c# Take this scenario class CommandMessages { string IDS_SPEC1_COMPONENT1_MODULE1_STRING1; } say i create an object of this class CommandMessages objCommandMessage ...
4
votes
2answers
9k views

How do you create “Aliases” in Apache Tomcat?

I am working on a web application that allows users to upload attachments. These attachments are stored on a different drive than that of the web application. How can I create an alias (equivalent ...
3
votes
2answers
531 views

Firebird aliases

I have developed an application using Delphi and Firebird 1.5, where the server is located on the same machine as the application. I am now deploying the application to another site, where the ...
1
vote
1answer
106 views

How do you port bash aliases to ipython > 0.10?

How do you port your bash aliases to IPython version >= 0.11? This question has already been answered for IPython < 0.11, and link for that is here: http://ipython.scipy.org/Wiki/tips
1
vote
0answers
104 views

Umbraco 4.6 - macros not rendering

I posted this on the Umbraco forum but to no avail, and wondered if the community at large might be able to offer some advice. We are upgrading our site from 4.0.3 to 4.6. I can't deploy it though ...
1
vote
1answer
129 views

Piping with postfix aliases and MySQL

I am trying to get incoming email to a specific email address redirected to a php script. I am using Postfix with address and domain information stored in MySql. As I believe the piping cannot be done ...
1
vote
1answer
42 views

Use Aliases for Validation to show gramatically correct error messages - play framework

My question refers to validation in a Model class. I know how to basically do validation, but I've though got a question about it. I'd like to now if it is possible to use a alias in validation? ...
1
vote
2answers
142 views

Automatically add aliases to .bashrc

I know there is probably no simple way to do this, but I thought I might put this out there. I have a directory that contains a subdirectory for each customer I deal with. I'd like to be able to type ...
1
vote
1answer
246 views

How to create an alias for a mercurial user?

I am looking for a way to create an alias for a user that has commited to a mercurial repository. For example, if there is a user named user1 I'd like every commit done by him to be under the name ...
1
vote
1answer
50 views

Autocompletion based on filenames in a directory

I want to have a function in my zsh for faster accessing my todo-files. It should look inside the folder ~/tasks where i put my todo-lists and stuff. Now i want to type task p and when I hit tab, it ...
1
vote
1answer
82 views

Javascript, aliases and IE

In an attempt to save space, I made a whole bunch of aliases for functions in my code. It works fine in FF, but now I'm trying to add support for IE and it's not happy. j=String; f0=j.fromCharCode; ...
1
vote
1answer
592 views

Get table alias from Zend_Db_Table_Select

I'm working on an Active Record pattern (similar to RoR/Cake) for my Zend Framework library. My question is this: How do I figure out whether a select object is using an alias for a table or not? ...
0
votes
0answers
26 views

Unable to retrieve email sent to Gmail/GApps aliases/nicknames using IMAP + PHP

My domain (expensify.com) is hosted on Google Apps, and I'm able to download the INBOX for dbarrett@expensify.com using PHP flawlessly. However, it does not download any email sent to an alias of the ...
0
votes
1answer
94 views

Java Sun PKCS#11 provider, HSM token LOGIN REQUIRED flag not set and empty list of aliases

I'm Pavel and I'm mainly a Java developer. Here is my problem: I'm trying to list aliases in HSM slot using Java Sun PKCS#11 provider and I'm getting an empty list. I have tried it with Java 6 and 7 ...
0
votes
1answer
85 views

Load Multiple Functions from a Single File in Matlab [closed]

Possible Duplicate: Is it possible to define more than one function per file in MATLAB? Is it possible to load multiple functions from the same .m file in Matlab? I find it cumbersome to ...
0
votes
1answer
37 views

mysql: referring to columns by numbers

I want to give columns aliases without knowing their names, but only their number in the table. Something like this: select firstColumn as myId, secondColumn as myName, thirdColumn as myLastName ...
0
votes
3answers
26 views

Defining aliases in a statistical query

I need to do: SELECT COUNT(*) FROM some_table WHERE someAlias1 = someValue1 AND someAlias2 = someValue2; someAlias is an alias for a column in some_table. In my case I can't name the columns ...
0
votes
1answer
72 views

Drupal Views, Taxonomy

We are using Taxonomy and Views modules to display content based on the taxonomy item(s) selected. So, when users click on the taxonomy terms,on the menu, the views block picks the URL and based on ...
0
votes
2answers
298 views

Run linux script on received emails

I have written a small little script that looks up a work on wikipedia and then prints the result to the command line. I want to be able to email that word to my server and then have my server email ...
0
votes
1answer
146 views

How can I include a list of doxygen ALIASES defined in an external file when compiling

Does anyone know how I can include a list of doxygen ALIASES defined in an external file when compiling I dont want to define ALIASES in the .doxyfile as this is for a large codebase that lots of ...
0
votes
1answer
93 views

postfix receiving two emails

I have a virtual alias setup in /etc/postfix/virtual that reads: @mydomain.com mydomainincoming I then have a pipe setup in /etc/aliases that reads: mydomainincoming: ...
0
votes
1answer
214 views

PHP - IMAP test if an email alias exists

Is there a programmatic way to test the existence of an email alias when logged in as an IMAP client from a remote host rather than sending an email or having to parse the aliases file on the mail ...
0
votes
3answers
60 views

How to efficiently code a query in mysql to AND tags?

I have a common problem to be sure. I'd like to make a query that finds an entity that has "n" tags. So in the simplest case, we find all the entities that have the tag "hey". In a more complex case, ...
0
votes
0answers
91 views

Pathauto stopped working

I'm on a critical situation. I have a website with a lot of content (500+ nodes). However, all of the sudden, URL aliases stopped working. I get page cannot be found even nodes exist. I tried editing ...
0
votes
1answer
312 views

aliases (sendmail) to redirect emails

I have read that "aliases" (etc/aliases) can be used to redirect an email to an external email address (or piping it to a script etc.) It should normally work by putting this command in the "aliases" ...
0
votes
3answers
88 views

Is there any reason not to use Aliases in the System namespace?

I've always been used to using String instead of string and Int32 instead of int. Mainly because everything is a class, so I like to keep consistent and treat so called 'primitives' just like every ...