- Create Economist SubmissionTracking package correctly: * mainArticle = full blog post content * coverLetter = 216-word SIR— letter * Links to blog post via blogPostId - Archive 'Letter to The Economist' from blog posts (it's the cover letter) - Fix date display on article cards (use published_at) - Target publication already displaying via blue badge Database changes: - Make blogPostId optional in SubmissionTracking model - Economist package ID: 68fa85ae49d4900e7f2ecd83 - Le Monde package ID: 68fa2abd2e6acd5691932150 Next: Enhanced modal with tabs, validation, export 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
70 lines
1.1 KiB
C
70 lines
1.1 KiB
C
/*
|
|
* exsltconfig.h: compile-time version information for the EXSLT library
|
|
*
|
|
* See Copyright for the status of this software.
|
|
*
|
|
* daniel@veillard.com
|
|
*/
|
|
|
|
#ifndef __XML_EXSLTCONFIG_H__
|
|
#define __XML_EXSLTCONFIG_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* LIBEXSLT_DOTTED_VERSION:
|
|
*
|
|
* the version string like "1.2.3"
|
|
*/
|
|
#define LIBEXSLT_DOTTED_VERSION "0.8.24"
|
|
|
|
/**
|
|
* LIBEXSLT_VERSION:
|
|
*
|
|
* the version number: 1.2.3 value is 10203
|
|
*/
|
|
#define LIBEXSLT_VERSION 824
|
|
|
|
/**
|
|
* LIBEXSLT_VERSION_STRING:
|
|
*
|
|
* the version number string, 1.2.3 value is "10203"
|
|
*/
|
|
#define LIBEXSLT_VERSION_STRING "824"
|
|
|
|
/**
|
|
* LIBEXSLT_VERSION_EXTRA:
|
|
*
|
|
* extra version information, used to show a Git commit description
|
|
*/
|
|
#define LIBEXSLT_VERSION_EXTRA ""
|
|
|
|
/**
|
|
* WITH_CRYPTO:
|
|
*
|
|
* Whether crypto support is configured into exslt
|
|
*/
|
|
#if 0
|
|
#define EXSLT_CRYPTO_ENABLED
|
|
#endif
|
|
|
|
/**
|
|
* ATTRIBUTE_UNUSED:
|
|
*
|
|
* This macro is used to flag unused function parameters to GCC
|
|
*/
|
|
#ifdef __GNUC__
|
|
#ifndef ATTRIBUTE_UNUSED
|
|
#define ATTRIBUTE_UNUSED __attribute__((unused))
|
|
#endif
|
|
#else
|
|
#define ATTRIBUTE_UNUSED
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __XML_EXSLTCONFIG_H__ */
|