|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.atlassian.confluence.util.GeneralUtil
Constructor Summary | |
GeneralUtil()
|
Method Summary | |
static String |
appendAmpsandOrQuestionMark(String str)
|
int |
arraySize(int[] array)
convenience method to allow us to determine the size of an int array a velocity file |
static String |
base64Decode(String s)
|
static String |
base64Encode(String s)
|
static String |
checkPartnerDetails(com.atlassian.license.License license,
String buildPartnerName)
|
static Date |
convertMailFormatDate(String date)
|
static Boolean |
convertToBoolean(Object obj)
|
static Character |
convertToCharacter(Object obj)
|
static Integer |
convertToInteger(Object obj)
|
static String |
convertToString(Object obj)
|
static File |
createTempDirectoryInConfluenceTemp(String prefix)
|
static File |
createTempFile(String directory)
|
static String |
customGetPageUrl(AbstractPage page)
Need a special case of generalutils getpageurl that appends ? or ampersand smartly this is used to prefix url parameters that are appended after this path like: showcomments=true#addcomment |
static String |
displayShortUrl(String url)
|
static String |
displayShortUrl(String url,
int length)
|
static String |
doubleUrlEncode(String s)
|
static String |
escapeCDATA(String s)
|
static List |
escapeCommas(List toEscape)
Escape commas on each entry in the given list of strings. |
static String |
escapeCommas(String toEscape)
Escapes commas and backslashes with leading backslashes. |
static String |
escapeForJavascript(String s)
Escapes ', " and \ with a leading \. |
static String |
escapeXml(String stringToEscape)
|
static String |
escapeXMLCharacters(String input)
Take a String which may contain <, > or & and return an XML string containing entities |
static List |
filterNulls(Collection in)
Return a List with no null entries |
static String |
findAndMaskEmail(String text,
User currentUser)
|
static String |
format(Date date)
Deprecated. since 2.3. Provided for pre-2.3 themes and layouts only. New themes and layouts should use $dateFormatter.format(Date) in the Velocity context or ConfluenceUserPreferences.getDateFormatter(FormatSettingsManager) . |
static String |
format(Number number)
TODO: Replace with a NumberFormatter, similar to DateFormatter |
static String |
format(Object obj)
|
static String |
format(String str)
|
static String |
formatBlogDate(Date date)
Deprecated. since 2.3. Provided for pre-2.3 themes and layouts only. New themes and layouts should use $dateFormatter.formatBlogDate(Date) in the Velocity context or ConfluenceUserPreferences.getDateFormatter(FormatSettingsManager) . |
static String |
formatDateFull(Date date)
|
static String |
formatDateTime(Date date)
Deprecated. since 2.3. Provided for pre-2.3 themes and layouts only. New themes and layouts should use $dateFormatter.formatDateTime(Date) in the Velocity context or ConfluenceUserPreferences.getDateFormatter(FormatSettingsManager) . |
static String |
formatLongTime(long time)
|
static String |
formatTime(Date date)
Deprecated. since 2.3. Provided for pre-2.3 themes and layouts only. New themes and layouts should use $dateFormatter.formatTime(Date) in the Velocity context or ConfluenceUserPreferences.getDateFormatter(FormatSettingsManager) . |
static Date |
getBuildDate()
|
static String |
getBuildDateString()
|
static String |
getBuildExcludedLocale()
|
static String |
getBuildNumber()
|
static String |
getBuildPartner()
|
static String |
getCharacterEncoding()
|
static File |
getConfluenceTempDirectory()
|
static String |
getConfluenceTempDirectoryPath()
Checks if temp directory exists before returning the path. |
static String |
getCookieValue(String key)
|
static String |
getDefaultFontFamily()
|
static ResourceBundle |
getDefaultResourceBundle()
|
static String |
getFormatDateSimple(Date date)
|
static Settings |
getGlobalSettings()
|
static I18NBean |
getI18n()
|
static ImageInfo |
getImageInfo(File pathToImage)
|
static String |
getNiceDuration(int minutes,
int seconds)
|
static String |
getPageUrl(AbstractPage page)
|
static String |
getPageUrl(VersionHistorySummary summary)
|
long |
getPercentage(long numerator,
long denom)
converts a fraction into a percentage |
long |
getPercentage(String numeratorAsString,
String denomAsString)
|
static Properties |
getProperties(String resource,
Class callingClass)
Deprecated. since 2.3 use PropertyUtils.getProperties(String, Class) instead |
static Properties |
getPropertiesFromFile(File file)
Deprecated. since 2.3 use PropertyUtils.getProperties(String, Class) instead |
static Properties |
getPropertiesFromStream(InputStream is)
Deprecated. since 2.3 use PropertyUtils.getProperties(String, Class) instead |
static String |
getRelativeTime(Date date)
|
static String |
getStackTrace(Throwable t)
|
static Long |
getSystemStartupTime()
|
static String |
getUploadFileTooLargeMessage(String errorMessage)
if this error message is of the type: "java.io.IOException: Content Length Error" convert it to something nicer |
static UserAccessor |
getUserAccessor()
|
static String |
getVersionNumber()
|
static String |
hackSingleQuotes(String s)
hack to make strings that contain singles compatible with javascript (which also uses single quotes denote strings) |
static boolean |
hasTooManyUsers()
Check if the current installation has more active users than is allowed by the license |
static String |
highlight(String content,
String searchwords)
|
static String |
htmlEncode(String s)
our own htmlEncode() ripped from the TextUtils class. |
static String |
htmlEscapeQuotes(String input)
Take a string and escape the quotes in it with \" and HTML escape them afterwards. |
static boolean |
isAllAscii(String s)
|
static boolean |
isAllLettersOrNumbers(String s)
|
static boolean |
isGlobalAdministrator(Object notUsedAnyMore,
User user)
Deprecated. since 2.0 use PermissionManager directly, or use the $permissionHelper from velocity |
static boolean |
isInLastDays(Date date,
int maxDays)
|
static boolean |
isLicenseExpired()
|
static boolean |
isSafeTitleForUrl(String title)
Is "title" something we can safely put in a /foo/bar/title URL? Or should we reference this thing by ID just to be safe? |
static boolean |
isSetupComplete()
|
static boolean |
isSuperUser(User user)
|
static String |
lookupDomainName(javax.servlet.http.HttpServletRequest request)
Get the default domain name. |
static Summary |
makeSummary(String content)
Create a proper summary of this content fragment. |
static Summary |
makeSummary(String content,
String query)
Create a proper summary of this content fragment given a query |
static String |
maskEmail(String emailAddress)
If configured, masks an email address to defeat the most simplistic spam bots. |
static ConfluenceActionSupport |
newWiredConfluenceActionSupport()
|
static String |
personalSpaceUrl(String contextPath,
String username)
|
static String |
plain2html(String text)
The function converts plain text into html in two steps. |
static void |
profilePop(String s)
|
static void |
profilePush(String s)
|
static String |
replaceConfluenceHomeConstant(String in,
String confHome)
|
static List |
safeSubList(List list,
int max)
|
static javax.servlet.http.Cookie |
setCookie(String key,
String value)
Sets a cookie. |
static void |
setSystemStartupTime(Long systemStartupTime)
|
static void |
setUserAccessor(UserAccessor userAcc)
|
static String |
shortenString(String str,
int max)
|
static boolean |
shouldUrlDecode(String str)
|
static Collection |
specialLowerCaseCollection(Collection collection)
Takes a collection of Strings and lowercases the entries. |
static String |
specialToLowerCase(String str)
the database lower() function in PostgreSQL only works for ASCII strings. |
static String[] |
splitCommaDelimitedString(String escapedNames)
Method will turn a String of comma seperated entities into a String Array. |
static boolean |
stringSet(String str)
|
long |
subtract(long a,
long b)
|
long |
subtract(String firstOperandAsString,
String secondOperandAsString)
|
static String |
summarise(String content)
Deprecated. since 2.0 use RendererUtil.summarise(String) instead. |
static String |
unescapeCDATA(String s)
|
static String |
unescapeEntities(String str)
|
static void |
unzipFile(File zipFile,
File dirToExtractTo)
Unzips the zip file to a folder in temp and returns the File pointing to that expanded folder. |
static void |
unzipUrl(URL zipUrl,
File dirToExtractTo)
Unzips the zip url to a folder in temp and returns the File pointing to that expanded folder. |
static String |
urlDecode(String url)
|
static String |
urlEncode(String url)
|
static String |
wordWrap(String str,
int max)
For really long strings that have no spaces or line breaks, browsers such as firefox, Netscape, have difficulty wrapping them inside a table cell, and so these strings end up stretching the cell longer than its suppose to be = ugly we want to simulate IE's word-wrap/break function here |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public GeneralUtil()
Method Detail |
public static String getStackTrace(Throwable t)
public static String format(Number number)
DateFormatter
public static String format(Date date)
ConfluenceUserPreferences.getDateFormatter(FormatSettingsManager)
.
DateFormatter.format(Date)
public static String format(String str)
public static String format(Object obj)
public static String formatDateTime(Date date)
ConfluenceUserPreferences.getDateFormatter(FormatSettingsManager)
.
DateFormatter.formatDateTime(Date)
public static String formatTime(Date date)
ConfluenceUserPreferences.getDateFormatter(FormatSettingsManager)
.
DateFormatter.formatTime(Date)
public static String formatBlogDate(Date date)
ConfluenceUserPreferences.getDateFormatter(FormatSettingsManager)
.
DateFormatter.formatBlogDate(Date)
public static Date convertMailFormatDate(String date) throws ParseException
ParseException
public static Character convertToCharacter(Object obj)
public static Integer convertToInteger(Object obj)
public static Boolean convertToBoolean(Object obj)
public static String convertToString(Object obj)
public static String urlEncode(String url)
public static String urlDecode(String url)
public static boolean shouldUrlDecode(String str)
public static String getPageUrl(VersionHistorySummary summary)
public static String getPageUrl(AbstractPage page)
public static boolean isSafeTitleForUrl(String title)
public static String customGetPageUrl(AbstractPage page)
public static String appendAmpsandOrQuestionMark(String str)
public static String wordWrap(String str, int max)
we want to simulate IE's word-wrap/break function here
str
- max
- - max length of string allowed per linepublic static String highlight(String content, String searchwords)
public static String doubleUrlEncode(String s)
public static boolean isAllAscii(String s)
public static boolean isAllLettersOrNumbers(String s)
public static String getVersionNumber()
public static Date getBuildDate()
public static String getBuildDateString()
public static String getBuildNumber()
public static String getBuildPartner()
public static String getBuildExcludedLocale()
public static Long getSystemStartupTime()
public static void setSystemStartupTime(Long systemStartupTime)
public static boolean isLicenseExpired()
public static String checkPartnerDetails(com.atlassian.license.License license, String buildPartnerName)
public static boolean hasTooManyUsers()
public static boolean stringSet(String str)
public static String formatLongTime(long time)
public static String displayShortUrl(String url)
public static String displayShortUrl(String url, int length)
public static String formatDateFull(Date date)
public static boolean isSuperUser(User user)
public static String getCharacterEncoding()
public static String escapeXml(String stringToEscape)
public static String escapeForJavascript(String s)
public static boolean isSetupComplete()
public static String maskEmail(String emailAddress)
Passing in null to this method will just get you null back
emailAddress
- the email address to mask
public static String findAndMaskEmail(String text, User currentUser)
public static String escapeCDATA(String s)
public static String unescapeCDATA(String s)
public static File createTempDirectoryInConfluenceTemp(String prefix)
public static File createTempFile(String directory)
public static String unescapeEntities(String str)
public static String base64Decode(String s)
public static String base64Encode(String s)
public static String hackSingleQuotes(String s)
s
- public static boolean isInLastDays(Date date, int maxDays)
date
- the date to checkmaxDays
- the number of days into the past the date can fall
public static String getRelativeTime(Date date)
public static String getFormatDateSimple(Date date)
public static javax.servlet.http.Cookie setCookie(String key, String value)
key
- value
- public static String getCookieValue(String key)
public static String htmlEncode(String s)
s
- public static boolean isGlobalAdministrator(Object notUsedAnyMore, User user)
PermissionManager
directly, or use the $permissionHelper from velocity
public static String plain2html(String text)
text
-
public static Properties getProperties(String resource, Class callingClass)
PropertyUtils.getProperties(String, Class)
instead
public static Properties getPropertiesFromFile(File file)
PropertyUtils.getProperties(String, Class)
instead
public static Properties getPropertiesFromStream(InputStream is)
PropertyUtils.getProperties(String, Class)
instead
public static void unzipFile(File zipFile, File dirToExtractTo) throws Exception
Exception
public static void unzipUrl(URL zipUrl, File dirToExtractTo) throws Exception
Exception
public static String getUploadFileTooLargeMessage(String errorMessage)
errorMessage
- public static ResourceBundle getDefaultResourceBundle()
public static I18NBean getI18n()
public int arraySize(int[] array)
array
- public static String escapeXMLCharacters(String input)
public static String htmlEscapeQuotes(String input)
public static List filterNulls(Collection in)
public static String shortenString(String str, int max)
public static String specialToLowerCase(String str)
the database lower() function in PostgreSQL only works for ASCII strings. All other unicode and multibyte characters like capital umlaut are not properly converted. At the moment, when searching for pages we do the following comparison:
lower(page.title) = :pageTitle
(Where :pageTitle is normally .toLowerCase() first before being passed in)
This special lower case function will skip the JAVA .toLowerCase() for postgres whose database lower() is ineffective.
str
- public static String replaceConfluenceHomeConstant(String in, String confHome)
public static Collection specialLowerCaseCollection(Collection collection)
collection
-
public static List safeSubList(List list, int max)
public static String summarise(String content)
RendererUtil.summarise(String)
instead.
public static Summary makeSummary(String content)
Summarizer
public static Summary makeSummary(String content, String query)
Summarizer
public static UserAccessor getUserAccessor()
public static void setUserAccessor(UserAccessor userAcc)
public static ImageInfo getImageInfo(File pathToImage)
public static String getNiceDuration(int minutes, int seconds)
public static ConfluenceActionSupport newWiredConfluenceActionSupport()
public static void profilePush(String s)
public static void profilePop(String s)
public static String lookupDomainName(javax.servlet.http.HttpServletRequest request)
request
-
public static Settings getGlobalSettings()
public static String personalSpaceUrl(String contextPath, String username)
public static String getDefaultFontFamily()
public long getPercentage(long numerator, long denom)
numerator
- denom
- public long subtract(long a, long b)
public long getPercentage(String numeratorAsString, String denomAsString)
public long subtract(String firstOperandAsString, String secondOperandAsString)
public static String getConfluenceTempDirectoryPath()
public static File getConfluenceTempDirectory()
public static String[] splitCommaDelimitedString(String escapedNames)
escapedNames
- Comma delimited string with original commas and backslashes escaped by backslashes
public static List escapeCommas(List toEscape)
toEscape
- String
s to escape
String
spublic static String escapeCommas(String toEscape)
toEscape
- string to escape. If null, then null will be returned.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |