Edited wiki page DeveloperFAQ through web user interface.
diff --git a/DeveloperFAQ.wiki b/DeveloperFAQ.wiki
index 74cc316..2ca9513 100644
--- a/DeveloperFAQ.wiki
+++ b/DeveloperFAQ.wiki
@@ -46,4 +46,12 @@
 
 * I have an existing Adaptor that provides full data pushes - how do I make it support incremental pushes?
 
-Implement `com/google/enterprise/adaptor/PollingIncrementalLister` which has a single method `getModifiedDocIds(DocIdPusher pusher)` . When initializing the Adaptor, register with `AdaptorContext.setPollingIncrementalLister(yourLister)`.
\ No newline at end of file
+Implement `com/google/enterprise/adaptor/PollingIncrementalLister` which has a single method `getModifiedDocIds(DocIdPusher pusher)` . When initializing the Adaptor, register with `AdaptorContext.setPollingIncrementalLister(yourLister)`.
+
+* In the connector code, how do I check if GSA is giving if-modified-since? 
+
+https://code.google.com/p/plexi/source/browse/src/com/google/enterprise/adaptor/Request.java#34
+
+* In the connector code, how do I give the last-modified to the GSA?
+
+https://code.google.com/p/plexi/source/browse/src/com/google/enterprise/adaptor/Response.java#75
\ No newline at end of file