mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-19 08:53:30 +00:00
Merge remote-tracking branch 'cappuccino/master'
This commit is contained in:
@@ -84,7 +84,7 @@ var defaultDateFormatterBehavior = CPDateFormatterBehavior10_4,
|
||||
relativeDateFormating = @{
|
||||
@"fr" : [@"demain", 1, @"apr" + String.fromCharCode(233) + @"s-demain", 2, @"apr" + String.fromCharCode(233) + @"s-apr" + String.fromCharCode(233) + @"s-demain", 3, @"hier", -1, @"avant-hier", -2, @"avant-avant-hier", -3],
|
||||
@"en" : [@"tomorrow", 1, @"yesterday", -1],
|
||||
@"de" : [],
|
||||
@"de" : [@"morgen", 1, @"gestern", -1, String.fromCharCode(129) + @"bermorgen", 2, @"vorgestern", -2],
|
||||
@"es" : []
|
||||
};
|
||||
|
||||
@@ -559,7 +559,13 @@ var defaultDateFormatterBehavior = CPDateFormatterBehavior10_4,
|
||||
if ([self _isAmericanFormat])
|
||||
format = @"M/d/yy";
|
||||
else
|
||||
format = @"dd/MM/yy";
|
||||
{
|
||||
if ([_locale objectForKey:CPLocaleLanguageCode] === 'de')
|
||||
format = @"dd.MM.yy";
|
||||
else
|
||||
format = @"dd/MM/yy";
|
||||
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
|
||||
+20
-48
@@ -3,36 +3,34 @@
|
||||
Welcome to Cappuccino!
|
||||
======================
|
||||
|
||||
Special event
|
||||
-------------
|
||||
Release 1.0 is scheduled for [CappCon 2018 on September 4, 2018 at Université de Liège in Belgium](https://www.meetup.com/de-DE/CappCon/events/248886408).
|
||||
|
||||
Introduction
|
||||
------------
|
||||
Cappuccino is an open source framework that makes it easy to build
|
||||
desktop-caliber applications that run in a web browser.
|
||||
|
||||
Cappuccino is built on top of standard web technologies like JavaScript, and
|
||||
it implements most of the familiar APIs from GNUstep and Apple's Cocoa
|
||||
frameworks. When you program in Cappuccino, you don't need to concern yourself
|
||||
with the complexities of traditional web technologies like HTML, CSS, or even
|
||||
the DOM. The unpleasantries of building complex cross browser applications are
|
||||
abstracted away for you.
|
||||
|
||||
For more information, see <http://cappuccino-project.org>. Follow [@cappuccino](https://twitter.com/cappuccino) on Twitter for updates on the project.
|
||||
With Cappuccino, you don't concern yourself
|
||||
with HTML, CSS, or the DOM. You rather write applications with the APIs from Apple's Cocoa frameworks and the Objective-J language.
|
||||
|
||||
Check out a [live demo of the widgets in Cappuccino](https://cappuccino-testbook.5apps.com/#ThemeKitchenSink)
|
||||
|
||||
Check out some [live demos and tutorials](https://cappuccino-cookbook.5apps.com)
|
||||
|
||||
For more information, see [the official website](http://cappuccino-project.org) and [the Github Wiki](https://github.com/cappuccino/cappuccino/wiki).
|
||||
|
||||
Follow [@cappuccino](https://twitter.com/cappuccino) on Twitter for updates on the project.
|
||||
|
||||
System Requirements
|
||||
-------------------
|
||||
To run Cappuccino applications, all you need is a HTML5 compliant web browser.
|
||||
|
||||
To develop Cappuccino applications, all you need is a simple text editor and the starter package.
|
||||
Our tight integration with Xcode on MacOS brings the full power of visual Cocoa development to the web.
|
||||
|
||||
However, Cappuccino's build system and the Xcode integration bring the eases of Cocoa development to web development.
|
||||
|
||||
To build Cappuccino itself, please read below. More information is available
|
||||
here: [Getting and Building the Source](http://wiki.github.com/cappuccino/cappuccino/getting-and-building-the-source>).
|
||||
|
||||
If you're using Windows, you'll also need [Cygwin](http://www.cygwin.com/).
|
||||
|
||||
Finally, if you want to easily stay up to date with the latest developments
|
||||
and contribute your work back to the Cappuccino community, you'll want to
|
||||
[install Git](http://git-scm.com/).
|
||||
However, you can also work on other platforms using only a simple text editor.
|
||||
|
||||
Getting Started
|
||||
---------------
|
||||
@@ -42,29 +40,7 @@ To get started, download and install the current release version of Cappuccino:
|
||||
|
||||
If you'd just like to get started using Cappuccino for your web apps, you are done.
|
||||
|
||||
The rest of these instructions are for building a development copy of Cappuccino.
|
||||
To build Cappuccino from source, check out the most recent stable version from GitHub:
|
||||
|
||||
$ git clone git://github.com/cappuccino/cappuccino.git (git)
|
||||
|
||||
or download the zipball of the most recent source code:
|
||||
|
||||
<http://github.com/cappuccino/cappuccino/zipball/master> (zip)
|
||||
|
||||
Then, simply type `jake` from within the root of the Cappuccino directory. If you
|
||||
get an error like `jake: command not found`, you forgot to run the bootstrap script
|
||||
as described above.
|
||||
|
||||
Jake will build a "release" copy of the frameworks. Typing `jake debug` will
|
||||
build a debug version.
|
||||
|
||||
`jake install` will build Cappuccino and associated tools and install them for general use.
|
||||
|
||||
Editors
|
||||
-------
|
||||
The Cappuccino TextMate Bundle: <http://github.com/malkomalko/Cappuccino.tmbundle>.
|
||||
|
||||
The Cappuccino Xcode Plugin: <http://github.com/rbartolome/xcode-cappuccino>.
|
||||
To build Cappuccino from source, please read here: [Getting and Building the Source](<http://wiki.github.com/cappuccino/cappuccino/getting-and-building-the-source>).
|
||||
|
||||
Getting Help
|
||||
------------
|
||||
@@ -73,14 +49,10 @@ If you need help with Cappuccino, you can get help from the following sources:
|
||||
- [FAQ](http://cappuccino-project.org/support/faq.html)
|
||||
- [Documentation](http://cappuccino-project.org/learn/)
|
||||
- [Wiki](http://github.com/cappuccino/cappuccino/wikis)
|
||||
- Mailing Lists:
|
||||
- [Objective-J](http://groups.google.com/group/objectivej)
|
||||
- [Objective-J Developers](http://groups.google.com/group/objectivej-dev)
|
||||
- [Gitter] (https://gitter.im/cappuccino/cappuccino)
|
||||
- [Mailing list](http://groups.google.com/group/objectivej)
|
||||
- [Gitter](https://gitter.im/cappuccino/cappuccino)
|
||||
|
||||
If you discover any bugs, please file a ticket at:
|
||||
|
||||
<http://github.com/cappuccino/cappuccino/issues>
|
||||
If you discover any bugs, please [file a ticket](http://github.com/cappuccino/cappuccino/issues)
|
||||
|
||||
License
|
||||
-------
|
||||
|
||||
@@ -193,7 +193,7 @@
|
||||
<div class="container">
|
||||
<div class="content">
|
||||
<div id="noscript">
|
||||
<p style="font-size:120%; margin-bottom:.75em">JavaScript is required for this site.</p>
|
||||
<p style="font-size:120%; margin-bottom:.75em">JavaScript is required for this application.</p>
|
||||
<p><a href="http://www.enable-javascript.com" target="_blank">Enable JavaScript</a></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -155,7 +155,7 @@
|
||||
<div class="container">
|
||||
<div class="content">
|
||||
<div id="noscript">
|
||||
<p style="font-size:120%; margin-bottom:.75em">JavaScript is required for this site.</p>
|
||||
<p style="font-size:120%; margin-bottom:.75em">JavaScript is required for this application.</p>
|
||||
<p><a href="http://www.enable-javascript.com" target="_blank">Enable JavaScript</a></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user