Tagged Questions
The rewriting tag has no wiki summary.
6
votes
5answers
293 views
Do I need to write my own unmanaged IL library to rewrite IL with the CLR Profiling API?
I've been looking at some of the articles for the CLR Profiling API, and many of those articles talk about calling SetILFunctionBody() to do the actual IL rewriting; however, none of those articles ...
2
votes
2answers
27 views
URL rewriting apache2
How would I be able to rewrite
anyhost.com/argument1/parameter2/some-text/
as
anyhost.com/index.php?path=argument1/parameter2/some-text/
or
...
1
vote
2answers
90 views
Use of term rewriting in decision procedures for bit-vector arithmetic
I am working on a project whose focus is the use of term rewriting to solve/simplify fixed-size bit-vector arithmetic problems, which is something useful to do as a prior step to some decision ...
1
vote
1answer
60 views
PIL image conversion not using file system
I would like to do image conversion/rewriting with PIL just using RAM memory. I have the image in bytes in RAM and I would like to convert it to some other format or possibly the same. I know I can do ...
1
vote
2answers
526 views
Spring Roo 1.1.0.M1 .jspx rewriting
I am attempting to customize a create.jspx in Roo 1.1.0.M1. I am removing some fields from the UI that I want to automatically set in the controller (eg. dateCreated, createdBy).
This works ok, UNTIL ...
1
vote
1answer
660 views
GWT History token rewriting
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 ...
0
votes
2answers
32 views
How to rewrite these urls for country, state, city?
I have a site where articles being submitted from worldwide and I record the location of them as Country -> State -> City, for that I am generating URLs like:
...
0
votes
1answer
31 views
Renaming the folder using htaccess
I have added the below code in ht-access.
RewriteEngine on
RewriteBase /Dinsmore/
RewriteRule ^admin/(.*) administrator/$1
RewriteCond %{THE_REQUEST} ^GET\ /^administrator/
RewriteRule ...
0
votes
1answer
25 views
Simple nginx rewriting for clean urls
I'm mostly using the standard nginx settings and rewrite using the following code:
rewrite ^/account/credit$ /account/credit.php$1 last;
rewrite ^/account/credit\/$ //account/credit.php$1 last;
...
0
votes
2answers
701 views
Rewriting network packets on the fly using libnetfilter_queue
I am attempting to write a userspace application that can hook into an OS's network stack, sniff packets flying past and edit ones that its interested in.
After much Googling, it appears to me that ...
0
votes
2answers
46 views
How can automate text rewriting?
I will explain what I wanna do.
If I have a text like "go there Jack" and I wanna automate rewriting it as "Jack went there".
Let's imagine it's a lengthy text over thousands of lines and has a ...