Asset Publisher

An error occurred while processing the template.
The following has evaluated to null or missing:
==> data.meta [in template "252001#252047#252845" at line 459, column 10]
----
Tip: It's the step after the last dot that caused this error, not those before it.
----
Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----
----
FTL stack trace ("~" means nesting-related):
- Failed at: #if data.meta.laufendenummer?has_cont... [in template "252001#252047#252845" at line 459, column 5]
----
1<#-- used @ Veranstaltung-Detailseite Intro 
2 used @ Publikation-Detailseite Intro 
3--> 
4 
5<#-- 
6Web content templates to display teaser on thema detail page 
7 
8Generic template for detail pages Intro / Teaser element 
9--> 
10<#-- 
11Display the current page title 
12--> 
13<#include "${fullTemplatesPath}/functions/relatedContentUtil.ftl" /> 
14<#include "${fullTemplatesPath}/macros/debugging.ftl" /> 
15 
16<#include "${fullTemplatesPath}/macros/page-modules/PMIntro.ftl" /> 
17<#include "${fullTemplatesPath}/macros/atomic-modules/AMPublicationCarousel.ftl" /> 
18<#include "${fullTemplatesPath}/macros/atomic-modules/AMMetadata.ftl" /> 
19<#include "${fullTemplatesPath}/macros/atomic-modules/AMDatetime.ftl" /> 
20 
21 
22<#-- 
23 renders the Intro for nearly all Pages 
24 TODO: remove Share? (was in the designs, but not anymore?) 
25 TODO: check if languageSelect/filter are working (js) 
26 
27 - portletId 
28 - data = { 
29 "media": string (src from image), 
30 "category": string, 
31 "title": string, 
32 "author": string, 
33 "subheadline": string, 
34 "copy": string, 
35 "filter": { 
36 "id": string, 
37 "name": string, 
38 "entries": Array<Object> ({key:value}), 
39 }, 
40 "languageSelect": { 
41 "id": string, 
42 "name": string, 
43 "entries": Array<Object> ({key:value}), 
44 }, 
45 "meta": { 
46 "pos"; string (top/bottom) 
47 "date": string, 
48 "hash": string, 
49 "info": string, (url) 
50 }, 
51 "share" : { 
52 "login": string, 
53 "print": string, 
54 "mail": string, 
55 "multishare": string?? (tbd) 
56
57 - AMMetadata: macro 
58 - position: String ("top") -> defines wether the meta-data should be rendered above or below the intro-content 
59
60--> 
61 
62<#assign 
63 JournalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService") 
64 
65 ServiceContext = staticUtil["com.liferay.portal.kernel.service.ServiceContextThreadLocal"].getServiceContext() 
66 DLAPP = serviceLocator.findService("com.liferay.document.library.kernel.service.DLAppLocalService") 
67 
68 themeDisplay = ServiceContext.getThemeDisplay() 
69 editmode = FrontendService.user.isPrivilegedUser(themeDisplay) 
70 
71 languageId = themeDisplay.getLocale() 
72 groupId = themeDisplay.getScopeGroupId() 
73 currentUrl = themeDisplay.getURLCurrent() 
74 
75 layout = themeDisplay.getLayout() 
76 layouttpl = layout.getTypeSettingsProperties().getProperty("layout-template-id") 
77/> 
78 
79<#setting locale="${languageId}"> 
80 
81<#-- get article from url --> 
82 
83<#assign entry = FrontendService.article.getArticleToUrl(currentUrl, groupId?number)! > 
84 
85 
86<#if entry?has_content> 
87 
88 <#if entry.resourcePrimKey??> 
89 <#assign primaryKey = entry.resourcePrimKey?number > 
90 <#elseif entry.classPK??> 
91 <#assign primaryKey = entry.classPK?number > 
92 </#if> 
93 
94 <#assign 
95 jsonString = FrontendService.article.getWebcontent(primaryKey) 
96 json = FrontendService.json.parseAsJson(jsonString) 
97 
98 title = entry.getTitle(languageId) 
99 data = { 
100 "title": title 
101
102 /> 
103 <@debugJsonString jsonString "ADT_KASDE_DYNAMIC_INTRO" /> 
104 
105 <#if hasContent('untertitel', languageId, json)> 
106 <#assign data = data + { "subheadline": getValueForLanguage('untertitel', languageId, json, "first") } > 
107 </#if> 
108 
109 <#if hasContent('beschreibung', languageId, json)> 
110 <#assign data = data + { "copy": getValueForLanguage('beschreibung', languageId, json, "first") } > 
111 </#if> 
112 
113 <#-- fill meta data --> 
114 <#assign meta = {} /> 
115 
116 <#-- PUBLIKATIONEN DETAIL --> 
117 <#if layouttpl?contains("LAYOUT_KASDE_PUBLIKATIONEN_DETAIL")> 
118 
119 <#if hasContent('coverDMTKASDEMEDIUM', languageId, json)> 
120 <#assign 
121 coverBildString = getValueForLanguage('coverDMTKASDEMEDIUM', languageId, json, "first") 
122 /> 
123 
124 <#if coverBildString?has_content> 
125 <#assign 
126 coverBild = FrontendService.json.parseAsJson(coverBildString) 
127 dMTJsonObject = FrontendService.media.getDMTJsonObject( coverBild.groupId?number, coverBild.uuid, locale ) 
128 linkToDMT = FrontendService.media.getImageURLForAMConfiguration('hd-resolution',coverBild.groupId?number, coverBild.uuid ) 
129 data = data + { "media": linkToDMT, "meta" : dMTJsonObject } 
130 /> 
131 <#if dMTJsonObject.altText?? > 
132 <#assign data = data + {"alt" : dMTJsonObject.altText} /> 
133 </#if> 
134 <#if dMTJsonObject.quelle??> 
135 <#assign meta = meta + { "quelle": dMTJsonObject.quelle } /> 
136 </#if> 
137 </#if> 
138 <#-- uncomment to display pdf cover as Intro Image 
139 <#elseif hasContent('document_pdfDMTBASICDOCUMENT', languageId, json)> 
140 <#assign 
141 pdfDocument = getValueForLanguage('document_pdfDMTBASICDOCUMENT', languageId, json, "first") 
142 fileEntry = FrontendService.media.getFileEntry(pdfDocument.uuid, groupId?number)!/> 
143 <#if fileEntry?has_content> 
144 <#assign 
145 linkToThumbnail = FrontendService.link.getThumbnailSrc(fileEntry , themeDisplay) 
146 data = data + { "media": linkToThumbnail } 
147 /> 
148 </#if> 
149 --> 
150 </#if> 
151 
152 <#assign 
153 meta = meta + { "orderInfo": "true" } 
154 verbundJournalArticle = FrontendService.publication.getVerbundToPublikation( entry )!"" 
155 /> 
156 
157 
158 
159 <#if hasContent('erscheinungsdatum', languageId, json)> 
160 <#assign 
161 erscheinungsdatum = getValueForLanguage('erscheinungsdatum', languageId, json, "first") 
162 /> 
163 <#if erscheinungsdatum?has_content > 
164 <#assign 
165 erscheinungsdatumFormatted = FrontendService.date.getDateFormatLong( erscheinungsdatum, languageId ) 
166 meta = meta + { "date": erscheinungsdatumFormatted } 
167 /> 
168 </#if> 
169 </#if> 
170 
171 <#if verbundJournalArticle?has_content> 
172 <#assign 
173 verbundJsonString = FrontendService.article.getWebcontent(verbundJournalArticle.resourcePrimKey) 
174 verbundJson = FrontendService.json.parseAsJson(verbundJsonString) 
175 laufendenummer = getValueForLanguage('laufendenummer', languageId, verbundJson, "first") 
176 coverImg = getValueForLanguage('mediumDMTKASDEMEDIUM', languageId, verbundJson, "first") 
177 /> 
178 <@debugJsonString verbundJsonString "ADT_KASDE_DYNAMIC_INTRO-verbundJournalArticle" /> 
179 <#assign meta = meta + { "laufendenummer": laufendenummer } > 
180 
181 <#if coverImg?has_content && coverImg.url?has_content > 
182 <#assign meta = meta + { "coverImg": coverImg.url } > 
183 </#if> 
184 </#if> 
185 
186 
187 <#if meta?has_content> 
188 <#assign data = data + {"meta": meta } > 
189 </#if> 
190 
191 </#if> 
192 <#-- PUBLIKATIONEN DETAIL END --> 
193 
194 
195 <#-- VERANSTALTUNGEN DETAIL --> 
196 <#if layouttpl?contains("LAYOUT_KASDE_VERANSTALTUNGEN_DETAIL")> 
197 <#assign 
198 friendlyUrl = FrontendService.article.getFriendlyUrl(primaryKey, languageId, groupId)!"" 
199 languages = entry.getAvailableLanguageIds() 
200 links = [] 
201 /> 
202 <#if languages?has_content && friendlyUrl?has_content> 
203 <#if (languages?size > 1) > 
204 <#list languages as language> 
205 <#assign 
206 defaultLanguage = "de_DE" 
207 defaultLocale = FrontendService.language.getLocaleByKey(defaultLanguage) 
208 linkLocale = (FrontendService.language.getLocaleByKey(language))!defaultLocale 
209 langFriendlyUrl = FrontendService.article.getFriendlyUrl(primaryKey, linkLocale, groupId) 
210 
211 link = { 
212 "key": language!defaultLanguage, 
213 "value": linkLocale.getDisplayLanguage(languageId), 
214 "url": "/c/portal/update_language?p_l_id=" + 
215 layout.plid + "&redirect=" + langFriendlyUrl + 
216 "&languageId=" + language 
217
218 /> 
219 <#if language == languageId> 
220 <#assign link = link + { "selected": "true" } > 
221 </#if> 
222 <#assign links = links + [link]> 
223 </#list> 
224 <#assign 
225 data = data + { 
226 "languageSelect": { 
227 "id": "languageSelectRedirect", 
228 "name": "languageselectRedirect", 
229 "entries": links, 
230 "label": languageUtil.get(languageId, "diese.veranstaltung.ist.in.weiteren.sprachen.verfuegbar") 
231
232
233 /> 
234 </#if> 
235 </#if> 
236 </#if> 
237 
238 <#if hasContent('erscheinungsdatum', languageId, json)> 
239 <#assign 
240 startdate = getValueForLanguage('erscheinungsdatum', languageId, json, "first") 
241 meta = meta + { "start": startdate?date.iso, "end": "" } 
242 /> 
243 </#if> 
244 
245 <#if hasContent('startdatum', languageId, json)> 
246 <#assign 
247 startdate = getValueForLanguage('startdatum', languageId, json, "first") 
248 meta = meta + { "start": startdate?date.iso, "end": "" } 
249 /> 
250 </#if> 
251 
252 <#if hasValue('einfuehrungText', locale, json)> 
253 <#assign data = data + { "einfuehrungText" : getValueForLanguage('einfuehrungText', locale, json, "first") } > 
254 <#elseif hasValue(FrontendService.article.getFieldNameByReferenceName(primaryKey, 'einfuehrungText'), locale, json, "first")> 
255 <#assign data = data + { "einfuehrungText" : getValueForLanguage(FrontendService.article.getFieldNameByReferenceName(primaryKey, 'einfuehrungText'), locale, json, "first") } > 
256 </#if> 
257 
258 <#if hasContent('endedatum', languageId, json)> 
259 <#assign 
260 enddate = getValueForLanguage('endedatum', languageId, json, "first") 
261 meta = meta + { "end": enddate?date.iso } 
262 /> 
263 </#if> 
264 
265 <#if hasContent('startzeit', languageId, json)> 
266 <#assign 
267 startzeit = getValueForLanguage('startzeit', languageId, json, "first") 
268 /> 
269 <#if startzeit?has_content > 
270 <#assign meta = meta + { "startzeit": startzeit } /> 
271 </#if> 
272 </#if> 
273 
274 <#if hasContent('endezeit', languageId, json)> 
275 <#assign 
276 endezeit = getValueForLanguage('endezeit', languageId, json, "first") 
277 meta = meta + { "endezeit": endezeit } 
278 /> 
279 </#if> 
280 
281 <#if hasContent('ortWCSKASDEORT', languageId, json)> 
282 <#assign 
283 ortWCSKASDEORT = FrontendService.json.parseAsJson(getValueForLanguage('ortWCSKASDEORT', languageId, json, "first")) 
284 ortWCSKASDEORTPrimaryKey = ortWCSKASDEORT.classPK?number 
285 ortWCSKASDEORTWebContent = FrontendService.article.getWebcontentByPk(ortWCSKASDEORTPrimaryKey)!"" 
286 /> 
287 <#if ortWCSKASDEORTWebContent?has_content > 
288 <#assign 
289 ortWCSKASDEORTTitle = ortWCSKASDEORTWebContent.getTitle(languageId)!"" 
290 /> 
291 <#if ortWCSKASDEORTTitle?has_content > 
292 <#assign 
293 meta = meta + { "ortWCSKASDEORT": ortWCSKASDEORTTitle } 
294 /> 
295 </#if> 
296 </#if> 
297 </#if> 
298 
299 
300 <#if hasContent('veranstaltungsnummer', languageId, json)> 
301 <#assign 
302 verauuid = getValueForLanguage('veranstaltungsnummer', languageId, json, "first") 
303 meta = meta + { "verauuid": verauuid } 
304 /> 
305 </#if> 
306 
307 
308 <#if (data.meta)?has_content > 
309 <#assign meta = data.meta /> 
310 </#if> 
311 
312 <#if !(data.media)?has_content && hasContent('mediumDMTKASDEMEDIUM', languageId, json)> 
313 <#assign 
314 medium = getValueForLanguage('mediumDMTKASDEMEDIUM', languageId, json, "first") 
315 mediaData = getRelatedMediaObject(medium, themeDisplay, languageId, FrontendService, "hd-resolution") 
316 /> 
317 <#assign data = data + { "media": mediaData.url , "meta" : mediaData.meta} > 
318 
319 
320 <#if mediaData.meta?? && mediaData.meta.quelle??> 
321 <#assign meta = meta + data.meta + { "quelle": mediaData.meta.quelle } /> 
322 </#if> 
323 </#if> 
324 
325 
326 <#if meta?has_content> 
327 <#assign data = data + {"meta": meta } > 
328 </#if> 
329 
330 <#-- END fill meta data --> 
331 
332 <#if hasContentForSequence('autorenWCSKASDEPERSON', languageId, json)> 
333 <#assign 
334 journalArticles = getValueForLanguageAnsprechpartner('autorenWCSKASDEPERSON', languageId, json) 
335 authors = [] 
336 /> 
337 <#list journalArticles as articleString> 
338 <#assign article = FrontendService.json.parseAsJson(articleString) /> 
339 <#if article?has_content && article?is_hash && article.classPK??> 
340 <#assign articleDereferenced = FrontendService.person.resolveContactInstanceToPerson(article, languageId)!"" /> 
341 <#if articleDereferenced?has_content > 
342 <#assign 
343 author = "" 
344 articlePrimaryKey = articleDereferenced.classPK?number 
345 articleJsonString = FrontendService.article.getWebcontent(articlePrimaryKey) 
346 articleJson = FrontendService.json.parseAsJson(articleJsonString) 
347 /> 
348 <@debugJsonString articleJsonString "ADT_KASDE_DYNAMIC_INTRO-autorenWCSKASDEPERSON" /> 
349 <#if hasValue('anredetitel', languageId, articleJson)> 
350 <#assign author = author + getValueForLanguage('anredetitel', languageId, articleJson, " ") + " "> 
351 </#if> 
352 <#if hasValue('vorname', languageId, articleJson)> 
353 <#assign author = author + getValueForLanguage('vorname', languageId, articleJson, " ") + " "> 
354 </#if> 
355 <#if hasValue('nachname', languageId, articleJson)> 
356 <#assign author = author + getValueForLanguage('nachname', languageId, articleJson, " ") + " "> 
357 </#if> 
358 
359 <#attempt> 
360 <#assign href = FrontendService.article.getFriendlyUrl(articlePrimaryKey, languageId, groupId)!"#" > 
361 <#recover> 
362 <#assign href = "#" > 
363 </#attempt> 
364 <#if href?has_content && href != "#" && href != "/_404"> 
365 <#assign author = '<a href="' + href + '">' + author?trim + '</a>'> 
366 </#if> 
367 
368 <#assign authors = authors + [author?trim]> 
369 </#if> 
370 </#if> 
371 </#list> 
372 <#if authors?has_content> 
373 <#assign data = data + { "author": authors?join(", ") } > 
374 </#if> 
375 </#if> 
376 
377 <#if layouttpl?contains("LAYOUT_KASDE_VERANSTALTUNGEN_DETAIL") > 
378 <#assign categories = FrontendService.category.getCategoriesToArticle(primaryKey, "VERANSTALTUNGSTYP")! > 
379 <#if categories?has_content && categories[0]?has_content > 
380 <#assign data = data + { "category": categories[0].getTitle(languageId,true)! } > 
381 </#if> 
382 
383 <#if hasContent('ausgebucht', languageId, json)> 
384 <#assign data = data + { "ausgebucht" : getValueForLanguage('ausgebucht', languageId, json, "first") }> 
385 </#if> 
386 
387 <#if hasContent('storniert', languageId, json)> 
388 <#assign data = data + { "storniert" : getValueForLanguage('storniert', languageId, json, "first") }> 
389 </#if> 
390 
391 <#elseif layouttpl?contains("LAYOUT_KASDE_PUBLIKATIONEN_DETAIL") > 
392 <#assign categories = FrontendService.category.getCategoriesToArticle(primaryKey, "PUBLIKATIONSREIHE")! > 
393 <#if categories?has_content && categories[0]?has_content > 
394 <#assign data = data + { "category": categories[0].getTitle(languageId,true)! } > 
395 </#if> 
396 <#else> 
397 <#assign categories = FrontendService.category.getCategoriesToArticle(primaryKey, "THEMA")! > 
398 <#if categories?has_content && categories[0]?has_content > 
399 <#assign data = data + { "category": categories[0].getTitle(languageId,true)! } > 
400 </#if> 
401 </#if> 
402 
403 
404 <#assign 
405 languages = [] 
406 /> 
407 
408 <#attempt> 
409 <#if json["document_pdfDMTBASICDOCUMENT"]?? > 
410 <#list json["document_pdfDMTBASICDOCUMENT"]?keys as pdf_language> 
411 <#if pdf_language?has_content > 
412 <#assign 
413 docRefJson = getValueForLanguage('document_pdfDMTBASICDOCUMENT', pdf_language, json, "first") 
414 docRef = FrontendService.json.parseAsJson(docRefJson) 
415 /> 
416 <#if docRef?is_hash && pdf_language != languageId > 
417 <#assign 
418 lang = FrontendService.language.getLocaleByKey(pdf_language)!"" 
419 docGroupId = docRef["groupId"]?number 
420 docUuid = docRef["uuid"] 
421 dMTJsonObject = FrontendService.media.getDMTJsonObject( docGroupId, docUuid, locale ) 
422 dMTLink = FrontendService.media.getLinkToDMT( dMTJsonObject ) 
423 /> 
424 <#if lang?has_content> 
425 <#assign 
426 languages = languages + [ 
427
428 "key": pdf_language, 
429 "value": FrontendService.language.getLocaleByKey(pdf_language).getDisplayLanguage(), 
430 "url": dMTLink 
431 }] 
432 /> 
433 </#if> 
434 </#if> 
435 </#if> 
436 </#list> 
437 </#if> 
438 <#recover> 
439 </#attempt> 
440 
441 <#if (languages?size > 0)> 
442 <#attempt> 
443 <#assign 
444 data = data + { "languageSelect": { 
445 "id": "languageSelect", 
446 "name": "languageselect", 
447 "entries": languages, 
448 "documents": "", 
449 "button": "true" 
450 }} 
451 /> 
452 <#recover> 
453 </#attempt> 
454 </#if> 
455 
456 <@PMIntro "ADT_KASDE_DYNAMIC_INTRO" data AMMetadata AMDatetime "bottom" /> 
457 ${FrontendService.article.getEditArticleHtml(primaryKey, themeDisplay)} 
458 
459 <#if data.meta.laufendenummer?has_content !isACColorScheme() && !isVLCColorScheme() && !isDPMColorScheme()> 
460 <div>  
461 <div id="publicationVerbundPagination"> 
462 <@AMPublicationCarousel data.meta.laufendenummer data.meta.date data.meta.coverImg /> 
463 </div> 
464 </div> 
465 </#if> 
466 
467<#elseif (editmode?? && editmode)> 
468 <@errorMessage languageUtil.get(locale, "kein.journalArticle.gefunden") "ADT_KASDE_DYNAMIC_INTRO" layouttpl currentUrl /> 
469</#if> 

Asset Publisher

Please click here to view the contents.
Or adjust your cookie settings under privacy policy.

http://www.kas.de/upload/bilder/eu-referendum/Maennchen_INorOUT.PNG

Welcome to the KAS UK EU referendum webpage. Here, between now and the referendum, we will be providing regular updates, including our own reports and publications, opinion polls and predictions, information on the different parties and their positions, interesting quotes and links. We will also be providing additional information about the referendum process.

A referendum on whether the United Kingdom will stay or leave the European Union will be held on 23 June. The question is why.

Following the general election in May 2015, in which Prime Minister David Cameron’s Conservative Party won a majority in the House of Commons, he reiterated the party's manifesto commitment to hold an "in-out" referendum on Britain's membership of the European Union, following negotiations with EU leaders.

The Treaties of the European Union provide for a member state to leave the EU, either on the basis of a negotiated withdrawal agreement or without one. If the UK were to leave the EU following a referendum, it is likely that the Government would negotiate an agreement with the EU, which would probably contain transitional arrangements as well as provide for the UK’s long-term future relations with the EU. There is no precedent for such an agreement, but it would in all likelihood come at the end of complex and lengthy negotiations.

The referendums outcome is going to be a vital element in determining the future of the European Union.

http://www.kas.de/upload/bilder/eu-referendum/Banner_News.png

Reality Check: The EU referendum

Full text of EU’s special status deal for Britain

Letter by President Donald Tusk to the Members of the European Council on his proposal for a new settlement for the United Kingdom within the European Union

David Cameron's official Letter of list of demands to the EU Council President Donald Tusk

Donald Tusk's official letter to the European Council on the issue of a UK in/out referendum

----

22.06.2016: What will happen if the UK leaves the EU?

21.06.2016: David Beckham backs remain 'for future of our children'

21.06.2016: Leavers are deceiving their voters about the pain that Europe could unleash on us after Brexit

20.06.2016: Sayeeda Warsi: leave tactics will create more divided and xenophobic UK

20.06.2016: Britain’s EU referendum: Divided we fall

20.06.2016: EU referendum: Which type of person wants to leave, and which type wants to remain?

14.06.2016: The arguments for voting Remain

07.06.2016: EU referendum: Fact checking the big claims

07.06.2016: Surge in voter registrations expected before EU referendum deadline

01.06.2016: EU referendum: Boris and Gove pledge tough new immigration system after Brexit

28.05.2016: Brexit and science: The European experiment

26.06.2015: Nearly two-thirds of voters think UK will remain in EU, Ashcroft poll finds

24.05.2016: EU Referendum: How will turnout affect the result?

19.05.2016: For Russia, Brexit would be an opportunity, not a tragedy

18.05.2016: Brexit would threaten world-class British research, major report warns

17.05.2016: EU referendum: David Cameron says Isis and Putin 'might be happy' with Brexit

17.05.2016: EU referendum: Leaked letter 'shows how Cameron plotted against Leave'

16.05.2016: Jeremy Corbyn 'would be campaigning for Brexit if he was not Labour leader', says long-time ally Tariq Ali

12.05.2016: Eurosceptic SNP voters could influence EU referendum result, polling data shows

10.05.2016: EU referendum: Iain Duncan Smith accused of 'lying' over German veto

10.05.2016: EU referendum campaigns to reveal biggest donors

10.05.2016: Iain Duncan Smith says Germany had 'veto' power over David Cameron EU deal

09.05.2016: Brexit could turn Irish border into new Calais, says EU commissioner

09.05.2016: EU referendum: Cameron warns UK exit could put peace at risk

09.05.2016: EU referendum: Europeans in Britain fear Brexit vote

09.05.2016: EU referendum: Second World War veterans come out against Brexit

08.05.2016: Brexit would hit house prices significantly, says George Osborne

05.05.2016: David Cameron and Boris Johnson take EU referendum fight to Countryfile

05.05.2016: Britain remaining in EU is 'better for the world', says Japanese prime minister

04.05.2016: EU referendum: Britons should not let concerns about migration from Turkey affect their vote, says David Cameron

03.05.2016: EU referendum: Workers’ rights will be watered down if Britain leaves EU, claims TUC

03.05.2016: Alistair Darling: leaving EU could put £250bn of UK export trade at risk

02.05.2016: EU referendum: Parties come together to make environmental case for staying in Europe

02.05.2016: David Cameron says friendship with Boris Johnson damaged by Brexit

02.05.2016: EU is central to tackling climate change, says Ed Miliband

Older Posts

----

http://www.kas.de/upload/bilder/eu-referendum/Banner_Campaign.JPG

The EU Referendum Bill 2015

Change of wording in the EU Referendum question

After the Electoral Commission raised questions about the validity of the EU referendum question, David Cameron as well as the Parliament, decided to change the question over fears of bias.

Before the question was changed to a “leave or remain” response option it was a “yes or no” question.

The EU referendum campaign groups: who’s In and who’s Out?http://www.newstatesman.com/world/2015/10/eu-referendum-campaign-groups-who-s-and-who-s-out

IN-Campaign:

http://www.kas.de/upload/bilder/eu-referendum/INcampaign.JPG

http://www.theincampaign.co.uk/

http://www.kas.de/wf/doc/17650-1442-2-30.jpg

http://www.strongerin.co.uk/

----

Supporting IN-Campaign:

http://www.kas.de/upload/bilder/eu-referendum/British_Influence.PNG

http://www.britishinfluence.org/

http://www.kas.de/upload/bilder/eu-referendum/Euromove_UK.PNG

http://euromove.org.uk/

http://www.kas.de/upload/bilder/eu-referendum/CONEU_Mainstream.PNG

http://www.europeanmainstream.org.uk/

http://www.kas.de/upload/bilder/eu-referendum/Conservative_europe_group.PNG

http://www.conservativeeuropegroup.org.uk/

http://www.kas.de/upload/bilder/eu-referendum/Euractiv.PNG

http://www.euractiv.com/

http://www.kas.de/upload/bilder/eu-referendum/Open_Europe.PNG

http://openeurope.org.uk/

http://www.kas.de/upload/bilder/eu-referendum/Universitiesforeurope.PNG

http://www.universitiesforeurope.com/Pages/Home.aspx#.Vheertowfcs

Other Pro-EU campaigns

----

OUT-Campaign:

http://www.kas.de/wf/doc/17649-1442-2-30.jpg

http://www.voteleavetakecontrol.org/campaign

http://www.kas.de/wf/doc/17648-1442-2-30.jpg

https://leave.eu/

----

Supporting OUT-Campaign:

http://www.kas.de/upload/bilder/eu-referendum/Get_Britain_Out.PNG

http://getbritainout.org/

http://www.kas.de/upload/bilder/eu-referendum/Business_for_Brita
<div id=
Please click here to view the contents.
Or adjust your cookie settings under privacy policy.
in.PNG" >

http://businessforbritain.org/

http://www.kas.de/upload/bilder/eu-referendum/Campaign_for_an_independent_Britain.PNG

http://campaignforanindependentbritain.org.uk/

http://www.kas.de/upload/bilder/eu-referendum/Bruges_Group.PNG

http://www.brugesgroup.com/

Older Posts

----

http://www.kas.de/upload/bilder/eu-referendum/Banner_Opinion Polls.jpg

New poll finds strong support for Boris Johnson to take over as Tory party leader

All ‘Brexit’ polls are wrong – But some are more wrong than others

Poll of the week (YouGov, 5 March): narrow lead for the Remain camp

‘Brexit’ could put data sharing in jeopardy

Britain, Europe and the world: Rethinking the UK’s circle of influence

How might the effect of Brexit on Ireland and Northern Ireland be managed?

Yougov‘s Eurosceptic map of Britain

Revealed: Two thirds of British voters are Eurosceptics - but they aren’t convinced we should leave

Poll of the Week (Open Europe/ComRes): If Cameron secures all his renegotiation demands, 65% of voters would choose to stay in the EU

EU Referendum poll tracker and odds

UK Polling Report |http://ukpollingreport.co.uk/blog/archives/category/europe

YouGov Survey Results

Latest opinion poll of polls - 10/06/16 - 18/06/16:

http://www.kas.de/wf/doc/19526-1442-2-30.jpg

Older Posts

----

http://www.kas.de/upload/bilder/eu-referendum/Banner_Referendum1975.PNG

http://www.kas.de/upload/bilder/eu-referendum/EU_plus_UK_Flagge.PNG

The UK EU Referendum which is likely to take place in 2016, and no later than the end of 2017 is not the first ‘in-out’ – ‘stay-leave’ vote held in the United Kingdom. On 23 January 1975, Prime Minister Harold Wilson announced that a referendum on Britain’s membership of the European Economic Community (EEC) would be held within six months.

Britain, under Prime Minister Edward Heath had joined the EEC in January 1973 when the Treaty of Rome was signed. Labour's general election manifesto of October 1974 committed Labour to allow people the opportunity to decide whether Britain should stay in the Common Market on renegotiated terms, or leave it entirely.

Disquiet runs like a fault line through British public opinion from Parliament to the pub, and so it is that Prime Minister David Cameron has embarked upon a second European referendum campaign asking almost exactly the same question and for precisely the same reasons as his predecessor Harold Wilson in 1975.

He wants to hold his party together sufficiently to be able to run his government effectively, just as Wilson did 40 years ago. The main difference between then and now is that the trouble came previously from radicals who were mostly on the left, while the government's problems today are principally the go-it-alone nationalists who are mostly on the political right.

In the early Seventies, Labour was split over Europe. The parliamentary party was overwhelmingly in favour of Britain’s membership of the Common Market, but much of the rank and file wanted out. The prime minister announced that the government had decided to recommend a "yes" vote. But it emerged that the cabinet had split, with seven of its 23 members seeking withdrawal.

British voters have backed the UK's continued membership of the EEC by a large majority in the country's first nationwide referendum. Just over 67% of voters supported the Labour government's campaign to stay in the EEC, or Common Market, despite several cabinet ministers having come out in favour of British withdrawal.

Reconstructed Government Pamphlet advocating a vote to stay in the EEC

Seven lessons from Britain's EEC Referendum 1975

----

http://www.kas.de/upload/bilder/eu-referendum/Banner_Publications.png

The Brexit Briefs: Our Guide to the Britain's EU Referendum (The Economist)

Brexit: The Irish Dimension

EU referendum: HM Treasury analysis keyfacts

Brexit could derail US recovery

Domestic measures to safeguard national sovereignty: what options does the UK have?

The UK’S EU Referendum - What can the EU do to prevent a Brexit?

Brexit: What would happen if Britain voted to leave?

Is the UK a winner or loser in the EU Council?

Choosing our Future: Why the European Union is good for Business but how it should be better

Comprehensive opinion survey finds British voters deeply divided over EU membership

Views from the Continent

Open Europe poses ten questions for the EU referendum Remain and Leave campaigns

Arguments for an against EU Referendums

Older Posts

----

http://www.kas.de/upload/bilder/eu-referendum/Banner_Key_Figures.png

Meet the sherpas: the key people quietly negotiating UK-EU reforms

Who's who in Britain's referendum?

----

http://www.kas.de/upload/bilder/eu-referendum/Banner_Parties_and_Politicians.png

‘A compromise too far’: Iain Duncan Smith’s resignation letter in full

Boris Johnson joins campaign to leave EU

EU Referendum gives Liberals a chance to unite

Lord Lawson to lead Conservative campaign to leave EU

Nigel Farage could consider quitting Ukip to lead Britain out of Europe, says major Ukip donor

Pro-EU group hires top digital experts of Tories

Jeremy Corbyn: Labour will campaign for UK to stay in the EU

Nick Clegg sets up 'Open Reason' company as he eyes greater role in EU referendum

----

http://www.kas.de/upload/bilder/eu-referendum/Banner_Possible Outcomes.png

EU referendum timeline: What will happen when?

What would happen if Britain left the EU?

What if...? The Consequences, challenges & opportunities facing Britain outside EU

Staying in reformed EU would boost British economy and jobs, report says

----

http://www.kas.de/upload/bilder/eu-referendum/Banner_Multimedia.png

The BBC's EU Referendum "Great Debate" - Questions on immigration, the economy & sovereignty

EU Referendum Debate - ITV: Boris Johnson, Gisela Stuart & Andrea Leadson vs Nicola Sturgeon, Amber Rudd & Angela Eagle

EU Referendum Debate - ITV: David Cameron & Nigel Farage

Older Posts

Please click here to view the contents.
Or adjust your cookie settings under privacy policy.
Please click here to view the contents.
Or adjust your cookie settings under privacy policy.
Please click here to view the contents.
Or adjust your cookie settings under privacy policy.
Please click here to view the contents.
Or adjust your cookie settings under privacy policy.
Please click here to view the contents.
Or adjust your cookie settings under privacy policy.
Please click here to view the contents.
Or adjust your cookie settings under privacy policy.
Please click here to view the contents.
Or adjust your cookie settings under privacy policy.