DO NOT USE for questions that happen to contain the word "history". Use this tag for questions about the history of a programming concept or feature.
5
votes
2answers
130 views
For how long before standardisation was `string` available?
C++ was formally standardised in 1998, but how far back can we find a class named string that looks like std::string does in C++2003 in a pre-standard C++ implementation?
I ask because CString, as ...
4
votes
2answers
105 views
Prevent storing URL in history?
When a user clicks to a page using a link on a previous page, is it possible for the target page to, on its own accord, remove its own URL from browser history? (without significant modification of ...
0
votes
3answers
47 views
Does 'svn update' include the history of the repository?
I'm comparing SVN and Git.
I know 'svn checkout' is the same as 'git clone' in that both include the history of the original repository.
In Git, once 'git clone' is done, I don't need to 'git clone' ...
0
votes
0answers
116 views
SQLite for saving history from webview
I want to save history(as simple url) from webview(in browser.class) in listView(in history.class).
I know about SQLiteHelper, but I'm don't understand yet, how exatcly to use it, for my app?
Please ...
0
votes
0answers
18 views
Is there a tool/utility to create a report on files changed between two tags in CVS?
I need to dig up all changes on all project files between two CVS tags that are about two years apart. I need to take that data and put it into a report that is easily readable and reference-able, ...
3
votes
2answers
75 views
IO::Prompter - Is it possible to disable history?
Is it possible - when prompting for a password - to configure prompt from IO::Prompter in a way that the input is not added to the history?
#!/usr/local/bin/perl
use warnings;
use strict;
use 5.10.1;
...
0
votes
1answer
50 views
SVN local history on new Repository [closed]
thanks to this post:
How to import my local svn project to new created svn repository and keep history information, I know it's possible to export local SVN history into new repository.
However, how ...
0
votes
0answers
66 views
History Plugin by Bulaton: Query String Prevents Bind event from being triggered
Im using bulapton's jquery History plugin and I'm stock dealing with states that has query string on it like for example "/events?id=23". The query string prevent the bind event from being triggered. ...
0
votes
2answers
106 views
choose mini JS framework for work with hash-routes [closed]
Please, advice me small js framework(for exemple BackboneJS) for work with my hash-route(or maybe html5 history). Just for call my function at current url. Nothing more. Backbone is very large for my ...
1
vote
1answer
102 views
History - can't reload page (clicking the same link)
How to reload the page using History.js (when clicking the same/active page/link again)?
When you navigate to /home in the menu bar, and after the page is done loading you click /home again the page ...
0
votes
1answer
107 views
How to search the changed fields in TFS History?
I am working with TFS 2010. I need to find a way to search the fields that have changed which are tracked in the history of a work item. As fields are changed and updated they get tracked in History ...
0
votes
1answer
206 views
navigator backhistory with phonegap
I have two page, page 1 and page 2. page 1 contains fields will contain values and a Next button to go to page 2. Page 2 contains a button before allowing back to page 1. how to display the page 1 ...
0
votes
1answer
112 views
google chrome extension for manipulating browsing history
I'm thinking of developing a Google Chrome extension for the first time; no previous experience. The extension I have in mind must be able to look at a user's browsing history and provide the URL of ...
1
vote
1answer
72 views
Reverse search completion of vim's command history without using direction keys
Is there an option to auto-complete a currently typed command with one from the history, without using the direction keys?
This an extension to this question: How do you search through vim's command ...
1
vote
2answers
100 views
Adding bash history time export temporarily for output?
Every once in a while I export my bash history to an external file. On occasion I would like to add export HISTTIMEFORMAT='%F %T ' so the time/date shows in the output, although it never appears in ...
0
votes
1answer
70 views
url change without hash
I want to change url when i open big image in pop up window on a current page with preview images. I don't want use window.location.hash feature because i want to manipulate with new url through PHP ...
0
votes
1answer
224 views
Correct use of History.js and AJAX dynamic loading
I am creating a website where I want to load dynamically the pages through AJAX. I am using History.js but I think that I am not doing it very right.
Basically I have an index.php page and some other ...
0
votes
1answer
301 views
View locally saved content from Mozilla Firefox
When browsing with Mozilla Firefox and loading a webpage with an audio file, that audio file should be saved in a media cache locally, right?
Is there a method or addon/tool for selecting, from ...
0
votes
1answer
58 views
cachingactivitymapper usage example
We implemented a GWT app using a MVP pattern.
Now we wanted to use cachingactivitymapper in that application.
I searched on the web for how to use this. I couldnt get anything.
Can anyone please ...
0
votes
1answer
66 views
Android DatePickerDialog to a year of history
I'm coding an android app about the egyptian history, and I want to add a DatePicker in a dialog, where I will show years, and whenever the user sets a year, it shows in the layout the events in that ...
0
votes
2answers
59 views
how to retain page data(State) in gwt except using cookies
I have an application with 6-7 tabs. All i want is that whenever i close my broswer and open it again, the page data should be retained i.e. the state of the page hould be maintained. Now in my page I ...
0
votes
1answer
69 views
Accessing an app's web history from another app
I have some apps that I know go out to the web and pull down some pages to be displayed within the application in some type of wrapper (working in Android). I was wondering if there was a way to be ...
1
vote
3answers
195 views
Filtering ZSH history by command
I was told that in ZSH you could do something like command and then when you hit up it would filter the history based on the given command. But when I try this it just cycles the history like bash ...
0
votes
1answer
499 views
TFS 2010: history lost after moving a folder
In order to clean up my project structure, I moved a folder into another (new) folder through the TFS Power Tools Shell-Extension (Rename/Move).
After checking the history at the new place, the move ...
3
votes
1answer
82 views
alias not showing up in bash history
HISTIGNORE variable is set to:
export HISTIGNORE="&:ls*:reboot:pwd:exit:clear:[ \t]*"
I have couple of Alias set. One of them is
alias todo='emacs ~/Dropbox/Documents/todo.txt'
None of them ...
3
votes
1answer
434 views
Within vim's regex engine, why are some metacharacters escaped and some are not?
Why do you have to escape some metacharacters in their regex engine, but not others? For example:
/foo[1-9]*
works as expected, but the regular expression
foo[1-9]+
must be expressed as
...
1
vote
1answer
37 views
What command to use to get the revision history of the files in a folder
I am trying to get the revision history of files from my windows views of a project. I know that there is a command in Unix that I can give and it will provide the file-names in one column and ...
3
votes
1answer
99 views
Always go to the top of the previous page?
Is it possible to make the script scroll to the top of the previous page? Right now the script returns to the previous page and in the middle of the body where the link was located.
...
0
votes
0answers
46 views
View the history of multiple files and folders selected in TFS
Just as mentioned in the subject. If I'd like to view the history of multiple files and folders I have selected in the Visual Studio's Source Control Explorer, is there a way to do it? Thanks.
1
vote
1answer
85 views
How to select/model last customer status in any given period SSAS
I'm trying to model the following situation in SSAS.
I have three dimensions:
Customers
id12
Statuses
id name
1 status_1
2 status_2
Dates
day_date
2012-01-01
2012-01-02
...
And, there is ...
2
votes
0answers
140 views
Rewriting Git history using filter-branch to remove multiple instances of a directory
Structure of Git repo foo in master branch
foo/refs/a.txt
foo/bar/refs/b.txt
In other branches refs/ might be in lots of other places
Goal: To remove all instances of the directory refs (and their ...
1
vote
1answer
308 views
Migration from UCM ClearCase to GIT
I am studying migrating from UCM ClearCase to GIT. The initial intention is to migrate all cc branches with their respective history.
A similar experience, best practices, any tips or suggestions ...
1
vote
1answer
98 views
Redirect url inside url
I have an external forum login form on my website but after logging in I would like users to redirect back to the exact website page that the visitor was looking at before logging in.
The thing I ...
0
votes
1answer
90 views
HTML5 History API and leave page (to same domain)
With media players on site we use the History API and XHR to allow navigation through the site without causing page refreshes (i.e. causing the media to stop).
This works nicely until the following ...
1
vote
0answers
341 views
clear android gmail search history programmatically
i try to clear gmail search history below. but it is not works.
how can i solve this?
SearchRecentSuggestions xxx =
new SearchRecentSuggestions(getBaseContext(), ...
1
vote
2answers
452 views
javascript:history.back() and previous page refresh
i have the button on my page <span id="back" class="button" onclick="location.href='javascript:history.back()';" which works fine, but i need it to refresh the previous page. The problem is, ...
0
votes
1answer
93 views
Clear History in GWT MVP
I have followed this tutorial from google developers and I built an application based on activities and places. As tutorial suggests, I use history Handler.
I created a "clear history" button, but I ...
0
votes
4answers
791 views
How to Disable Function keys using Javascript?
I'm having a page where i need to disable the Function keys mainly F12(Developertools).
I'm showing some sensitive data in the page so at any case i cannot make the users see the html and take the ...
1
vote
1answer
87 views
html 5 history restores some changes and not others?
I'm new to using the html 5 history object. I tried the following code:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
...
2
votes
1answer
76 views
event.state of history object in html 5 is null
I'm playing with the history object for the first time. I have the following code which I've been testing in chrome:
<!DOCTYPE html>
<html>
<head>
...
0
votes
0answers
30 views
Ways to prove an website has been up for some time
(Not sure if this is the best Stack Exchange site for this question)
I'd like to know some ways to show (not legally, but more convincingly than by my word) that a website has been up for a while. ...
0
votes
1answer
152 views
Jenkins JobConfigHistory Plugin - XML Parsing Error: no element found - Not showing Diffs
I installed JobConfigHistory plugin in Jenkins instance running as Windows service. Jenkins is running fine.
I made changes to a job's configuration i.e. added some text.
On the left pane Job's ...
0
votes
0answers
83 views
Inserting “Home” hash into browser history
I would like to achieve the following:
If a user opens a link to some sub-page in my website, like index.html#Contact, I would like to add the index.html# token onto the history stack before the ...
0
votes
2answers
157 views
Javascript concept using history object
I am interested in making a website that flashes through a visitors entire web history when they visit. I plan on using JavaScript to grab the history on each viewer's computer and animate through it ...
0
votes
0answers
33 views
changeset history - SOX compliance
Hi we are developing in the trunc and create a release brunch when the release is stable. Thus in the release branch there is usually only one change set (the one for creating the branch). For SOX ...
0
votes
2answers
57 views
Navigate location history backwards step by step in Emacs
This is not a question about how to use mark ring with C-u C-space.
What I want is to navigate location history backwards step by step. By "step" I mean any single atomic cursor move in a buffer. For ...
1
vote
1answer
68 views
Who invented syntax highlighting (and when)? [closed]
Who invented syntax highlighting (and when)?
I tried searching on web, but could not find definite answer.
Wikipedia mentions something along line "One of first editors with syntax highlighting ...
0
votes
0answers
78 views
Using HTML5 History with wordpress and htaccess
I am using html5 history pushState to keep track of where a user is on the main page of my Wordpress installation. Everything works great, but the thing is if I want to share the url or reload the ...
0
votes
2answers
476 views
Browser Back Button issue
Can anyone help me to solve, the browser back button problem?. When user selects any page from browser history list, i want to perform some server side processing. e.g. when you logout from ...
0
votes
0answers
58 views
WP7 how to set title for MediaHistoryItem
Following the instruction about How to integrate with the Music & Video Hub, I want to set title for MediaHistoryItem
I can set title for the Now playing tile, however I can't set title for ...

