A program to generate tags for a large project. These tags are usable by the Emacs text editor.

learn more… | top users | synonyms (1)

3
votes
3answers
112 views

Google Chrome does not revalidate etag on back/forth

Even though I send "cache-control: must-revalidate" Google Chrome uses a locally cached page when using the back and forth button in the browser. This is part of the original response: HTTP/1.1 200 ...
0
votes
0answers
18 views

IIS DELETE webmethod with invalid path is returning 412 instead of 404 error

I have a C#-based IIS ASHX proxy I've written to make cross-domain requests to a RESTful API. I've noticed that when I use the proxy to do a DELETE operation against a bogus path but I'm also ...
1
vote
0answers
55 views

ETag is already set - error from Partial View

protected override void OnActionExecuted(ActionExecutedContext filterContext) { base.OnActionExecuted(filterContext); AddRequiredInfoToViewBag(); if ...
0
votes
1answer
109 views

Leverage Browser Caching, Header Expires and Etags don't works

I know there are already a lot of posts that talk about my problem. But, I tried several modifications to leverage browser caching, header expires and Etags (on PageSpeed and Yslow) but it doesn't ...
1
vote
0answers
54 views

css files not getting cached

We are using IBM HTTP server as our web server. Whenever a request is sent to homepage, browser is caching all static files like js or images except CSS. Why is it caching JS files which are also ...
0
votes
0answers
59 views

Javascript is not getting executed when DOM/HTML is loaded browser cache

I am caching the dynamic content using the ETAG. There is javascript in tag which in turn located at the end of body tag. This script tag make changes in DOM elements. But when DOM/HTML is loaded ...
0
votes
0answers
38 views

Browser side caching of dynamic data with ETAGs

I am trying to cache my dynamic pages with ETAG. I am facing issues in that. I am populating few JS variables from PHP e.g. var temp123 = <?php echo $temp; ?> Browser is not caching the values ...
0
votes
1answer
14 views

Cacheing e-tags viewing

I am new to XML and caching and one of the comments is: All catalogue methods will now return an ETag header, like this: ETag: ā€œ686897696a7c876b7eā€ - should I be able to view this in the JSON Feed?
0
votes
0answers
34 views

etag caching with dojo template using img src

I have implemented etag caching server side with php, client side I call this php script directly in the img src attribute of the dojo template with the relative url to my php script as follows : ...
1
vote
0answers
70 views

why IE DO NOT request with “If-None-Match”?

(1)step 1: after first request, web server response: HTTP/1.0 200 OK Date: Mon, 14 Jan 2013 02:20:51 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-Powered-By: PHP/5.2.8 ...
1
vote
1answer
82 views

GET request with “If-Match” and ETags

I'm working on implmenenting ETag functionality for a RESTful service, and I'd like to be as close to the HTTP spec as possible. The spec however is not as clear as it probably should be. ...
0
votes
0answers
182 views

IIS 7.5 HTTP Compression ratio, cache and ETags

On IIS 7.5 (and IIS 8 for that matter), I'm getting a strange issue whereby the compression ratio changes between the initial response for a static resource and the subsequent responses. I can't be ...
0
votes
3answers
171 views

Generate valid ETAG file stream and compare with header

I have this etag header from the web server, ETag | 1347613725000 This is a png image, but I have no idea on how to check if the file is expired. Right now I'm hashing the stream with this code: ...
0
votes
1answer
107 views

adding md5-string to image-URLs worth it?

I'm dynamically generating a page by PHP. I am using the site's output string to generate a Etag and check that to send a 304 (not modified) when the site hasn't changed since the last request. I am ...
0
votes
0answers
193 views

Safari not sending “If-Modified-Since” and “If-None-Match” headers

I'm generating dynamic content with PHP. I'm sending the following HTTP-header: HTTP/1.1 304 Not Modified Date: Sun, 09 Dec 2012 17:24:41 GMT Server: Apache Connection: keep-alive, Keep-Alive ...
0
votes
1answer
88 views

etags auto generation

There were some people on stackoverflow having a problem like this but not exactly this and not exactly the solution I'm looking for. The problem is auto generating tag file by etags if the tag file ...
0
votes
1answer
45 views

variables are not tagged by etags

I've used etags to generate tags to be used in emacs. but I think it is so weak that there is no clue about variable definitions.variables ( and God knows the other problems) are not logged by etags. ...
0
votes
2answers
70 views

“CalendarApp: Mismatch: etags” when adding reminders - Google Apps Scripts

I have a small Google Apps Script that processes a date column in a spreadsheet and generates entries in a Calendar (birthdays). Work is fine, but when adding reminders to the (recently-created) ...
0
votes
0answers
149 views

Azure CDN edge nodes and dynamic content from origin server

I have a predominantly static site with one specific dynamic page that I have placed a cache header of max-age=7200 and an ETag equal to a new GUID every time the origin server is hit with a new ...
1
vote
1answer
102 views

turn off etags without a server

Hello, I just started with ASP.NET MVC 4 and I'm an internship at a business who told me to create a basic webshop without a server and then validating the HTML and the speed of the website with ...
2
votes
1answer
273 views

What encoding should I use to properly generate an ETag with crypto in nodeJS?

In my nodeJS app, I'd like to generate ETags for all the content that I return to the client. I need the ETag to be based off the actual content of the file instead of the date, so that the same file ...
0
votes
0answers
69 views

how to generate etags more smart in emacs?

I already knew that etags in emacs could provide TAGS by generate it in a specific project directory like: find -name *.[CH]|etags - However, I am working on a rather huge opensource project that ...
0
votes
1answer
829 views

eTags misconfigured

YSlow gives me the "There are 94 components with misconfigured ETags" -message. I have configured them with .htaccess "FileETag MTime Size" on Apache. Images show etags in this format: ...
0
votes
1answer
288 views

How Do I Configure eTags?

Using ySlow, it recommends that I use eTags. I never heard of them before today. The question is now, how do I configure eTags? I just spent the last 2 hours trying to figure this out. I tried ...
0
votes
1answer
324 views

How to use etags in a PHP file?

How do you implemented etags inside a PHP file? What do I upload to the server and what do I insert into my PHP file?
0
votes
1answer
147 views

Retreiving the etag on an Azure Table storage query

I need to be able to retrieve the etag from an Azure query, and attach them to my entities. The service will be updating the entities on a separate thread, so I need to store the etag of when the ...
2
votes
2answers
173 views

Using ETag / Last-Modified decorators with Django's class-based generic views

I've recently migrated all views in one of my Django projects to the new class-based ones. For classic function-based Django views there's a handy decorator django.views.decorators.http.condition that ...
0
votes
0answers
116 views

Implementation of Etag in Response Header using Python

I want to respond to client with response header with Etag. I referred This Link Now i want to implement Etag. right now i am handling only Content-type and Content-Length I just wanted to provide ...
18
votes
3answers
2k views

Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exhuberant ctags

I work on C++ projects, and I went through Alex Ott's guide to CEDET and other threads about tags in StackOverflow, but I am still confused about how Emacs interfaces with these different tag systems ...
0
votes
0answers
89 views

Caching of generated images - Apache sends unexpected E-Tag

I want to resize an image on demand so far this works fine. I removed the inode part of the apache for getting mashine independend Etags. Here is a part of my php code where you can see how I generate ...
0
votes
1answer
110 views

Expiring/busting Etag in Rails

When doing HTTP caching in rails, once would use: fresh_when etag: @user, public: true The problem with that is that if you chance your html for the page, the cached page is no longer going to be ...
0
votes
1answer
131 views

jQuery, browser cache, refreshing an image with attr('src', newimage)

I am refreshing images via attr('src', newimage), where newimage may point to one of several images and may already be cached by the browser. Unfortunately the browser cache is being completely ...
1
vote
1answer
159 views

How do I extract ETAG from a WCF Dataservices response?

I've been trying to get an answer to this question for quite some time. Since the WCF Dataservice isn't thread safe, and often it needs to be recreated, once I query my datastore for a record, how do ...
0
votes
1answer
51 views

Can IF-Match be used to conditionally update a property, not ETAG?

In Azure Table, can I use the IF-Match tag when Merging to conditionally update a value on something other than ETAG? Specifically, suppose I have an object like this public class Person : ...
0
votes
0answers
27 views

Disabling Etags on Zeus Web Server [closed]

Does anyone know how to tell Zeus to disable sending Etags?
1
vote
1answer
198 views

Javascript support in etags

I used etags to generate a TAGS file for emacs out of javascript source files. Some functions are missing from the tag. Why ? Does the javascript support include the following style ...
0
votes
0answers
56 views

Stop Apache Blocking ETags

I have written a web application that uses someone else's API that requires ETags. I have tried this code: header("ETagbleh: whatever"); Which works perfectly. However, when I set this: ...
0
votes
2answers
715 views

How to use Windows Azure Table Storage Timestamp or Etag field

I am developing a node.js application on Windows Azure Websites (IISNode) and have installed the Azure SDK module for node.js my question is how to use the etag or timestamp field in table storage. ...
1
vote
1answer
91 views

Why is etag “null” from the returned File object when uploading a file?

When I upload a file, I would like to have the etag so I can delete it afterwards. With the current API, the etag always returns null when uploading the file. Is there a way that I can get the etag ...
1
vote
1answer
85 views

Azure ETag headers appear malformed

ETags are required to be quoted but Azure CDN generates ETags that are not quoted. Has anyone seen or do you expect problems with intermediate caches because of this?
0
votes
1answer
66 views

Does wicket have ETag support?

I can't find any traces of etags support in Wicket. There is a way to use etags with it?
0
votes
3answers
205 views

Automatically jump to tag in Emacs

I'd like to have find-tag automatically accept the default option (i.e. the word at point) and jump to the tag postion without prompting. Is this possible? I'm also using the advised version of ...
0
votes
0answers
47 views

Enabling ETag in one directory

I've read alot about getting rid of ETags but can't find much information about enabling them. I guess everyone hates them. In any case, I need to use them for a project I'm working on. I was ...
1
vote
0answers
166 views

Etag generation with RestEasy

My question is quite simple : is there a way to generate an ETag on a GET request using Java/RestEasy ? In my mind, I'm searching for a simple-elegant annotation in the way of @Cache{param0=val0, ...
2
votes
1answer
226 views

Rails 3: How to prevent the browser from loading a page from cache on back/forward navigation?

I have the following situation: Page A: /something/new Which posts back to: /something/create Which redirects to Page B: /something/edit So far it all works. Now, /something/edit is a page that ...
0
votes
0answers
143 views

IE9 not issuing if-none-match with https website

On our dev site with http, I get the IE9 browser issuing the If-none-match tag correctly with the correct value corresponding to the ETag previously received from server. This then produce the 304 ...
0
votes
0answers
98 views

Configure ETags on litespeed server

i recently search on google and also ask from my hosting but there are no way to configure ETags on litespeed anyone know how can i remove etag on litespeed server?
0
votes
1answer
527 views

MVC4 WebApi adding ETag in Response Header

We have a REST Service created in Mvc4 I am trying to add ETag Header in the Response from my WebApi method. It is added in the Header collection without any error but when I check the response ...
0
votes
1answer
739 views

Nginx/PHP : Nginx is not returning a 304 response when sending Etag header

I'm trying the understand local cache with ETags and a nginx (1.2.1) server which redirects php's request to a php-cgi deamon. Here my simple index.php : <?php header('Cache-Control: public'); ...
2
votes
1answer
652 views

Configuring ETags with Http module in asp.net

i'm optimizing our company web site with seo optimization and yslow. but in yslow the ETAGS are F . I've gone through tens of web sites and tutorials and the best option was using an HTTP Module. I've ...

1 2 3 4 5