history

Matlab function/class history

How to find out about a particular function or class in which version of Matlab/toolbox it was first introduced? I know I can look through all Release Notes, or Google can help sometime, but is there any better way? ...

jQuery deep linking & ajax loading in multiple containers (sub containers)

Hi! I currently developing a site and have bumped into a problem.. (ajax loading stored urls) Thought someone could help.. First here is sample page layout: <div id="main-container"> <div id="top-menu"> <a href="/link1" rel="ajax" />Link 1</a> <a href="/link2" rel="ajax" />Link 2</a> </div> <div id="content"> <div id...

How to avoid multiple Page Load event on the pages with History Points?

Hello, I have page with UpdatePanel, ListView, ScriptManager and Navigate event. It shows a list of companies depending on the country selected. I've added HistoryPoint with the selected country. When I try to load this page with history point in new browser window (i.e. country/browse.aspx#&&location=1) Page Load event fires before...

Hisory points in MVC2

How can we create history points for each view in MVC? And how can we delete the previous history point while navigating a web site? Thanks, kaps ...

How to Clear history in Adobe Air's HTML control

Hi everyone, I am using Adobe AIR's html control in my desktop application to let users see web pages. I am using the html.historyBack() and html.historyNext() methods to allow moving back and forth. But I want to clear the history once a specific option is selected, say a click on a button, without restarting the applica...

Is there a way in TFS to see all the files that have been worked on by different users?

I have 3 people working on 1 Team project in TFS. I want to see all the users' work from the date when this Team project was branched until the day the last user checked in his work. It's required so I know how many files to transfer to another server. Does anyone know if there is a way? I did "view history" and it didn't really give me...

Why is it called a 'String'?

Possible Duplicate: The History Behind the Definition of a String In most programming languages a string is a sequence of characters. Why is it named that? The earliest instance of it being called a string is Algol 60 (as far as I know). Question posed by Douglas Crockford in his talk today (will post when talk is online). ...

Removing private information from old Git commits

I have a project versioned with Git that I'd like to make open source, but it has some private information in it that is specific to the environment in which it was originally used. I'm going to change the information in question to load from a config file which is not included in the repository. I realize I should have done this in the ...

Oracle - Triggers to create a history row on update

First, we currently have the behavior that's desired, but it's not trivial to maintain when any changes to the database are needed. I'm looking for anything simpler, more efficient, or easier to maintain (anything that does any of those 3 would be most welcome). When we perform an update, a history row is created that is a copy of the ...

Modify the Asp.net Scriptmanager Ajax History

Using the Ajax-History Function of the Asp.net Scriptmanager in Asp.net 3.5 is a great way to support cross-browser history for Ajax-enabled applications. So we are using this functionality in our newest project (a asp.net 3.5-WebForms-Application). The most important issue for us in doing that are clean urls though. So as we are only ...

(For what) Are Fortran, Cobol and Co. used today?

I'm a relatively young programmer and so I don't really know much about languages like Fortran or Cobol that have their origins in the beginning of modern informatics. I'm a bit confused because it seems like there are many people out there saying that these two languages are still very alive and being used all over the world whereas ot...

Why the \G in SELECT * FROM table_name\G?

Terminating a MySQL query with \G instead of ; will cause MySQL to return the result set in vertical format, which is sometimes easier to read if the number of returned columns is large. Example: mysql> SELECT * FROM help_keyword LIMIT 3\G *************************** 1. row *************************** help_keyword_id: 0 name...

-isysroot or SDKROOT problem

I am a newbie to libhistory, so I was looking at the sample found with readline library. Compiled it on command prompt using: gcc -o ./a.out /usr/local/share/readline/histexamp.c -lreadline -L/usr/local/lib/It compiles and maintains history. Then crated a xcode project with the same file and linked against readline library it compiles f...

What happened to codesaga tfs/svn history viewer?

What happened with this fine tfs/svn history viewer? The codesaga.com domain seems to be governed by some other entity. It seems that project is not maintained anymore? ...

Unix commandline history substitution ^foo^bar (for multiple replacements)

Occasionally I use the bash command to replace string in previous command: ^foo^bar Today I wanted to make the replacement in the following line for replacing all occurrences of checkbox with `radio: $ git mv _product_checkbox_buttons.html.erb _product_checkbox_button.html.erb $ ^checkbox^radio git mv _product_radio_buttons.html.erb ...

The history of appearance of Ctrl-Enter

Is there anybody who knows the history of appearance of Ctrl-Enter hotkey which means "Send"? It is pretty "classic" now. I remember that for the first time I've met that hotkey in ICQ 99, but now almost every IM have such hotkey and many popular social networking sites. Some time ago I was surprised that in the "Commit" dialog of eclips...

Is it possible to move/rename files in git and maintain their history?

I would like to rename/move a project subtree in git moving it from '/project/xyz' to '/components/xyz' If I use a plain 'git mv project components' then all the file history for the xyz project gets lost. Is there a way to move this such that the history is maintained? ...

The method used in 3rd-party garbage collector

I am writing to clarify some comments on this website. 1) I know that C++ has no garbage collector. One said that C++ was invented before the idea of garbage collector, so that's the reason. Is that true? I think it makes sense. 2) Whenever garbage collector was discussed, smart point(such as boost::share_ptr) was brought out to be a ...

Using GWT History to pass parameters?

I have a page called Orders and a page called OrderDetails. As described in the excellent MVP tutorial I'm working with History (with a central ValueChangeListener) and an "event bus" HandlerManager. I have a handler registered for the event that someone clicks on an order, which basically creates the OrderDetailPresenter, passes in the...

GWT History token rewriting

Hi friends, I want to do history token rewriting. Don't know its possible or not. e.g. If my application URL is http://localhost:8080/myapp/#login which contain 'login' as history token. Is it possible to rewrite the URL like http://localhost:8080/myapp/user/login. Or is it possible to remove '#' from history token? ...